summaryrefslogtreecommitdiff
path: root/led.h
blob: 4f5cc09c1672e56ea166a69228c55db8a637a93e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
#ifndef LED_H
#define LED_H

struct colour {
	unsigned char r, g, b;
};

void led_signal_sequence(int, struct colour *, int, int, int);

#endif