diff options
author | Demo User <jack@beagleboard.1.localnet.cc> | 2013-04-26 22:39:19 +0000 |
---|---|---|
committer | Demo User <jack@beagleboard.1.localnet.cc> | 2013-04-26 22:39:19 +0000 |
commit | 705af77c2fef7a27150b741cde228e2fe55a029b (patch) | |
tree | b22e7fbd5c5d8a22dd9bd3e0aaff9f83d94ce790 | |
parent | 05bdc4aba358c7aec1ad1423dea5d86e96abca74 (diff) | |
download | ebus-alt-705af77c2fef7a27150b741cde228e2fe55a029b.tar.gz ebus-alt-705af77c2fef7a27150b741cde228e2fe55a029b.zip |
fix mac address
-rwxr-xr-x | datasources/arduino/arduinoAnalogHTTP/analogethernet.ino | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/datasources/arduino/arduinoAnalogHTTP/analogethernet.ino b/datasources/arduino/arduinoAnalogHTTP/analogethernet.ino index 63c53e7..5a0b241 100755 --- a/datasources/arduino/arduinoAnalogHTTP/analogethernet.ino +++ b/datasources/arduino/arduinoAnalogHTTP/analogethernet.ino @@ -2,7 +2,7 @@ #include <SPI.h> #include <Ethernet.h> -byte mac[] = { 0xAD, 0xEE, 0x00, 0xEF, 0xFE, 0xED }; +byte mac[] = { 0x02, 0xEE, 0x00, 0xEF, 0xFE, 0xED }; const int ledPin = 13; // select the pin for the LED const long ADC_REF_MV = 3300; |