Skip to content

Commit

Permalink
Extend the dry time setting.
Browse files Browse the repository at this point in the history
closes #38
  • Loading branch information
Kevin Balthaser committed Dec 9, 2023
1 parent fc739c1 commit 78a7727
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions KiwiBoard.emf
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"version": "1.00",
"projectName": "KiwiBoard",
"author": "2p3ca",
"author": "kevin",
"items": [
{
"parentId": 0,
Expand Down Expand Up @@ -297,7 +297,7 @@
"type": "analogItem",
"defaultValue": "4",
"item": {
"maxValue": 10,
"maxValue": 25,
"offset": 1,
"divisor": 1,
"unitName": "min",
Expand Down
2 changes: 1 addition & 1 deletion platformio.ini
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ board = pico
framework = arduino
board_build.core = earlephilhower
lib_deps =
davetcc/tcMenu@^4.0.0
davetcc/[email protected]
davetcc/IoAbstraction@^4.0.0
davetcc/tcUnicodeHelper@^1.0.0
tommag/TMC5160@^1.1.0
Expand Down
4 changes: 2 additions & 2 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, 25, 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 Down

0 comments on commit 78a7727

Please sign in to comment.