-
Notifications
You must be signed in to change notification settings - Fork 19
/
test_speaker.c
56 lines (47 loc) · 1.19 KB
/
test_speaker.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
#include <kilolib.h>
message_t message;
// Flag to keep track of message transmission.
int message_sent = 0;
void setup()
{
// Initialize message:
// The type is always NORMAL.
message.type = NORMAL;
// Some dummy data as an example.
message.data[0] = 0;
// It's important that the CRC is computed after the data has been set;
// otherwise it would be wrong and the message would be dropped by the
// receiver.
message.crc = message_crc(&message);
}
void loop()
{
// Blink the LED magenta whenever a message is sent.
if (message_sent == 1)
{
// Reset the flag so the LED is only blinked once per message.
message_sent = 0;
set_color(RGB(1, 0, 1));
delay(100);
set_color(RGB(0, 0, 0));
}
}
message_t *message_tx()
{
return &message;
}
void message_tx_success()
{
// Set the flag on message transmission.
message_sent = 1;
}
int main()
{
kilo_init();
// Register the message_tx callback function.
kilo_message_tx = message_tx;
// Register the message_tx_success callback function.
kilo_message_tx_success = message_tx_success;
kilo_start(setup, loop);
return 0;
}