Skip to content

Commit

Permalink
Merge pull request #10 from reuzurq/main
Browse files Browse the repository at this point in the history
Misstype fix
  • Loading branch information
A-Emile authored Jun 13, 2023
2 parents 28547c5 + a510650 commit a85c108
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion LimeIoT/settings.ino
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ class SettingsBLECallback : public BLECharacteristicCallbacks {
alarm_reps = int(data[3]);
break;
case 0x03:
customDisplayStatus = data[0] == 0x00 ? "" : String(data[1], HEX);
customDisplayStatus = data[1] == 0x00 ? "" : String(data[1], HEX); // misstyped 0
break;
case 0x4:
turnOffDisplayLed();
Expand Down

0 comments on commit a85c108

Please sign in to comment.