#include // needed for PlatformIO #include #if defined(NRF52_PLATFORM) #include #elif defined(RP2040_PLATFORM) #include #elif defined(ESP32) #include #endif #include #include #include #include #include #include /* ---------------------------------- CONFIGURATION ------------------------------------- */ #define FIRMWARE_VER_TEXT "v2 (build: 4 Feb 2025)" #ifndef LORA_FREQ #define LORA_FREQ 915.0 #endif #ifndef LORA_BW #define LORA_BW 250 #endif #ifndef LORA_SF #define LORA_SF 10 #endif #ifndef LORA_CR #define LORA_CR 5 #endif #ifndef LORA_TX_POWER #define LORA_TX_POWER 20 #endif #ifndef MAX_CONTACTS #define MAX_CONTACTS 100 #endif #include #include #include #include #include #include "UI/ui.h" #include "../src/fonts/fonts.h" #include "../lvgl/lvgl.h" #include "../include/externals.h" #include "../include/lgfx.h" #include "../include/defines.h" #include "../include/structs.h" #include "../include/uiManager.h" #ifdef USE_MULTI_THREAD #include "../include/tasks.h" #endif #include "touch.h" #define SEND_TIMEOUT_BASE_MILLIS 500 #define FLOOD_SEND_TIMEOUT_FACTOR 16.0f #define DIRECT_SEND_PERHOP_FACTOR 6.0f #define DIRECT_SEND_PERHOP_EXTRA_MILLIS 250 #define PUBLIC_GROUP_PSK "izOH6cXN6mrJ5e26oRXNcg==" #define MAX_CHAT_MESSAGES 50 static lv_obj_t *chat_items[MAX_CHAT_MESSAGES]; static int chat_count = 0; static uint32_t screenWidth; static uint32_t screenHeight; static lv_disp_draw_buf_t draw_buf; static lv_color_t disp_draw_buf[800 * 480 / 10]; //static lv_color_t disp_draw_buf; static lv_disp_drv_t disp_drv; s_espNow espNowPacket; UIManager *uiManager; #ifdef USE_MULTI_THREAD // Tasks #ifdef DISPLAY_AT_CORE1 TaskHandle_t t_core1_tft; #endif // Semaphores SemaphoreHandle_t semaphoreData; #endif TwoWire I2Cone = TwoWire(0); Adafruit_SSD1306 display = Adafruit_SSD1306(128, 64, &I2Cone, OLED_RESET); SPIClass& spi = SPI; uint16_t touchCalibration_x0 = 300, touchCalibration_x1 = 3600, touchCalibration_y0 = 300, touchCalibration_y1 = 3600; uint8_t touchCalibration_rotate = 1, touchCalibration_invert_x = 2, touchCalibration_invert_y = 0; void format_time(uint32_t ts, char *buf, size_t len) { time_t t = ts; struct tm *tm_info = localtime(&t); strftime(buf, len, "%H:%M:%S", tm_info); } void parse_group_message(const char *input, char *sender_out, size_t sender_len, char *msg_out, size_t msg_len) { const char *sep = strchr(input, ':'); if (!sep) { strncpy(sender_out, "Unknown", sender_len); strncpy(msg_out, input, msg_len); return; } size_t name_len = sep - input; if (name_len >= sender_len) name_len = sender_len - 1; strncpy(sender_out, input, name_len); sender_out[name_len] = 0; // Skip ": " const char *msg_start = sep + 1; if (*msg_start == ' ') msg_start++; strncpy(msg_out, msg_start, msg_len); } void add_chat_bubble(lv_obj_t *list, const char *time_str, const char *sender, const char *msg, bool is_self) { // Remove oldest if (chat_count >= MAX_CHAT_MESSAGES) { lv_obj_del(chat_items[0]); memmove(&chat_items[0], &chat_items[1], sizeof(lv_obj_t*) * (MAX_CHAT_MESSAGES - 1)); chat_count--; } // Row container (align bubble left/right) lv_obj_t *row = lv_obj_create(list); lv_obj_set_width(row, lv_pct(100)); lv_obj_set_height(row, LV_SIZE_CONTENT); lv_obj_set_style_bg_opa(row, 0, 0); lv_obj_set_style_pad_all(row, 0, 0); lv_obj_set_style_border_width(row, 0, 0); lv_obj_set_style_outline_width(row, 0, 0); lv_obj_clear_flag(row, LV_OBJ_FLAG_SCROLLABLE); lv_obj_set_flex_flow(row, LV_FLEX_FLOW_ROW); lv_obj_set_flex_align(row, is_self ? LV_FLEX_ALIGN_END : LV_FLEX_ALIGN_START, LV_FLEX_ALIGN_START, LV_FLEX_ALIGN_START); // Bubble container (COLUMN) lv_obj_t *bubble = lv_obj_create(row); lv_obj_set_width(bubble, lv_pct(85)); lv_obj_set_height(bubble, LV_SIZE_CONTENT); lv_obj_set_style_radius(bubble, 12, 0); lv_obj_set_style_pad_all(bubble, 10, 0); lv_obj_set_style_bg_color(bubble, is_self ? lv_color_hex(0x1E88E5) : lv_color_hex(0x2C2C2C), 0); // IMPORTANT: vertical layout inside bubble lv_obj_set_flex_flow(bubble, LV_FLEX_FLOW_COLUMN); lv_obj_set_flex_align(bubble, LV_FLEX_ALIGN_START, LV_FLEX_ALIGN_START, LV_FLEX_ALIGN_START); // Header row (sender + time) lv_obj_t *hdr = lv_obj_create(bubble); lv_obj_set_width(hdr, lv_pct(100)); lv_obj_set_height(hdr, LV_SIZE_CONTENT); lv_obj_set_style_bg_opa(hdr, 0, 0); lv_obj_set_style_border_width(hdr, 0, 0); lv_obj_set_style_pad_all(hdr, 0, 0); lv_obj_set_style_outline_width(hdr, 0, 0); lv_obj_set_flex_flow(hdr, LV_FLEX_FLOW_ROW); lv_obj_set_flex_align(hdr, LV_FLEX_ALIGN_SPACE_BETWEEN, LV_FLEX_ALIGN_START, //LV_FLEX_ALIGN_CENTER, // Ευθυγράμμιση ονόματος/ώρας στον κάθετο άξονα LV_FLEX_ALIGN_START); lv_obj_t *lbl_sender = lv_label_create(hdr); lv_label_set_text(lbl_sender, sender); lv_obj_set_style_text_color(lbl_sender, is_self ? lv_color_hex(0xE3F2FD) : lv_color_hex(0x90CAF9), 0); lv_obj_set_style_text_font(lbl_sender, &lv_font_arial_22, 0); lv_obj_t *lbl_time = lv_label_create(hdr); lv_label_set_text(lbl_time, time_str); lv_obj_set_style_text_color(lbl_time, lv_color_hex(0xB0B0B0), 0); lv_obj_set_style_text_font(lbl_time, &lv_font_arial_20, 0); // Message body (below header) lv_obj_t *lbl_msg = lv_label_create(bubble); lv_label_set_text(lbl_msg, msg); lv_label_set_long_mode(lbl_msg, LV_LABEL_LONG_WRAP); lv_obj_set_width(lbl_msg, lv_pct(100)); lv_obj_set_style_text_color(lbl_msg, lv_color_hex(0xFFFFFF), 0); lv_obj_set_style_text_font(lbl_msg, &lv_font_arial_26, 0); // Spacing between header and text //lv_obj_set_style_margin_top(lbl_msg, 6, 0); lv_obj_set_style_pad_row(bubble, 6, 0); chat_items[chat_count++] = row; lv_obj_scroll_to_view(row, LV_ANIM_ON); } void add_private_chat_bubble(lv_obj_t *list, const char *time_str, const char *msg, bool is_self) { lv_obj_set_style_pad_bottom(list, 20, 0); // 1. Row container lv_obj_t *row = lv_obj_create(list); lv_obj_set_width(row, lv_pct(100)); lv_obj_set_height(row, LV_SIZE_CONTENT); lv_obj_set_style_bg_opa(row, 0, 0); lv_obj_set_style_border_width(row, 0, 0); lv_obj_set_style_pad_all(row, 4, 0); lv_obj_clear_flag(row, LV_OBJ_FLAG_SCROLLABLE); lv_obj_set_flex_flow(row, LV_FLEX_FLOW_ROW); lv_obj_set_flex_align(row, is_self ? LV_FLEX_ALIGN_END : LV_FLEX_ALIGN_START, LV_FLEX_ALIGN_START, LV_FLEX_ALIGN_START); // 2. Aligner (Column) - Κρατάει το Label και την Ώρα lv_obj_t *aligner = lv_obj_create(row); lv_obj_set_width(aligner, LV_SIZE_CONTENT); lv_obj_set_height(aligner, LV_SIZE_CONTENT); lv_obj_set_style_bg_opa(aligner, 0, 0); lv_obj_set_style_border_width(aligner, 0, 0); lv_obj_set_style_pad_all(aligner, 0, 0); lv_obj_set_flex_flow(aligner, LV_FLEX_FLOW_COLUMN); lv_obj_set_flex_align(aligner, is_self ? LV_FLEX_ALIGN_END : LV_FLEX_ALIGN_START, LV_FLEX_ALIGN_START, LV_FLEX_ALIGN_START); lv_obj_set_style_pad_row(aligner, 4, 0); // 3. Το Label-Bubble (Ενοποιημένο) lv_obj_t *lbl_msg = lv_label_create(aligner); // Long mode για wrap lv_label_set_long_mode(lbl_msg, LV_LABEL_LONG_WRAP); lv_label_set_text(lbl_msg, msg); lv_obj_set_style_text_font(lbl_msg, &lv_font_arial_22, 0); // Fixed max width για wrap lv_obj_set_width(lbl_msg, 400); // max πλάτος lv_obj_set_height(lbl_msg, LV_SIZE_CONTENT); // αυτόματο ύψος // Bubble style lv_obj_set_style_bg_opa(lbl_msg, LV_OPA_COVER, 0); lv_obj_set_style_radius(lbl_msg, 12, 0); lv_obj_set_style_pad_all(lbl_msg, 12, 0); if(is_self) { lv_obj_set_style_bg_color(lbl_msg, lv_color_hex(0x1E88E5), 0); lv_obj_set_style_text_color(lbl_msg, lv_color_hex(0xFFFFFF), 0); } else { lv_obj_set_style_bg_color(lbl_msg, lv_color_hex(0xFFFFFF), 0); lv_obj_set_style_text_color(lbl_msg, lv_color_hex(0x000000), 0); } // 4. Η Ώρα lv_obj_t *lbl_time = lv_label_create(aligner); lv_label_set_text(lbl_time, time_str); lv_obj_set_style_text_color(lbl_time, lv_color_hex(0x808080), 0); lv_obj_set_style_text_font(lbl_time, &lv_font_arial_14, 0); lv_obj_scroll_to_view(row, LV_ANIM_ON); } // Elecrow Display callbacks /* Display flushing */ void my_disp_flush(lv_disp_drv_t *disp, const lv_area_t *area, lv_color_t *color_p) { uint32_t w = (area->x2 - area->x1 + 1); uint32_t h = (area->y2 - area->y1 + 1); //lcd.fillScreen(TFT_WHITE); #if (LV_COLOR_16_SWAP != 0) lcd.pushImageDMA(area->x1, area->y1, w, h,(lgfx::rgb565_t*)&color_p->full); #else lcd.pushImageDMA(area->x1, area->y1, w, h,(lgfx::rgb565_t*)&color_p->full);// #endif lv_disp_flush_ready(disp); } void my_touchpad_read(lv_indev_drv_t *indev_driver, lv_indev_data_t *data) { if (touch_has_signal()) { if (touch_touched()) { data->state = LV_INDEV_STATE_PR; /*Set the coordinates*/ data->point.x = touch_last_x; data->point.y = touch_last_y; // #ifndef MODE_RELEASE // Serial.printf("Data x: %d, Data y: %d", touch_last_x, touch_last_y); // Serial.println(); // #endif } else if (touch_released()) { data->state = LV_INDEV_STATE_REL; } } else { data->state = LV_INDEV_STATE_REL; } delay(15); } void initializeUI() { Serial.println("initialize UI..."); ui_init(); //ui_init_screen_events(); /* #ifdef ENABLE_STARTUP_LOGO lv_disp_load_scr(ui_ScreenLogo); for( int i=0; i < 100; i++ ){ lv_task_handler(); delay(10); } lv_scr_load_anim(ui_Screen1, LV_SCR_LOAD_ANIM_MOVE_TOP, 500, 0, true); #else ui_init(); #endif */ uiManager = new UIManager(); } void configureDisplay() { Serial.println("Configuring display..."); screenWidth = lcd.width(); screenHeight = lcd.height(); lv_disp_draw_buf_init(&draw_buf, disp_draw_buf, NULL, screenWidth * screenHeight / 10); /* Initialize the display */ lv_disp_drv_init(&disp_drv); /* Change the following line to your display resolution */ disp_drv.hor_res = screenWidth; disp_drv.ver_res = screenHeight; disp_drv.flush_cb = my_disp_flush; disp_drv.draw_buf = &draw_buf; lv_disp_drv_register(&disp_drv); /* Initialize the (dummy) input device driver */ static lv_indev_drv_t indev_drv; lv_indev_drv_init(&indev_drv); indev_drv.type = LV_INDEV_TYPE_POINTER; indev_drv.read_cb = my_touchpad_read; lv_indev_drv_register(&indev_drv); #ifdef TFT_BL pinMode(TFT_BL, OUTPUT); digitalWrite(TFT_BL, HIGH); #endif lcd.fillScreen(0x000000u); } void onWaitRelayPressed(bool pressed) { //mySettings->writeBool(PREF_WAIT_RELAY, pressed); } void initializeDisplay() { Serial.println("Initializing display..."); lcd.begin(); lcd.fillScreen(0x000000u); lcd.setTextSize(2); //lcd.setBrightness(127); } void initializeTouchScreen() { Serial.println("Initializing touch screen..."); touch_init(); } void initializeLVGL() { Serial.println("Initializing LVGL..."); lv_init(); } void createSemaphores() { #ifdef USE_MULTI_THREAD semaphoreData = xSemaphoreCreateMutex(); xSemaphoreGive(semaphoreData); #endif } // Believe it or not, this std C function is busted on some platforms! static uint32_t _atoi(const char* sp) { uint32_t n = 0; while (*sp && *sp >= '0' && *sp <= '9') { n *= 10; n += (*sp++ - '0'); } return n; } /* -------------------------------------------------------------------------------------- */ struct NodePrefs { // persisted to file float airtime_factor; char node_name[32]; double node_lat, node_lon; float freq; uint8_t tx_power_dbm; uint8_t unused[3]; }; class MyMesh : public BaseChatMesh, ContactVisitor { FILESYSTEM* _fs; NodePrefs _prefs; uint32_t expected_ack_crc; ChannelDetails* _public; unsigned long last_msg_sent; ContactInfo* curr_recipient; char command[512+10]; uint8_t tmp_buf[256]; char hex_buf[512]; const char* getTypeName(uint8_t type) const { if (type == ADV_TYPE_CHAT) return "Chat"; if (type == ADV_TYPE_REPEATER) return "Repeater"; if (type == ADV_TYPE_ROOM) return "Room"; return "??"; // unknown } void loadContacts() { if (_fs->exists("/contacts")) { #if defined(RP2040_PLATFORM) File file = _fs->open("/contacts", "r"); #else File file = _fs->open("/contacts"); #endif if (file) { bool full = false; while (!full) { ContactInfo c; uint8_t pub_key[32]; uint8_t unused; uint32_t reserved; bool success = (file.read(pub_key, 32) == 32); success = success && (file.read((uint8_t *) &c.name, 32) == 32); success = success && (file.read(&c.type, 1) == 1); success = success && (file.read(&c.flags, 1) == 1); success = success && (file.read(&unused, 1) == 1); success = success && (file.read((uint8_t *) &reserved, 4) == 4); success = success && (file.read((uint8_t *) &c.out_path_len, 1) == 1); success = success && (file.read((uint8_t *) &c.last_advert_timestamp, 4) == 4); success = success && (file.read(c.out_path, 64) == 64); c.gps_lat = c.gps_lon = 0; // not yet supported if (!success) break; // EOF c.id = mesh::Identity(pub_key); c.lastmod = 0; if (!addContact(c)) full = true; } file.close(); } } } void saveContacts() { #if defined(NRF52_PLATFORM) _fs->remove("/contacts"); File file = _fs->open("/contacts", FILE_O_WRITE); #elif defined(RP2040_PLATFORM) File file = _fs->open("/contacts", "w"); #else File file = _fs->open("/contacts", "w", true); #endif if (file) { ContactsIterator iter; ContactInfo c; uint8_t unused = 0; uint32_t reserved = 0; while (iter.hasNext(this, c)) { bool success = (file.write(c.id.pub_key, 32) == 32); success = success && (file.write((uint8_t *) &c.name, 32) == 32); success = success && (file.write(&c.type, 1) == 1); success = success && (file.write(&c.flags, 1) == 1); success = success && (file.write(&unused, 1) == 1); success = success && (file.write((uint8_t *) &reserved, 4) == 4); success = success && (file.write((uint8_t *) &c.out_path_len, 1) == 1); success = success && (file.write((uint8_t *) &c.last_advert_timestamp, 4) == 4); success = success && (file.write(c.out_path, 64) == 64); if (!success) break; // write failed } file.close(); } } void setClock(uint32_t timestamp) { uint32_t curr = getRTCClock()->getCurrentTime(); if (timestamp > curr) { getRTCClock()->setCurrentTime(timestamp); Serial.println(" (OK - clock set!)"); } else { Serial.println(" (ERR: clock cannot go backwards)"); } } void importCard(const char* command) { while (*command == ' ') command++; // skip leading spaces if (memcmp(command, "meshcore://", 11) == 0) { command += 11; // skip the prefix char *ep = strchr(command, 0); // find end of string while (ep > command) { ep--; if (mesh::Utils::isHexChar(*ep)) break; // found tail end of card *ep = 0; // remove trailing spaces and other junk } int len = strlen(command); if (len % 2 == 0) { len >>= 1; // halve, for num bytes if (mesh::Utils::fromHex(tmp_buf, len, command)) { importContact(tmp_buf, len); return; } } } Serial.println(" error: invalid format"); } protected: float getAirtimeBudgetFactor() const override { return _prefs.airtime_factor; } int calcRxDelay(float score, uint32_t air_time) const override { return 0; // disable rxdelay } bool allowPacketForward(const mesh::Packet* packet) override { return true; } void onDiscoveredContact(ContactInfo& contact, bool is_new, uint8_t path_len, const uint8_t* path) override { // TODO: if not in favs, prompt to add as fav(?) Serial.printf("ADVERT from -> %s\n", contact.name); Serial.printf(" type: %s\n", getTypeName(contact.type)); Serial.print(" public key: "); mesh::Utils::printHex(Serial, contact.id.pub_key, PUB_KEY_SIZE); Serial.println(); saveContacts(); } void onContactPathUpdated(const ContactInfo& contact) override { Serial.printf("PATH to: %s, path_len=%d\n", contact.name, (int32_t) contact.out_path_len); saveContacts(); } ContactInfo* processAck(const uint8_t *data) override { if (memcmp(data, &expected_ack_crc, 4) == 0) { // got an ACK from recipient Serial.printf(" Got ACK! (round trip: %d millis)\n", _ms->getMillis() - last_msg_sent); // NOTE: the same ACK can be received multiple times! expected_ack_crc = 0; // reset our expected hash, now that we have received ACK return NULL; // TODO: really should return ContactInfo pointer } //uint32_t crc; //memcpy(&crc, data, 4); //MESH_DEBUG_PRINTLN("unknown ACK received: %08X (expected: %08X)", crc, expected_ack_crc); return NULL; } void onMessageRecv(const ContactInfo& from, mesh::Packet* pkt, uint32_t sender_timestamp, const char *text) override { Serial.printf("(%s) MSG -> from %s\n", pkt->isRouteDirect() ? "DIRECT" : "FLOOD", from.name); Serial.printf(" %s\n", text); if (strcmp(text, "clock sync") == 0) { // special text command setClock(sender_timestamp + 1); } char time_buf[16]; format_time(sender_timestamp, time_buf, sizeof(time_buf)); bool is_self = (strcmp(from.name, _prefs.node_name) == 0); add_private_chat_bubble(ui_ContactMessages, time_buf, text, is_self); } void onCommandDataRecv(const ContactInfo& from, mesh::Packet* pkt, uint32_t sender_timestamp, const char *text) override { MESH_DEBUG_PRINTLN("onCommandDataRecv"); } void onSignedMessageRecv(const ContactInfo& from, mesh::Packet* pkt, uint32_t sender_timestamp, const uint8_t *sender_prefix, const char *text) override { MESH_DEBUG_PRINTLN("onSignedMessageRecv"); } void onChannelMessageRecv(const mesh::GroupChannel& channel, mesh::Packet* pkt, uint32_t timestamp, const char *text) override { if (pkt->isRouteDirect()) { Serial.printf("PUBLIC CHANNEL MSG -> (Direct!)\n"); } else { Serial.printf("PUBLIC CHANNEL MSG -> (Flood) hops %d\n", pkt->path_len); } Serial.printf(" %s\n", text); // Μόνο public // if (strcmp(channel.secret, PUBLIC_GROUP_PSK) != 0) // return; if (pkt->getPayloadType() != PAYLOAD_TYPE_GRP_TXT) return; char time_buf[16]; format_time(timestamp, time_buf, sizeof(time_buf)); char sender[32]; char msg[192]; parse_group_message(text, sender, sizeof(sender), msg, sizeof(msg)); bool is_self = (strcmp(sender, _prefs.node_name) == 0); add_chat_bubble(ui_ChannelMessages, time_buf, sender, msg, is_self); } uint8_t onContactRequest(const ContactInfo& contact, uint32_t sender_timestamp, const uint8_t* data, uint8_t len, uint8_t* reply) override { MESH_DEBUG_PRINTLN("onContactRequest"); return 0; // unknown } void onContactResponse(const ContactInfo& contact, const uint8_t* data, uint8_t len) override { MESH_DEBUG_PRINTLN("onContactResponse"); // not supported } uint32_t calcFloodTimeoutMillisFor(uint32_t pkt_airtime_millis) const override { return SEND_TIMEOUT_BASE_MILLIS + (FLOOD_SEND_TIMEOUT_FACTOR * pkt_airtime_millis); } uint32_t calcDirectTimeoutMillisFor(uint32_t pkt_airtime_millis, uint8_t path_len) const override { return SEND_TIMEOUT_BASE_MILLIS + ( (pkt_airtime_millis*DIRECT_SEND_PERHOP_FACTOR + DIRECT_SEND_PERHOP_EXTRA_MILLIS) * (path_len + 1)); } void onSendTimeout() override { Serial.println(" ERROR: timed out, no ACK."); } public: MyMesh(mesh::Radio& radio, StdRNG& rng, mesh::RTCClock& rtc, SimpleMeshTables& tables) : BaseChatMesh(radio, *new ArduinoMillis(), rng, rtc, *new StaticPoolPacketManager(16), tables) { // defaults memset(&_prefs, 0, sizeof(_prefs)); _prefs.airtime_factor = 2.0; // one third strcpy(_prefs.node_name, "NONAME"); _prefs.freq = LORA_FREQ; _prefs.tx_power_dbm = LORA_TX_POWER; command[0] = 0; curr_recipient = NULL; } float getFreqPref() const { return _prefs.freq; } uint8_t getTxPowerPref() const { return _prefs.tx_power_dbm; } void begin(FILESYSTEM& fs) { _fs = &fs; BaseChatMesh::begin(); #if defined(NRF52_PLATFORM) IdentityStore store(fs, ""); #elif defined(RP2040_PLATFORM) IdentityStore store(fs, "/identity"); store.begin(); #else IdentityStore store(fs, "/identity"); #endif if (!store.load("_main", self_id, _prefs.node_name, sizeof(_prefs.node_name))) { // legacy: node_name was from identity file // Need way to get some entropy to seed RNG Serial.println("Press ENTER to generate key:"); char c = 0; while (c != '\n') { // wait for ENTER to be pressed if (Serial.available()) c = Serial.read(); } ((StdRNG *)getRNG())->begin(millis()); self_id = mesh::LocalIdentity(getRNG()); // create new random identity int count = 0; while (count < 10 && (self_id.pub_key[0] == 0x00 || self_id.pub_key[0] == 0xFF)) { // reserved id hashes self_id = mesh::LocalIdentity(getRNG()); count++; } store.save("_main", self_id); } // load persisted prefs if (_fs->exists("/node_prefs")) { #if defined(RP2040_PLATFORM) File file = _fs->open("/node_prefs", "r"); #else File file = _fs->open("/node_prefs"); #endif if (file) { file.read((uint8_t *) &_prefs, sizeof(_prefs)); file.close(); } } loadContacts(); _public = addChannel("Public", PUBLIC_GROUP_PSK); // pre-configure Andy's public channel } void savePrefs() { #if defined(NRF52_PLATFORM) _fs->remove("/node_prefs"); File file = _fs->open("/node_prefs", FILE_O_WRITE); #elif defined(RP2040_PLATFORM) File file = _fs->open("/node_prefs", "w"); #else File file = _fs->open("/node_prefs", "w", true); #endif if (file) { file.write((const uint8_t *)&_prefs, sizeof(_prefs)); file.close(); } } void showWelcome() { Serial.println("===== MeshCore Chat Terminal ====="); Serial.println(); Serial.printf("WELCOME %s\n", _prefs.node_name); mesh::Utils::printHex(Serial, self_id.pub_key, PUB_KEY_SIZE); Serial.println(); Serial.println(" (enter 'help' for basic commands)"); Serial.println(); } void sendSelfAdvert(int delay_millis) { auto pkt = createSelfAdvert(_prefs.node_name, _prefs.node_lat, _prefs.node_lon); if (pkt) { sendFlood(pkt, delay_millis); } } // ContactVisitor void onContactVisit(const ContactInfo& contact) override { Serial.printf(" %s - ", contact.name); char tmp[40]; int32_t secs = contact.last_advert_timestamp - getRTCClock()->getCurrentTime(); AdvertTimeHelper::formatRelativeTimeDiff(tmp, secs, false); Serial.println(tmp); } void handleCommand(const char* command) { while (*command == ' ') command++; // skip leading spaces if (memcmp(command, "send ", 5) == 0) { if (curr_recipient) { const char *text = &command[5]; uint32_t est_timeout; int result = sendMessage(*curr_recipient, getRTCClock()->getCurrentTime(), 0, text, expected_ack_crc, est_timeout); if (result == MSG_SEND_FAILED) { Serial.println(" ERROR: unable to send."); } else { last_msg_sent = _ms->getMillis(); Serial.printf(" (message sent - %s)\n", result == MSG_SEND_SENT_FLOOD ? "FLOOD" : "DIRECT"); } } else { Serial.println(" ERROR: no recipient selected (use 'to' cmd)."); } } else if (memcmp(command, "public ", 7) == 0) { // send GroupChannel msg uint8_t temp[5+MAX_TEXT_LEN+32]; uint32_t timestamp = getRTCClock()->getCurrentTime(); memcpy(temp, ×tamp, 4); // mostly an extra blob to help make packet_hash unique temp[4] = 0; // attempt and flags sprintf((char *) &temp[5], "%s: %s", _prefs.node_name, &command[7]); // : temp[5 + MAX_TEXT_LEN] = 0; // truncate if too long int len = strlen((char *) &temp[5]); auto pkt = createGroupDatagram(PAYLOAD_TYPE_GRP_TXT, _public->channel, temp, 5 + len); if (pkt) { sendFlood(pkt); Serial.println(" Sent."); } else { Serial.println(" ERROR: unable to send"); } } else if (memcmp(command, "list", 4) == 0) { // show Contact list, by most recent int n = 0; if (command[4] == ' ') { // optional param, last 'N' n = atoi(&command[5]); } scanRecentContacts(n, this); } else if (strcmp(command, "clock") == 0) { // show current time uint32_t now = getRTCClock()->getCurrentTime(); DateTime dt = DateTime(now); Serial.printf( "%02d:%02d - %d/%d/%d UTC\n", dt.hour(), dt.minute(), dt.day(), dt.month(), dt.year()); } else if (memcmp(command, "time ", 5) == 0) { // set time (to epoch seconds) uint32_t secs = _atoi(&command[5]); setClock(secs); } else if (memcmp(command, "to ", 3) == 0) { // set current recipient curr_recipient = searchContactsByPrefix(&command[3]); if (curr_recipient) { Serial.printf(" Recipient %s now selected.\n", curr_recipient->name); } else { Serial.println(" Error: Name prefix not found."); } } else if (strcmp(command, "to") == 0) { // show current recipient if (curr_recipient) { Serial.printf(" Current: %s\n", curr_recipient->name); } else { Serial.println(" Err: no recipient selected"); } } else if (strcmp(command, "advert") == 0) { auto pkt = createSelfAdvert(_prefs.node_name, _prefs.node_lat, _prefs.node_lon); if (pkt) { sendZeroHop(pkt); Serial.println(" (advert sent, zero hop)."); } else { Serial.println(" ERR: unable to send"); } } else if (strcmp(command, "reset path") == 0) { if (curr_recipient) { resetPathTo(*curr_recipient); saveContacts(); Serial.println(" Done."); } } else if (memcmp(command, "card", 4) == 0) { Serial.printf("Hello %s\n", _prefs.node_name); auto pkt = createSelfAdvert(_prefs.node_name, _prefs.node_lat, _prefs.node_lon); if (pkt) { uint8_t len = pkt->writeTo(tmp_buf); releasePacket(pkt); // undo the obtainNewPacket() mesh::Utils::toHex(hex_buf, tmp_buf, len); Serial.println("Your MeshCore biz card:"); Serial.print("meshcore://"); Serial.println(hex_buf); Serial.println(); } else { Serial.println(" Error"); } } else if (memcmp(command, "import ", 7) == 0) { importCard(&command[7]); } else if (memcmp(command, "set ", 4) == 0) { const char* config = &command[4]; if (memcmp(config, "af ", 3) == 0) { _prefs.airtime_factor = atof(&config[3]); savePrefs(); Serial.println(" OK"); } else if (memcmp(config, "name ", 5) == 0) { StrHelper::strncpy(_prefs.node_name, &config[5], sizeof(_prefs.node_name)); savePrefs(); Serial.println(" OK"); } else if (memcmp(config, "lat ", 4) == 0) { _prefs.node_lat = atof(&config[4]); savePrefs(); Serial.println(" OK"); } else if (memcmp(config, "lon ", 4) == 0) { _prefs.node_lon = atof(&config[4]); savePrefs(); Serial.println(" OK"); } else if (memcmp(config, "tx ", 3) == 0) { _prefs.tx_power_dbm = atoi(&config[3]); savePrefs(); Serial.println(" OK - reboot to apply"); } else if (memcmp(config, "freq ", 5) == 0) { _prefs.freq = atof(&config[5]); savePrefs(); Serial.println(" OK - reboot to apply"); } else { Serial.printf(" ERROR: unknown config: %s\n", config); } } else if (memcmp(command, "ver", 3) == 0) { Serial.println(FIRMWARE_VER_TEXT); } else if (memcmp(command, "help", 4) == 0) { Serial.println("Commands:"); Serial.println(" set {name|lat|lon|freq|tx|af} {value}"); Serial.println(" card"); Serial.println(" import {biz card}"); Serial.println(" clock"); Serial.println(" time "); Serial.println(" list {n}"); Serial.println(" to "); Serial.println(" to"); Serial.println(" send "); Serial.println(" advert"); Serial.println(" reset path"); Serial.println(" public "); } else { Serial.print(" ERROR: unknown command: "); Serial.println(command); } } void loop() { BaseChatMesh::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 (len == sizeof(command)-1) { // command buffer full command[sizeof(command)-1] = '\r'; } if (len > 0 && command[len - 1] == '\r') { // received complete line command[len - 1] = 0; // replace newline with C string null terminator handleCommand(command); command[0] = 0; // reset command buffer } } }; StdRNG fast_rng; SimpleMeshTables tables; MyMesh the_mesh(radio_driver, fast_rng, rtc_clock, tables); void halt() { while (1) ; } void setup() { Serial.begin(115200); board.begin(); if (!radio_init()) { halt(); } fast_rng.begin(radio_get_rng_seed()); #if defined(NRF52_PLATFORM) InternalFS.begin(); the_mesh.begin(InternalFS); #elif defined(RP2040_PLATFORM) LittleFS.begin(); the_mesh.begin(LittleFS); #elif defined(ESP32) SPIFFS.begin(true); the_mesh.begin(SPIFFS); #else #error "need to define filesystem" #endif radio_set_params(the_mesh.getFreqPref(), LORA_BW, LORA_SF, LORA_CR); radio_set_tx_power(the_mesh.getTxPowerPref()); the_mesh.showWelcome(); // send out initial Advertisement to the mesh the_mesh.sendSelfAdvert(1200); // add slight delay initializeDisplay(); delay(200); initializeLVGL(); initializeTouchScreen(); configureDisplay(); createSemaphores(); initializeUI(); createTasks(); Serial.println("Setup completed"); } void loop() { the_mesh.loop(); rtc_clock.tick(); } // void loop() { // vTaskDelete(NULL); // }