dks209
dks209

Reputation: 57

Is a network shield required to do POSTGET requests with arduino?

By means of being thorough i was wondering if someone could tell me if I need an ethernet/wifi shield to be able to use POSTGET requests using my arduino.

I've got an NFC shield and I need to send the data stored on the tag to my web server.

Upvotes: 0

Views: 45

Answers (1)

dks209
dks209

Reputation: 57

You can't do it directly, but if you're planning to use USB, you can send data using the various serial commands to the PC you're connected to. You'll need a program written in your language of choice on the PC listening to the arduino and that program can submit your GET request for you.

Or in other words, you can fake it, but an ethernet capability would probably be better & easier.

Copied from a post I found in the Arduino forums

Upvotes: 0

Related Questions