diff --git a/README.md b/README.md index b288e80..797b584 100644 --- a/README.md +++ b/README.md @@ -4,7 +4,7 @@ Overland Controller is a local-first vehicle power and monitoring system designe Current target vehicle: - Nissan Xterra + overland vehicle The firmware itself is intended to stay vehicle-agnostic. diff --git a/docs/API.md b/docs/API.md index d5e39f3..0c5a39b 100644 --- a/docs/API.md +++ b/docs/API.md @@ -880,7 +880,7 @@ Updates the AP SSID/password and restarts the access point. Example request: { - "ssid": "Xterra-Camp", + "ssid": "Overland-Controller", "password": "new-secure-password" } diff --git a/docs/ARCHITECTURE.md b/docs/ARCHITECTURE.md index ba5f908..88da9a4 100644 --- a/docs/ARCHITECTURE.md +++ b/docs/ARCHITECTURE.md @@ -1,6 +1,6 @@ # Architecture -Overland Controller is a distributed monitoring and control platform for the Nissan Xterra and future mobile power systems. +Overland Controller is a distributed monitoring and control platform for mobile power systems and overland vehicles. Core principle: diff --git a/docs/archive/codex-handoff.md b/docs/archive/codex-handoff.md index 78009b4..4a61969 100644 --- a/docs/archive/codex-handoff.md +++ b/docs/archive/codex-handoff.md @@ -1,4 +1,4 @@ -# Xterra Overland Dashboard - Codex Handoff +# Overland Controller - Codex Handoff ## Repository @@ -27,7 +27,7 @@ Before making any code changes: # Project Overview -The project is an overland vehicle monitoring and control system for a Nissan Xterra. +The project is an overland vehicle monitoring and control system for a overland vehicle. Architecture: diff --git a/docs/archive/pico-architecture.md b/docs/archive/pico-architecture.md index 76f5ffe..7ca5a32 100644 --- a/docs/archive/pico-architecture.md +++ b/docs/archive/pico-architecture.md @@ -2,7 +2,7 @@ ## Purpose -The Raspberry Pi Pico 2 W dashboard is the primary user interface for the Xterra Overland Power & Monitoring Dashboard. +The Raspberry Pi Pico 2 W dashboard is the primary user interface for the Overland Controller dashboard. Its responsibilities are: diff --git a/docs/archive/uart.md b/docs/archive/uart.md index dccb810..c00a054 100644 --- a/docs/archive/uart.md +++ b/docs/archive/uart.md @@ -4,7 +4,7 @@ The first hardware version will use UART over CAT5 between the Pico dashboard and the ESP32 controller. -UART is simpler than RS-485 and should be reliable for the short cable run inside the Xterra. +UART is simpler than RS-485 and should be reliable for the short cable run inside the vehicle. RS-485 remains a future fallback if testing reveals communication issues. diff --git a/firmware/esp32/overland-controller/overland-controller.ino b/firmware/esp32/overland-controller/overland-controller.ino index 1011ab1..e7a8549 100644 --- a/firmware/esp32/overland-controller/overland-controller.ino +++ b/firmware/esp32/overland-controller/overland-controller.ino @@ -233,7 +233,7 @@ input{width:100%;border:1px solid var(--line);border-radius:12px;padding:12px;ba
Current AP--
Security--
- +
SSID must be 1-32 characters.
Password must be 8-63 characters. The current password is never displayed.
diff --git a/simulator/templates/index.html b/simulator/templates/index.html index 666847f..3f1077d 100644 --- a/simulator/templates/index.html +++ b/simulator/templates/index.html @@ -1,7 +1,7 @@ - Xterra Dashboard Simulator + Overland Controller Simulator @@ -23,7 +23,7 @@
-

Xterra Dashboard

+

Overland Controller

UART: -- | WiFi: --
diff --git a/tools/esp32_ble_discover/esp32_ble_discover.ino b/tools/esp32_ble_discover/esp32_ble_discover.ino index 113fcdb..fc7bd78 100644 --- a/tools/esp32_ble_discover/esp32_ble_discover.ino +++ b/tools/esp32_ble_discover/esp32_ble_discover.ino @@ -11,7 +11,7 @@ void setup() { Serial.print("Target: "); Serial.println(TARGET_ADDRESS); - NimBLEDevice::init("XterraESP32"); + NimBLEDevice::init("OverlandController"); NimBLEDevice::setPower(ESP_PWR_LVL_P9); NimBLEAddress address(std::string(TARGET_ADDRESS), BLE_ADDR_PUBLIC); diff --git a/tools/esp32_jbd_read_test/esp32_jbd_read_test.ino b/tools/esp32_jbd_read_test/esp32_jbd_read_test.ino index 407149e..6d4108a 100644 --- a/tools/esp32_jbd_read_test/esp32_jbd_read_test.ino +++ b/tools/esp32_jbd_read_test/esp32_jbd_read_test.ino @@ -44,7 +44,7 @@ void setup() { Serial.print("Target: "); Serial.println(TARGET_ADDRESS); - NimBLEDevice::init("XterraESP32"); + NimBLEDevice::init("OverlandController"); NimBLEDevice::setPower(ESP_PWR_LVL_P9); NimBLEAddress address(std::string(TARGET_ADDRESS), BLE_ADDR_PUBLIC);