Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F107026237
led.h
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Subscribers
None
File Metadata
Details
File Info
Storage
Attached
Created
Thu, Apr 3, 17:50
Size
418 B
Mime Type
text/x-c
Expires
Sat, Apr 5, 17:50 (1 d, 5 h)
Engine
blob
Format
Raw Data
Handle
25311378
Attached To
R6617 Oncilla SBCP Master Firmware
led.h
View Options
#ifndef LED_H_
#define LED_H_
//we want to refresh led every 20ms (50 Hz)
#define LED_FRAME_TIME 3100
typedef
enum
{
GREEN1
=
0
,
YELLOW
,
GREEN2
,
RED
,
NB_LEDS
}
led_id
;
void
led_init
();
void
led_main
();
void
led_off
(
led_id
l
);
void
led_on
(
led_id
l
);
void
led_toggle
(
led_id
l
);
void
led_blink
(
led_id
l
);
void
led_blink_with_params
(
led_id
l
,
unsigned
int
nb_blink
);
#endif
//LED_H_
Event Timeline
Log In to Comment