2019-01-14 09:49:00 +01:00
|
|
|
#include "the50.h"
|
|
|
|
|
2024-05-02 11:48:49 +02:00
|
|
|
#define THE50_LED_PIN B7
|
|
|
|
|
2023-01-20 17:21:17 +01:00
|
|
|
void the50_led_on(void) {
|
2024-05-02 11:48:49 +02:00
|
|
|
gpio_set_pin_output(THE50_LED_PIN);
|
|
|
|
gpio_write_pin_low(THE50_LED_PIN);
|
2019-01-14 09:49:00 +01:00
|
|
|
}
|
|
|
|
|
2023-01-20 17:21:17 +01:00
|
|
|
void the50_led_off(void) {
|
2024-05-02 11:48:49 +02:00
|
|
|
gpio_set_pin_input(THE50_LED_PIN);
|
2019-01-14 09:49:00 +01:00
|
|
|
}
|