Update comments for clarification

This commit is contained in:
Phillip Kühne 2025-02-17 21:26:18 +01:00
parent 064ed959c7
commit 0d7fcf477c
Signed by: phillip
GPG Key ID: E4C1C4D2F90902AA
2 changed files with 18 additions and 18 deletions

View File

@ -11,7 +11,7 @@ Dezibot dezibot;
#define RXD_HEADER 16
#define TXD_HEADER 17
// Task for running through LED brightness levels
// Task for independently toggling the bottom IR LED
void powerChange(void *pvParameters) {
while (true) {
dezibot.infraredLight.bottom.turnOn();
@ -21,7 +21,7 @@ void powerChange(void *pvParameters) {
}
}
// Task for running through LED brightness levels
// Tast for independently toggling the front IR LED
void powerChange2(void *pvParameters) {
while (true) {
dezibot.infraredLight.front.turnOn();

View File

@ -11,7 +11,7 @@ Dezibot dezibot;
#define RXD_HEADER 16
#define TXD_HEADER 17
// Task for running through LED brightness levels
// Task for independently toggling the bottom IR LED
void powerChange(void *pvParameters) {
while (true) {
dezibot.infraredLight.bottom.turnOn();
@ -21,7 +21,7 @@ void powerChange(void *pvParameters) {
}
}
// Task for running through LED brightness levels
// Tast for independently toggling the front IR LED
void powerChange2(void *pvParameters) {
while (true) {
dezibot.infraredLight.front.turnOn();