Skip to content

Commit

Permalink
Updated firmware to v24.241.0836
Browse files Browse the repository at this point in the history
  • Loading branch information
siliconwitch committed Aug 28, 2024
1 parent d531741 commit e29b9b3
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Binary file not shown.
4 changes: 2 additions & 2 deletions lib/models/app_logic_model.dart
Original file line number Diff line number Diff line change
Expand Up @@ -286,7 +286,7 @@ class AppLogicModel extends ChangeNotifier {
final response = await _connectedDevice!
.sendString("print(frame.FIRMWARE_VERSION)")
.timeout(const Duration(seconds: 1));
if (response == "v24.227.1307") {
if (response == "v24.241.0836") {
triggerEvent(Event.deviceUpToDate);
} else {
triggerEvent(Event.deviceNeedsUpdate);
Expand Down Expand Up @@ -443,7 +443,7 @@ class AppLogicModel extends ChangeNotifier {
case State.updateFirmware:
state.onEntry(() async {
_connectedDevice!
.updateFirmware("assets/frame-firmware-v24.227.1307.zip")
.updateFirmware("assets/frame-firmware-v24.241.0836.zip")
.listen(
(value) {
bluetoothUploadProgress = value;
Expand Down
2 changes: 1 addition & 1 deletion pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name: noa
description: "A new Flutter project."
publish_to: 'none'
version: 1.4.4
version: 1.4.5

environment:
sdk: '>=3.3.1 <4.0.0'
Expand Down

0 comments on commit e29b9b3

Please sign in to comment.