We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 60b3537 commit 106565aCopy full SHA for 106565a
config/os_version
@@ -1 +1 @@
1
-1.4.100
+1.4.101
libs/RobotKit/include/RobotController.h
@@ -83,7 +83,7 @@ class RobotController : public interface::RobotController
83
84
_behaviorkit.launching();
85
_lcd.turnOn();
86
- rtos::ThisThread::sleep_for(3s);
+ rtos::ThisThread::sleep_for(10s);
87
}
88
89
void startSleepTimeout() final
@@ -171,8 +171,10 @@ class RobotController : public interface::RobotController
171
_behaviorkit.chargingMedium();
172
} else if (level < 90) {
173
_behaviorkit.chargingHigh();
174
- } else {
+ } else if (level == 101) {
175
_behaviorkit.chargingFull();
176
+ } else {
177
+ _behaviorkit.chargingHigh();
178
179
180
0 commit comments