Skip to content

Commit 42f99c2

Browse files
BrentIOclaude
andcommitted
Change OTA title prefix from Flashing to Updating for OLED consistency
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
1 parent 5638491 commit 42f99c2

2 files changed

Lines changed: 8 additions & 8 deletions

File tree

Controller/Controller.ino

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3597,7 +3597,7 @@ void setup_OtaFirmware(){
35973597
mqttDoc["in_progress"] = true;
35983598
mqttDoc["update_percentage"] = pct;
35993599
char title[32];
3600-
snprintf(title, sizeof(title), "Flashing %c%s",
3600+
snprintf(title, sizeof(title), "Updating %c%s",
36013601
toupper((unsigned char)_otaCurrentPartition[0]),
36023602
_otaCurrentPartition + 1);
36033603
mqttDoc["title"] = title;
@@ -3727,7 +3727,7 @@ void otaFirmware_checkPending(){
37273727
mqttDoc["in_progress"] = true;
37283728
mqttDoc["update_percentage"] = pct;
37293729
char title[32];
3730-
snprintf(title, sizeof(title), "Flashing %c%s",
3730+
snprintf(title, sizeof(title), "Updating %c%s",
37313731
toupper((unsigned char)_otaCurrentPartition[0]),
37323732
_otaCurrentPartition + 1);
37333733
mqttDoc["title"] = title;

Controller/asyncapi.yaml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1157,7 +1157,7 @@ components:
11571157
installed_version: "2026.04.01"
11581158
latest_version: "2026.06.21"
11591159
release_url: "https://github.com/BrentIO/FireFly-Controller/releases/tag/2026.06.21"
1160-
title: "Flashing UI"
1160+
title: "Updating UI"
11611161
in_progress: true
11621162
update_percentage: 23
11631163
- name: flashing-firmware
@@ -1166,15 +1166,15 @@ components:
11661166
installed_version: "2026.04.01"
11671167
latest_version: "2026.06.21"
11681168
release_url: "https://github.com/BrentIO/FireFly-Controller/releases/tag/2026.06.21"
1169-
title: "Flashing Firmware"
1169+
title: "Updating Firmware"
11701170
in_progress: true
11711171
update_percentage: 67
11721172
- name: forced-in-progress
11731173
summary: Forced OTA install — same installed and target version
11741174
payload:
11751175
installed_version: "2026.06.21"
11761176
latest_version: "2026.06.21 (Forced)"
1177-
title: "Flashing Firmware"
1177+
title: "Updating Firmware"
11781178
in_progress: true
11791179
update_percentage: 42
11801180
- name: failed
@@ -1420,11 +1420,11 @@ components:
14201420
type: string
14211421
description: >
14221422
Label indicating which partition is currently being flashed,
1423-
e.g. "Flashing Firmware" or "Flashing UI". Present only when
1423+
e.g. "Updating Firmware" or "Updating UI". Present only when
14241424
in_progress is true.
14251425
examples:
1426-
- "Flashing Firmware"
1427-
- "Flashing UI"
1426+
- "Updating Firmware"
1427+
- "Updating UI"
14281428
in_progress:
14291429
type: boolean
14301430
description: Whether the OTA update is still in progress. False indicates failure or completion.

0 commit comments

Comments
 (0)