-
Notifications
You must be signed in to change notification settings - Fork 86
Expand file tree
/
Copy pathArduinoController.ino
More file actions
109 lines (92 loc) · 3.32 KB
/
ArduinoController.ino
File metadata and controls
109 lines (92 loc) · 3.32 KB
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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
// *** ArduinoController ***
// This example expands the previous Receive example. The Arduino will now send back a status.
// It adds a demonstration of how to:
// - Handle received commands that do not have a function attached
// - Send a command with a parameter to the PC
// - Shows how to invoke on the UI thread
#include <CmdMessenger.h> // CmdMessenger
// Blinking led variables
const int kBlinkLed = 13; // Pin of internal Led
bool ledState = 1; // Current state of Led
float ledFrequency = 1.0; // Current blink frequency of Led
unsigned long intervalOn;
unsigned long intervalOff;
unsigned long prevBlinkTime = 0;
// Attach a new CmdMessenger object to the default Serial port
CmdMessenger cmdMessenger = CmdMessenger(Serial);
// This is the list of recognized commands. These can be commands that can either be sent or received.
// In order to receive, attach a callback function to these events
enum
{
kAcknowledge,
kError,
kSetLed, // Command to request led to be set in specific state
kSetLedFrequency,
};
// Callbacks define on which received commands we take action
void attachCommandCallbacks()
{
// Attach callback methods
cmdMessenger.attach(OnUnknownCommand);
cmdMessenger.attach(kSetLed, OnSetLed);
cmdMessenger.attach(kSetLedFrequency, OnSetLedFrequency);
}
// Called when a received command has no attached function
void OnUnknownCommand()
{
cmdMessenger.sendCmd(kError,"Command without attached callback");
}
// Callback function that sets led on or off
void OnSetLed()
{
// Read led state argument, interpret string as boolean
ledState = cmdMessenger.readBoolArg();
cmdMessenger.sendCmd(kAcknowledge,ledState);
}
// Callback function that sets leds blinking frequency
void OnSetLedFrequency()
{
// Read led state argument, interpret string as boolean
ledFrequency = cmdMessenger.readFloatArg();
// Make sure the frequency is not zero (to prevent divide by zero)
if (ledFrequency < 0.001) { ledFrequency = 0.001; }
// translate frequency in on and off times in miliseconds
intervalOn = (500.0/ledFrequency);
intervalOff = (1000.0/ledFrequency);
cmdMessenger.sendCmd(kAcknowledge,ledFrequency);
}
// Setup function
void setup()
{
// Listen on serial connection for messages from the PC
Serial.begin(115200);
// Adds newline to every command
//cmdMessenger.printLfCr();
// Attach my application's user-defined callback methods
attachCommandCallbacks();
// Send the status to the PC that says the Arduino has booted
// Note that this is a good debug function: it will let you also know
// if your program had a bug and the arduino restarted
cmdMessenger.sendCmd(kAcknowledge,"Arduino has started!");
// set pin for blink LED
pinMode(kBlinkLed, OUTPUT);
}
// Loop function
void loop()
{
// Process incoming serial data, and perform callbacks
cmdMessenger.feedinSerialData();
delay(10);
blinkLed();
}
// Returns if it has been more than interval (in ms) ago. Used for periodic actions
void blinkLed() {
if ( millis() - prevBlinkTime > intervalOff ) {
// Turn led off during halfway interval
prevBlinkTime = millis();
digitalWrite(kBlinkLed, LOW);
} else if ( millis() - prevBlinkTime > intervalOn ) {
// Turn led on at end of interval (if led state is on)
digitalWrite(kBlinkLed, ledState?HIGH:LOW);
}
}