2020-06-21 23:34:54 +02:00
|
|
|
/* -*- coding: utf-8 -*-
|
|
|
|
* vim: tabstop=2 shiftwidth=2 softtabstop=2
|
|
|
|
*
|
|
|
|
* BITE - A Basic/IoT/Example
|
|
|
|
* Copyright (C) 2020 Daniele Viganò <daniele@vigano.me>
|
|
|
|
*
|
|
|
|
* BITE is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU Affero General Public License as published by
|
|
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* BITE is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU Affero General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Affero General Public License
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
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 */
|
|
|
|
}
|