All checks were successful
Generate Documentation / build (push) Successful in 15s
14 lines
288 B
C
14 lines
288 B
C
#pragma once
|
|
|
|
/**
|
|
* @brief This function sets all the LEDs to a default(LOW) state
|
|
*
|
|
*/
|
|
void updateLeds(int volume);
|
|
|
|
/**
|
|
* @brief This function turns on the correct LED depending on the current max(staff) volume
|
|
*
|
|
* @param volume The current max(staff) volume
|
|
*/
|
|
void resetLeds(); |