Pico Led Controller 1.0.3
A project to control LEDs using Raspberry Pi Pico W
Loading...
Searching...
No Matches
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
13void onboard_led_blink(uint32_t on_time, uint32_t off_time);
14
21void led_blink(uint32_t on_time, uint32_t off_time);
22
23#endif