Pico Led Controller 1.0.3
A project to control LEDs using Raspberry Pi Pico W
blink.h
Go to the documentation of this file.
1 #ifndef _BLINK_H
2 #define _BLINK_H
3 
4 #include <stdint.h>
5 #include "light_state.h"
6 
13 void onboard_led_blink(uint32_t on_time, uint32_t off_time);
14 
21 void led_blink(uint32_t on_time, uint32_t off_time);
22 
23 #endif