1
0
mirror of https://github.com/daniviga/bite.git synced 2024-11-23 13:26:14 +01:00
bite/arduino/eeprom_prog/eeprom_prog.ino

72 lines
1.8 KiB
Arduino
Raw Normal View History

2020-06-21 23:34:54 +02:00
/* -*- coding: utf-8 -*-
* vim: tabstop=2 shiftwidth=2 softtabstop=2
*
* BITE - A Basic/IoT/Example
2021-03-21 16:18:44 +01:00
* Copyright (C) 2020-2021 Daniele Viganò <daniele@vigano.me>
2020-06-21 23:34:54 +02:00
*
* 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>
2021-03-24 21:54:41 +01:00
#include "settings.h"
2020-06-02 22:38:05 +02:00
#define ERASE_FIRST 0
const byte mac[] = {
2020-06-17 20:13:02 +02:00
0xDE, 0xAD, 0xBE, 0xEF, 0xFE, 0xED
};
2021-03-24 21:54:41 +01:00
const char serial[] = SERIAL;
2020-06-02 22:38:05 +02:00
struct netConfig {
IPAddress iot_address = IOT_IP;
unsigned int iot_port = IOT_PORT;
IPAddress ntp_address = NTP_IP;
unsigned int ntp_port = NTP_PORT;
2021-03-24 21:54:41 +01:00
} config;
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 */
}