diff options
| author | github-classroom[bot] <66690702+github-classroom[bot]@users.noreply.github.com> | 2025-08-26 17:03:24 +0000 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-08-26 17:03:24 +0000 |
| commit | 0f2ea7deaf0cba2f0ca07f6611c5a9e87d531f5b (patch) | |
| tree | 66b32e47da7602942f1bf4b7d343367ac408cd5a /project_starter_files/Core/Inc/LED.h | |
| download | 340-repo-Sowgro-0f2ea7deaf0cba2f0ca07f6611c5a9e87d531f5b.tar.gz 340-repo-Sowgro-0f2ea7deaf0cba2f0ca07f6611c5a9e87d531f5b.tar.bz2 340-repo-Sowgro-0f2ea7deaf0cba2f0ca07f6611c5a9e87d531f5b.zip | |
Initial commit
Diffstat (limited to 'project_starter_files/Core/Inc/LED.h')
| -rw-r--r-- | project_starter_files/Core/Inc/LED.h | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/project_starter_files/Core/Inc/LED.h b/project_starter_files/Core/Inc/LED.h new file mode 100644 index 0000000..464b56b --- /dev/null +++ b/project_starter_files/Core/Inc/LED.h @@ -0,0 +1,12 @@ +#ifndef __NUCLEO476_LED_H +#define __NUCLEO476_LED_H + +#include "stm32l476xx.h" + +void LED_Init(void); + +void LED_Off(void); +void LED_On(void); +void LED_Toggle(void); + +#endif /* __NUCLEO476_LED_H */ |
