使用 arduino 执行 POSTGET 请求是否需要网络屏蔽?

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

通过彻底的方式,我想知道是否有人可以告诉我是否需要 ethernet/wifi 盾牌才能使用我的 arduino 使用 POSTGET 请求。

我有一个 NFC 屏蔽,我需要将存储在标签上的数据发送到我的网络服务器。

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.

从我在 Arduino 论坛中找到的 post 复制