Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Extend the dry time setting. #39

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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/tcMenu@4.0.0
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