-
Notifications
You must be signed in to change notification settings - Fork 277
Open
Description
Versions and Firmware
(base) ➜ firmware-2 meshtastic --version
2.3.8
(base) ➜ firmware-2 meshtastic --info
My info: { "myNodeNum": 3771639288, "rebootCount": 3, "minAppVersion": 30200 }
Metadata: { "firmwareVersion": "2.3.8.d490a33", "deviceStateVersion": 22, "canShutdown": true, "hasWifi": true, "hasBluetooth": true, "positionFlags": 811, "hwModel": "TBEAM", "hasEthernet": false, "role": "CLIENT", "hasRemoteHardware": false }
--set
has no effect with --host
(base) ➜ nsri-meshtastic meshtastic --set lora.ignore_mqtt false --host 192.168.68.128
Connected to radio
Set lora.ignore_mqtt to false
Writing modified preferences to device
(base) ➜ nsri-meshtastic meshtastic --export-config --host 192.168.68.128
# start of Meshtastic configure yaml
channel_url: ...
config:
...
lora:
ignoreMqtt: true
...
--configure
doesn't change ignoreMqtt
...
e0cea5f8.yaml
# Meshtastic Configuration YAML
channel_url: '{{ _.channel_url }}'
owner: '{{ long_name }}'
owner_short: '{{ short_name }}'
config:
bluetooth:
enabled: true
mode: RANDOM_PIN
lora:
region: EU_868
{# ignore_mqtt: false#}
network:
wifi_enabled: false
wifi_ssid: '{{ _.network.wifi_ssid }}'
wifi_psk: '{{ _.network.wifi_psk }}'
address_mode: DHCP
eth_enabled: false
module_config:
mqtt:
enabled: true
encryption_enabled: true
map_report_settings:
position_precision: 15
publish_interval_secs: {{ _.mqtt.publish_interval_secs }}
map_reporting_enabled: true
proxy_to_client_enabled: false
root: '{{ _.mqtt.root }}'
address: '{{ _.mqtt.address }}'
username: '{{ _.mqtt.username }}'
password: '{{ _.mqtt.password }}'
tls_enabled: true
telemetry:
air_quality_enabled: true
air_quality_interval: 900
device_update_interval: 900
environment_display_fahrenheit: false
environment_measurement_enabled: true
environment_screen_enabled: true
environment_update_interval: 900
power_measurement_enabled: false
power_screen_enabled: false
power_update_interval: 0
It doesn't matter if I have it commented out or not, I simply cannot configure a from scratch, without the UI due to the ignoreMqtt
not being affected by any CLI commands. I have tried both snake_case and camelCase, but I can see internally it's converting regardless.
(base) ➜ nsri-meshtastic meshtastic --factory-reset && meshtastic --reset-nodedb && meshtastic --configure config/e0cea5f8.yaml
Setting device owner to [Device Owner]
Setting device owner short to [Owner Short]
Setting channel url to [URL]
Set bluetooth.enabled to True
Set bluetooth.mode to RANDOM_PIN
Set lora.region to EU_868
Set network.wifi_enabled to False
Set network.wifi_ssid to [SSID]
Set network.wifi_psk to [PSK]
Set network.address_mode to DHCP
Set network.eth_enabled to False
Set mqtt.enabled to True
Set mqtt.encryption_enabled to True
Set mqtt.map_report_settings.position_precision to 15
Set mqtt.map_report_settings.publish_interval_secs to 0
Set mqtt.map_reporting_enabled to True
Set mqtt.proxy_to_client_enabled to False
Set mqtt.root to msh/ZA
Set mqtt.address to [MQTT Address]
Set mqtt.username to [Username]
Set mqtt.password to [Password]
Set mqtt.tls_enabled to True
Set telemetry.air_quality_enabled to True
Set telemetry.air_quality_interval to 900
Set telemetry.device_update_interval to 900
Set telemetry.environment_display_fahrenheit to False
Set telemetry.environment_measurement_enabled to True
Set telemetry.environment_screen_enabled to True
Set telemetry.environment_update_interval to 900
Set telemetry.power_measurement_enabled to False
Set telemetry.power_screen_enabled to False
Set telemetry.power_update_interval to 0
meshtastic --export-config > config/resultant_e0cea5f8.yaml
# start of Meshtastic configure yaml
channel_url: '[Channel URL]'
config:
bluetooth:
enabled: true
fixedPin: [Fixed Pin]
device:
nodeInfoBroadcastSecs: 10800
serialEnabled: true
display:
screenOnSecs: 600
lora:
hopLimit: 3
ignoreMqtt: true
region: EU_868
sx126xRxBoostedGain: true
txEnabled: true
txPower: 27
usePreset: true
network:
ntpServer: 0.pool.ntp.org
wifiPsk: '[WiFi PSK]'
wifiSsid: '[WiFi SSID]'
position:
broadcastSmartMinimumDistance: 100
broadcastSmartMinimumIntervalSecs: 30
gpsMode: ENABLED
gpsUpdateInterval: 120
positionBroadcastSecs: 900
positionBroadcastSmartEnabled: true
positionFlags: 811
power:
lsSecs: 300
minWakeSecs: 10
sdsSecs: 4294967295
waitBluetoothSecs: 60
module_config:
ambientLighting:
blue: 248
current: 10
green: 165
red: 206
detectionSensor:
detectionTriggeredHigh: true
minimumBroadcastSecs: 45
mqtt:
address: '[MQTT Address]'
enabled: true
encryptionEnabled: true
mapReportSettings:
positionPrecision: 15
mapReportingEnabled: true
password: '[MQTT Password]'
root: 'msh/ZA'
tlsEnabled: true
username: '[MQTT Username]'
neighborInfo:
updateInterval: 900
paxcounter:
paxcounterUpdateInterval: 120
rangeTest:
sender: 15
telemetry:
airQualityEnabled: true
airQualityInterval: 900
deviceUpdateInterval: 900
environmentMeasurementEnabled: true
environmentScreenEnabled: true
environmentUpdateInterval: 900
owner: '[Owner]'
owner_short: '[Owner Short]'
This is a bit of an issue for me, I need a simple streamline way of configuring devices from scratch, and then updating via CI/CD at a later time remotely. I was hoping --configure
would be effective but it seems not.
lysol, fattredd and natehudson
Metadata
Metadata
Assignees
Labels
No labels