I need to use the Galileo board to send emails. I found the following code which initiates the Ethernet port:
#include <SPI.h>
#include <Ethernet.h>
// the media access control (ethernet hardware) address for the shield:
byte mac[]={0xDE,0xAD,0xBE,0xEF,0xFE,0xED};
//the IP address for the shield:
voidsetup()
{
Ethernet.begin(mac);
}
I have a couple questions:
#include <Ethernet.h>
// the media access control (ethernet hardware) address for the shield:
byte mac[]={0xDE,0xAD,0xBE,0xEF,0xFE,0xED};
//the IP address for the shield:
voidsetup()
{
Ethernet.begin(mac);
}
I have a couple questions:
-How can I find what the Galileo board's MAC address is?