MeshCore/examples/simple_repeater/main.cpp

139 lines
3.7 KiB
C++
Raw Normal View History

2025-01-13 14:07:48 +11:00
#include <Arduino.h> // needed for PlatformIO
#include <Mesh.h>
2025-01-20 20:22:40 +11:00
2025-09-08 21:46:19 +10:00
#include "MyMesh.h"
#ifdef DISPLAY_CLASS
#include "UITask.h"
static UITask ui_task(display);
#endif
2025-01-13 14:07:48 +11:00
StdRNG fast_rng;
SimpleMeshTables tables;
MyMesh the_mesh(board, radio_driver, *new ArduinoMillis(), fast_rng, rtc_clock, tables);
2025-01-13 14:07:48 +11:00
void halt() {
while (1) ;
}
static char command[160];
// For power saving
unsigned long lastActive = 0; // mark last active time
unsigned long nextSleepinSecs = 120; // next sleep in seconds. The first sleep (if enabled) is after 2 minutes from boot
2025-01-13 14:07:48 +11:00
void setup() {
Serial.begin(115200);
2025-01-19 20:22:02 +11:00
delay(1000);
2025-01-13 14:07:48 +11:00
board.begin();
// For power saving
lastActive = millis(); // mark last active time since boot
#ifdef DISPLAY_CLASS
if (display.begin()) {
display.startFrame();
2025-09-02 13:56:24 +08:00
display.setCursor(0, 0);
display.print("Please wait...");
display.endFrame();
}
#endif
2025-06-27 19:55:17 +01:00
if (!radio_init()) {
halt();
}
fast_rng.begin(radio_get_rng_seed());
2025-02-02 11:03:23 +11:00
FILESYSTEM* fs;
2025-05-11 09:26:32 +02:00
#if defined(NRF52_PLATFORM) || defined(STM32_PLATFORM)
2025-01-20 20:22:40 +11:00
InternalFS.begin();
fs = &InternalFS;
IdentityStore store(InternalFS, "");
2025-01-20 20:22:40 +11:00
#elif defined(ESP32)
2025-01-13 14:07:48 +11:00
SPIFFS.begin(true);
fs = &SPIFFS;
2025-01-13 14:07:48 +11:00
IdentityStore store(SPIFFS, "/identity");
#elif defined(RP2040_PLATFORM)
LittleFS.begin();
fs = &LittleFS;
IdentityStore store(LittleFS, "/identity");
store.begin();
2025-01-20 20:22:40 +11:00
#else
#error "need to define filesystem"
#endif
2025-01-13 14:07:48 +11:00
if (!store.load("_main", the_mesh.self_id)) {
MESH_DEBUG_PRINTLN("Generating new keypair");
the_mesh.self_id = radio_new_identity(); // create new random identity
int count = 0;
while (count < 10 && (the_mesh.self_id.pub_key[0] == 0x00 || the_mesh.self_id.pub_key[0] == 0xFF)) { // reserved id hashes
the_mesh.self_id = radio_new_identity(); count++;
}
2025-01-13 14:07:48 +11:00
store.save("_main", the_mesh.self_id);
}
Serial.print("Repeater ID: ");
mesh::Utils::printHex(Serial, the_mesh.self_id.pub_key, PUB_KEY_SIZE); Serial.println();
command[0] = 0;
sensors.begin();
the_mesh.begin(fs);
2025-01-13 14:07:48 +11:00
#ifdef DISPLAY_CLASS
ui_task.begin(the_mesh.getNodePrefs(), FIRMWARE_BUILD_DATE, FIRMWARE_VERSION);
#endif
// send out initial zero hop Advertisement to the mesh
the_mesh.sendSelfAdvertisement(16000, false);
2025-01-13 14:07:48 +11:00
}
void loop() {
int len = strlen(command);
while (Serial.available() && len < sizeof(command)-1) {
char c = Serial.read();
if (c != '\n') {
command[len++] = c;
command[len] = 0;
Serial.print(c);
}
if (c == '\r') break;
}
if (len == sizeof(command)-1) { // command buffer full
command[sizeof(command)-1] = '\r';
}
if (len > 0 && command[len - 1] == '\r') { // received complete line
Serial.print('\n');
command[len - 1] = 0; // replace newline with C string null terminator
char reply[160];
the_mesh.handleCommand(0, command, reply); // NOTE: there is no sender_timestamp via serial!
if (reply[0]) {
Serial.print(" -> "); Serial.println(reply);
}
command[0] = 0; // reset command buffer
}
2025-01-13 14:07:48 +11:00
the_mesh.loop();
sensors.loop();
2025-09-08 21:46:19 +10:00
#ifdef DISPLAY_CLASS
ui_task.loop();
#endif
rtc_clock.tick();
if (the_mesh.getNodePrefs()->powersaving_enabled && // To check if power saving is enabled
the_mesh.millisHasNowPassed(lastActive + nextSleepinSecs * 1000)) { // To check if it is time to sleep
2025-12-24 11:00:34 +07:00
if (!the_mesh.hasPendingWork()) { // No pending work. Safe to sleep
board.sleep(1800); // To sleep. Wake up after 30 minutes or when receiving a LoRa packet
lastActive = millis();
nextSleepinSecs = 5; // Default: To work for 5s and sleep again
} else {
nextSleepinSecs += 5; // When there is pending work, to work another 5s
}
}
2025-01-13 14:07:48 +11:00
}