文件名称:Noduino:使用以太网屏蔽的arduino上的REST API
文件大小:8KB
文件格式:ZIP
更新时间:2024-05-24 02:23:41
C++
诺杜伊诺 Noduino使用Arduino以太网屏蔽实现了http服务器,并且可以轻松地使用JSON格式来监视和控制arduino。 就像这样简单: # include < SPI> # include < EthernetUdp> # include < EthernetServer> # include < Dhcp> # include < Ethernet> # include " restapi.h " // Network configuration for arduino byte mac[] = { 0x33 , 0xAA , 0xDE , 0xAD , 0xC0 , 0xD4 }; byte ip[] = { 10 , 0 , 2 , 160 }; byte gateway[] = { 10 , 0 , 0 , 1 }; byte su