Skip to content

Commit

Permalink
Extend Wash and Dry cycle
Browse files Browse the repository at this point in the history
closes #38
  • Loading branch information
Kevin Balthaser committed Dec 27, 2023
1 parent fc739c1 commit 4b5e7a4
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/KiwiBoardFirmware_main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
#include "MenuChangeObserver.h"

// Version Number
const char VERSION_NUM[] PROGMEM = "1.2.1";
const char VERSION_NUM[] PROGMEM = "1.2.2";


PicoPlatform *platform;
Expand Down
6 changes: 3 additions & 3 deletions src/KiwiBoardFirmware_menu.cpp
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/*
/*
The code in this file uses open source libraries provided by thecoderscorner
DO NOT EDIT THIS FILE, IT WILL BE GENERATED EVERY TIME YOU USE THE UI DESIGNER
Expand Down Expand Up @@ -55,7 +55,7 @@ const BooleanMenuInfo minfofanCooldown = { "Cooldown", 18, 20, 1, settings_chang
BooleanMenuItem menufanCooldown(&minfofanCooldown, true, &menucooldownTime, INFO_LOCATION_PGM);
const AnalogMenuInfo minfodry_speed = { "Speed", 17, 18, 100, settings_changed, 50, 1, "rpm" };
AnalogMenuItem menudry_speed(&minfodry_speed, 20, &menufanCooldown, INFO_LOCATION_PGM);
const AnalogMenuInfo minfodry_duration = { "Time", 16, 16, 10, settings_changed, 1, 1, "min" };
const AnalogMenuInfo minfodry_duration = { "Time", 16, 16, 29, settings_changed, 1, 1, "min" };
AnalogMenuItem menudry_duration(&minfodry_duration, 4, &menudry_speed, INFO_LOCATION_PGM);
const SubMenuInfo minfoDrySettings = { "Dry", 15, 0xffff, 0, NO_CALLBACK };
BackMenuItem menuBackDrySettings(&minfoDrySettings, &menudry_duration, INFO_LOCATION_PGM);
Expand All @@ -75,7 +75,7 @@ const AnalogMenuInfo minfowash_speed = { "Speed", 11, 10, 350, settings_changed,
AnalogMenuItem menuwash_speed(&minfowash_speed, 175, &menuwashAMAX, INFO_LOCATION_PGM);
const AnalogMenuInfo minfoRotations = { "Rotations", 39, 86, 10, settings_changed, 1, 1, "" };
AnalogMenuItem menuRotations(&minfoRotations, 6, &menuwash_speed, INFO_LOCATION_PGM);
const AnalogMenuInfo minfowash_duration = { "Time", 9, 4, 9, settings_changed, 1, 1, "min" };
const AnalogMenuInfo minfowash_duration = { "Time", 9, 4, 29, settings_changed, 1, 1, "min" };
AnalogMenuItem menuwash_duration(&minfowash_duration, 4, &menuRotations, INFO_LOCATION_PGM);
const SubMenuInfo minfowashSettings = { "Wash", 8, 0xffff, 0, NO_CALLBACK };
BackMenuItem menuBackwashSettings(&minfowashSettings, &menuwash_duration, INFO_LOCATION_PGM);
Expand Down

0 comments on commit 4b5e7a4

Please sign in to comment.