Quantcast
Channel: Intel Communities: Message List
Viewing all articles
Browse latest Browse all 18599

How to send an email using Galileo board?

$
0
0

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:
-How can I find what the Galileo board's MAC address is?

Viewing all articles
Browse latest Browse all 18599

Trending Articles