0
UDPを介してセンサーデータを送信するためのスケッチを書いています。私は1パッケージあたり1バイトの単純な転送を取得しています。 どうすればdefine
私のpackage
lenght
、buffer
が必要ですか?UDPパケットサイズを定義する(Arduino)
ありがとうございました!以下
コード:
//Version 1.05
//necessary libraries
#include <SPI.h>
#include <Ethernet2.h>
#include <EthernetUdp2.h>
//Pin settings
#define CTD 19
//Network Settings
byte mac[] = { 0x90, 0xA2, 0xDA, 0x10, 0xEC, 0xAB }; //set MAC Address Ethernet Shield (Backside)
byte ip[] = { XXX, XXX, X, X }; //set IP-Address
byte gateway[] = { XXX, XXX, X, X }; //set Gateway
byte subnet[] = { 255, 255, 255, 0 }; //set Subnetmask
//local UDP port to listen on
unsigned int localPort = 5568;
//Recipient IP
IPAddress RecipientIP(XXX, XXX, X, X);
//Recipient UDP port
unsigned int RecipientPort = 8888;
//Buffer for sending data
char packetBuffer[UDP_TX_PACKET_MAX_SIZE];
//EthernetUDP instance
EthernetUDP Udp;
//CTD data
int incomingData = 0;
void setup()
{
//Start Ethernet
Ethernet.begin(mac, ip);
//Start UDP
Udp.begin(localPort);
//for debug only
Serial.begin(9600);
//Serial baud rate for CTD
Serial1.begin(1200);
//Version 1.05
Serial.print("Version 1.05");
//CTD
pinMode(CTD, INPUT);
}
void loop()
{
//If CTD is sending
if (Serial1.available())
{
//read incoming data
incomingData = Serial1.read();
//for debug only
Serial.print("Data: ");
Serial.println(incomingData, BIN);
}
//Send UDP packets
//Debug only
Serial.print("Packet");
// send to the IP address and port
Udp.beginPacket(RecipientIP, RecipientPort);
Udp.write(incomingData);
Udp.endPacket();
}
私はあなたができると思いますあなたの参照のためにそれを使用してください – Billa
私はそれを試みたが、私はバッファを使用しているときに私はすべてのデータを取得しません。 parsePacketまたはpacketSizeにデータを取得するにはどうすればよいですか? – TheTris