Add existing code: Power consumption test cases and Semaphore power scheduler skeleton

This commit is contained in:
2024-11-24 23:09:46 +01:00
parent fb35d065af
commit 8eeb829a91
15 changed files with 597 additions and 0 deletions

View File

@ -0,0 +1,22 @@
#include "Dezibot.h"
Dezibot dezibot;
void setup() {
dezibot.motion.begin();
}
void loop() {
// Alternatingly turn on the Motors. Use the commands provided by motion for this, using the provided
// functions (with their duty cycle), as it represents typical usage
dezibot.motion.rotateClockwise();
delay(20000);
dezibot.motion.rotateAntiClockwise();
delay(20000);
// Turn on both motors at the same time
dezibot.motion.left.setSpeed(DEFAULT_BASE_VALUE);
dezibot.motion.right.setSpeed(DEFAULT_BASE_VALUE);
delay(20000);
dezibot.motion.stop();
delay(20000);
}