0

Ethernet.begin(mac,ip) を使用すると、LED がオンまたはオフになりません。しかし、その行を使用しないと機能します。しかし、そのイーサネットと UPP モジュールを使用してオンとオフを導く必要がありました。どうやって ?

ボードモデル: イーサネット 08 Twinker キット、Twinker リレー

ここに画像の説明を入力

#include <TinkerKit.h>
#include <SPI.h>         // needed for Arduino versions later than 0018
#include <Ethernet.h>
#include <EthernetUdp.h>         // UDP library from: bjoern@cs.stanford.edu 12/30/2008

TKLed led(O5); //O0 does not work
byte mac[] = { 0xDE, 0xAD, 0xBE, 0xEF, 0xFE, 0xED };
IPAddress ip(192, 168, 1, 177);
unsigned int localPort = 8888;      // local port to listen on
char packetBuffer[UDP_TX_PACKET_MAX_SIZE]; //buffer to hold incoming packet,
char  ReplyBuffer[] = "ackv1";       // a string to send back
EthernetUDP Udp;

void setup() {
  Ethernet.begin(mac,ip);
  Udp.begin(localPort);
}

void loop() {
  int packetSize = Udp.parsePacket();
  if(packetSize)
  {
    // check the switch state  
    delay(1000);
    led.off();                        
    delay(3000);
    led.on(); 
    // send a reply, to the IP address and port that sent us the packet we received
    Udp.beginPacket(Udp.remoteIP(), Udp.remotePort());
    Udp.write(ReplyBuffer);
    Udp.endPacket();         
  }
  delay(10);
}

編集:

$ echo "hello" | nc -4u 192.168.1.177 8888
ackv1
4

1 に答える 1