Skip to content

Commit a8ceb6d

Browse files
committed
add idahomesh broker preset
1 parent 482d743 commit a8ceb6d

2 files changed

Lines changed: 3 additions & 1 deletion

File tree

MQTT_IMPLEMENTATION.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -160,6 +160,7 @@ below documents the current build.
160160
| `wcmesh` | `wss://mqtt.wcmesh.com:443` | JWT ||
161161
| `atvirastinklas` | `wss://mqtt-mc.atvirastinklas.lt:443` | JWT ||
162162
| `gomesh` | `wss://mqtt.gomesh.dev:443` | JWT ||
163+
| `idahomesh` | `wss://mqtt.idahomesh.org:443/mqtt` | JWT ||
163164
| `custom` | your own broker | User/pass, or JWT when `mqttN.audience` is set | `set mqttN.server` (see [custom broker setup](#custom-brokers)) |
164165
| `none` | (slot disabled) |||
165166

src/helpers/MQTTPresets.h

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,7 @@ static const char ISRG_ROOT_X1[] PROGMEM =
127127
"-----END CERTIFICATE-----\n";
128128

129129
// Number of built-in presets
130-
static const int MQTT_PRESET_COUNT = 33;
130+
static const int MQTT_PRESET_COUNT = 34;
131131

132132
// Built-in preset definitions (stored in flash)
133133
static const MQTTPresetDef MQTT_PRESETS[MQTT_PRESET_COUNT] = {
@@ -173,6 +173,7 @@ static const MQTTPresetDef MQTT_PRESETS[MQTT_PRESET_COUNT] = {
173173
{ "atvirastinklas","wss://mqtt-mc.atvirastinklas.lt:443", "mqtt-mc.atvirastinklas.lt", GTS_ROOT_R4, MQTT_AUTH_JWT, MQTT_TOPIC_MESHCORE, 0, true, 55, nullptr, nullptr },
174174
// JWT token auth; LE Gen-Y ECDSA chain (YE2 → Root YE → X2) still anchors at ISRG Root X1.
175175
{ "gomesh", "wss://mqtt.gomesh.dev:443", "mqtt.gomesh.dev", ISRG_ROOT_X1, MQTT_AUTH_JWT, MQTT_TOPIC_MESHCORE, 0, true, 55, nullptr, nullptr },
176+
{ "idahomesh", "wss://mqtt.idahomesh.org:443/mqtt", "mqtt.idahomesh.org", ISRG_ROOT_X1, MQTT_AUTH_JWT, MQTT_TOPIC_MESHCORE, 0, true, 55, nullptr, nullptr },
176177
};
177178

178179
// Find a preset by name, returns nullptr if not found

0 commit comments

Comments
 (0)