아두이노에서 간단한 udp 패킷 서버로 전송하기.
아두이노에서 간단한 udp패킷을 서버로 전송하는 것이다. 간단한 것인데...어이 없는 이유로 한참을 해맷다...ㅡㅡㅋ #include #include #include IPAddress server(220,67,128,18); unsigned int localPort = 8887; IPAddress local_IP(172,16,10,120); byte mac[] = { 0xDE, 0xAD, 0xBE, 0xEF, 0xFE, 0xED }; EthernetUDP Udp; void setup(){ Ethernet.begin(mac); Udp.begin(localPort); Serial.begin(9600); } void loop(){ Udp.beginPacket(server,9876); //Udp.print("t..
더보기