Robofun 機器人論壇
標題:
關於Arduino Ethetnet實體位址
[打印本頁]
作者:
w2760123
時間:
2014-11-25 09:50
標題:
關於Arduino Ethetnet實體位址
本帖最後由 w2760123 於 2014-11-25 09:59 編輯
想請問各位大大我把Ethetnet連接Arduino再接到無線分享器
2014-11-25 上午 09-44-47.png
(331.62 KB, 下載次數: 209)
下載附件
2014-11-25 09:45 上傳
此圖為我的Ethetnet
想利用手機連接無線分享的WiFi操控Arduino
但是在Arduino的程式有一行為mac(實體位址)
但書上所教的查詢方法
利用"
命令提是字元
"視窗,輸入"ipconfig /all",就可以查詢所有網路卡的IP及mac
但我分辨不出來哪一項才是Ethernet的實體位址
又或者有連線程式是不使用到mac(實體位址),請大大分指教
我的基本程式為
#include <SPI.h>
#include <Ethernet.h>
byte mac[] = { 0xC4, 0x85, 0x08, 0x28, 0x54, 0x9C };
IPAddress ip( 192, 168, 1, 65 );
EthernetServer server(23);
void setup()
{
Serial.begin(9600);
while (!Serial);
Ethernet.begin(mac, ip);
server.begin();
Serial.print("Server is listening at ");
Serial.println(Ethernet.localIP());
}
void loop()
{
// listen for incoming clients 偵測客戶端的輸入
EthernetClient client = server.available();
if (client == true) {
Serial.println(client.read());
}
}
作者:
chingfai_cm
時間:
2014-11-26 20:26
用arp /a 來列出IP Address 及Mac Address. 所有和你部PC通訊過的IP和mac都會列出來,你在表內會找到你的Arduino的IP及mac
歡迎光臨 Robofun 機器人論壇 (https://robofun.net/forum/)
Powered by Discuz! X3.2