Files
meshcore-mqtt/config.example.json
claude[bot] 899eeebd09 docs: update TCP port from 12345 to 5000
Updated all documentation references to reflect the correct TCP port 5000 for MeshCore device connections, as verified with Heltec V3.

- Updated README.md (8 instances including Docker section)
- Updated config.example.yaml
- Updated config.example.json

Fixes #13

Co-authored-by: JingleManSweep <jinglemansweep@users.noreply.github.com>
2025-11-16 22:25:18 +00:00

34 lines
643 B
JSON

{
"mqtt": {
"broker": "localhost",
"port": 1883,
"username": null,
"password": null,
"topic_prefix": "meshcore",
"qos": 0,
"retain": false
},
"meshcore": {
"connection_type": "tcp",
"address": "192.168.1.100",
"port": 5000,
"baudrate": 115200,
"timeout": 5,
"auto_fetch_restart_delay": 5,
"events": [
"CONTACT_MSG_RECV",
"CHANNEL_MSG_RECV",
"CONNECTED",
"DISCONNECTED",
"LOGIN_SUCCESS",
"LOGIN_FAILED",
"MESSAGES_WAITING",
"DEVICE_INFO",
"BATTERY",
"NEW_CONTACT",
"ADVERTISEMENT"
]
},
"log_level": "INFO"
}