2020-06-02 22:38:05 +02:00
|
|
|
#include <EEPROM.h>
|
|
|
|
#include <Ethernet.h>
|
|
|
|
|
|
|
|
#define ERASE_FIRST 0
|
|
|
|
|
|
|
|
const byte mac[] = {
|
2020-06-17 20:13:02 +02:00
|
|
|
0xDE, 0xAD, 0xBE, 0xEF, 0xFE, 0xED
|
|
|
|
};
|
2020-06-02 22:38:05 +02:00
|
|
|
const char serial[] = "abcd1234";
|
|
|
|
|
|
|
|
struct netConfig {
|
|
|
|
IPAddress address;
|
2020-06-03 18:53:33 +02:00
|
|
|
unsigned int port;
|
2020-06-02 22:38:05 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
netConfig config = {
|
|
|
|
{192, 168, 10, 123},
|
2020-06-21 15:21:00 +02:00
|
|
|
80
|
2020-06-02 22:38:05 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
void setup() {
|
|
|
|
|
|
|
|
Serial.begin(9600);
|
|
|
|
while (!Serial) {
|
|
|
|
; // wait for serial port to connect. Needed for native USB port only
|
|
|
|
}
|
|
|
|
|
2020-06-17 20:13:02 +02:00
|
|
|
#if ERASE_FIRST
|
2020-06-02 22:38:05 +02:00
|
|
|
// initialize the LED pin as an output.
|
|
|
|
pinMode(13, OUTPUT);
|
|
|
|
// turn the LED on while erasing
|
|
|
|
digitalWrite(13, HIGH);
|
|
|
|
for (int i = 0 ; i < EEPROM.length() ; i++) {
|
|
|
|
EEPROM.write(i, 0);
|
|
|
|
}
|
2020-06-17 20:13:02 +02:00
|
|
|
// turn the LED on when we're done
|
2020-06-02 22:38:05 +02:00
|
|
|
digitalWrite(13, LOW);
|
2020-06-17 20:13:02 +02:00
|
|
|
#endif
|
|
|
|
|
2020-06-02 22:38:05 +02:00
|
|
|
int eeAddress = 0; //Location we want the data to be put.
|
|
|
|
|
|
|
|
EEPROM.put(eeAddress, mac);
|
|
|
|
eeAddress += sizeof(mac);
|
|
|
|
EEPROM.put(eeAddress, serial);
|
|
|
|
eeAddress += sizeof(serial);
|
2020-06-17 20:13:02 +02:00
|
|
|
|
2020-06-02 22:38:05 +02:00
|
|
|
EEPROM.put(eeAddress, config);
|
|
|
|
Serial.println("Data written!");
|
|
|
|
}
|
|
|
|
|
|
|
|
void loop() {
|
|
|
|
/* Empty loop */
|
|
|
|
}
|