私は、スケッチがArduino 1.5.3でアップロードされているインテルガリレオにイーサネットで接続されているWindows 7でVS2012を使用しています。私の最終的な目標は、イーサネット ケーブルを介してモーターを制御することですが、2 つのプログラム間の単純な接続を確立できません。私は、イーサネットや Udp やネットワークに関する経験がないので、無理な量まで詳しく説明してください。
これがc#の私のコードです:
using System;
using System.Collections.Generic;
using System.Linq;
using System.Net;
using System.Net.Sockets;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace TemperatureArduinoReader
{
static class Program
{
/// <summary>
/// The main entry point for the application.
/// </summary>
[STAThread]
static void Main()
{
byte[] packetData = System.Text.ASCIIEncoding.ASCII.GetBytes("hello World");
string IP = "192.168.1.177";
//"127.0.0.1";
int port = 8888;
IPEndPoint ep = new IPEndPoint(IPAddress.Parse(IP), port);
Socket client = new Socket(AddressFamily.InterNetwork, SocketType.Dgram, ProtocolType.Udp);
client.SendTo(packetData, ep);
}
}
}
arduinoのウェブサイトから取得したArduinoのコードは次のとおりです。
#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
byte mac[] = { 0X98 , 0x4F, 0xEE, 0x01, 0x54, 0xB3};
IPAddress ip(192,168,1,177);
unsigned int localPort = 8888;
char packetBuffer[UDP_TX_PACKET_MAX_SIZE]; //buffer to hold incoming packet,
char ReplyBuffer[] = "acknowledged"; // a string to send back
// An EthernetUDP instance to let us send and receive packets over UDP
EthernetUDP Udp;
void setup() {
// start the Ethernet and UDP:
Ethernet.begin(mac,ip);
Udp.begin(localPort);
Serial.begin(9600);
}
void loop() {
// if there's data available, read a packet
int packetSize = Udp.parsePacket();
if(packetSize)
{
Serial.print("Received packet of size ");
Serial.println(packetSize);
Serial.print("From ");
IPAddress remote = Udp.remoteIP();
for (int i =0; i < 4; i++)
{
Serial.print(remote[i], DEC);
if (i < 3)
{
Serial.print(".");
}
}
Serial.print(", port ");
Serial.println(Udp.remotePort());
// read the packet into packetBufffer
Udp.read(packetBuffer,UDP_TX_PACKET_MAX_SIZE);
Serial.println("Contents:");
Serial.println(packetBuffer);
// 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);
}
まず、スケッチを Galileo にアップロードし、シリアルを開き、C# プログラムを実行しますが、シリアルには何も表示されません。
私は数日間、これを理解しようとして壁に頭をぶつけてきました。IP アドレスとその他すべてのさまざまな組み合わせを試しました。今、あなたの助けを求めています。
ありがとう、マーク