2013-04-24 107 views
0

我是新來的這個論壇和處理整個事情。 我有一個具體的問題要問,並且非常感謝您的時間和想法!連接Arduino以太網盾並讀取數據問題PROCESSING

如何將我的Arduino與Ethernet Shield連接起來,從傳感器獲取溫度值,以便將它們看作是處理腳本? 在一個直接的Arduino腳本中,人們可以獲得該值,從以太網屏蔽層連接到服務器並執行所喜歡的任務。我已經完成了。

在我的情況下,我希望Arduino只運行從傳感器讀取模擬輸入值的腳本。 這可能嗎?

我已經使串行連接工作,並通過USB讀取值,但以太網屏蔽?我怎樣才能得到的價值,arduino讀取沒有USB /串行連接?

ps。我使用WAMP服務器等,Windows 7的

我想兩者的Arduino和處理來自http://arduino.cc/en/Tutorial/UDPSendReceiveString UDP連接的腳本示例,但

1)我不知道這是什麼,我需要,

2)我已經排除防火牆端口6000,8888我的測試,並在Arduino的腳本已經把我的Arduino的IP地址和「本地主機」,在處理腳本

的代碼複製用於更好地利用這裏

/* 
    UDPSendReceive.pde: 
This sketch receives UDP message strings, prints them to the serial port 
and sends an "acknowledge" string back to the sender 

A Processing sketch is included at the end of file that can be used to send 
and received messages for testing with a computer. 

created 21 Aug 2010 
by Michael Margolis 

This code is in the public domain. 
*/ 


#include <SPI.h>   // needed for Arduino versions later than 0018 
#include <Ethernet.h> 
#include <EthernetUdp.h>   // UDP library from: [email protected] 12/30/2008 


// Enter a MAC address and IP address for your controller below. 
// The IP address will be dependent on your local network: 
byte mac[] = { 
    0xDE, 0xAD, 0xBE, 0xEF, 0xFE, 0xED }; 
IPAddress ip(192, 168, 1, 177); 

unsigned int localPort = 8888;  // local port to listen on 

// buffers for receiving and sending data 
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); 
} 


/* 
    Processing sketch to run with this example 
===================================================== 

// Processing UDP example to send and receive string data from Arduino 
// press any key to send the "Hello Arduino" message 
*/ 

import hypermedia.net.*; 

UDP udp; // define the UDP object 


void setup() { 
udp = new UDP(this, 6000); // create a new datagram connection on port 6000 
//udp.log(true);   // <-- printout the connection activity 
udp.listen(true);   // and wait for incoming message 
} 

void draw() 
{ 
} 

void keyPressed() { 
String ip  = "192.168.1.177"; // the remote IP address 
int port  = 8888;  // the destination port 

udp.send("Hello World", ip, port); // the message to send 

} 

void receive(byte[] data) {   // <-- default handler 
//void receive(byte[] data, String ip, int port) { // <-- extended handler 

for(int i=0; i < data.length; i++) 
print(char(data[i])); 
println(); 
} 
+0

這不是直接回答你的問題,但是你能否請你先與USB /串口連接進行原型設計,以確保你可以首先發送和接收/組織信息?有一個內置的Arduino庫,應該可以幫助你... – 2013-04-26 15:19:28

+0

謝謝你的回覆jesses, ,但正如我已經指出的,串行連接就好,一切都按預期工作。 ps。你能否指定你的原型是什麼意思? – ODstuck 2013-04-27 02:34:27

回答

0

偉大的計劃。只有一個問題。它在我的系統上完美運行。我用Arduino草圖加載了我的Arudino Uno R3,並加載了Processing草圖。像魅力一樣工作,先試試。沒有改變我的Arduino,Windows系統,處理(2.0.3),網絡等的任何東西。

可能是你有一個Arduino板問題(不太可能)或以太網盾問題(可悲,更可能)。你可能有網絡問題(更可能)。

嘗試Wireshark。直到看看Wireshark輸出,你纔會猜測。請注意,Wireshark具有過濾器。你將需要他們。過濾掉所有非UDP流量。

1

將這些值讀入文件並使用該文件將數據發送到處理。 http://py.processing.org/reference/createReader.html

+0

儘管這個鏈接可能回答這個問題,但最好在這裏包含答案的基本部分,並提供參考鏈接。如果鏈接頁面更改,則僅鏈接答案可能會失效。 – PKirby 2015-08-24 13:58:17

相關問題