mirror of
https://github.com/agessaman/MeshCore.git
synced 2026-08-29 09:48:52 +00:00
Include detailed instructions for local testing of observer and WiFi functionality without hardware. Document the use of a mock backend and Wokwi ESP32-S3 simulation for easier development and testing. Enhance the MQTT implementation documentation to improve developer experience and facilitate testing workflows.
19 lines
577 B
JSON
19 lines
577 B
JSON
{
|
|
"version": 1,
|
|
"author": "MeshCore",
|
|
"editor": "wokwi",
|
|
"parts": [
|
|
{ "type": "board-esp32-s3-devkitc-1", "id": "esp", "top": 0, "left": 0, "attrs": {} },
|
|
{ "type": "board-ssd1306", "id": "oled", "top": -110, "left": 90,
|
|
"attrs": { "i2cAddress": "0x3c" } }
|
|
],
|
|
"connections": [
|
|
[ "esp:3V3", "oled:VCC", "red", [] ],
|
|
[ "esp:GND.1", "oled:GND", "black", [] ],
|
|
[ "esp:17", "oled:SDA", "green", [] ],
|
|
[ "esp:18", "oled:SCL", "yellow", [] ],
|
|
[ "esp:TX", "$serialMonitor:RX", "", [] ],
|
|
[ "esp:RX", "$serialMonitor:TX", "", [] ]
|
|
]
|
|
}
|