Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Diff: main.cpp
- Revision:
- 0:7912f2086c2b
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/main.cpp Thu Sep 24 12:29:02 2015 +0000
@@ -0,0 +1,72 @@
+#include "mbed.h"
+
+#define kRED 4
+#define kYELLOW 2
+#define kGREEN 1
+
+#define fMargin 0.05f
+#define kGYThreshold 0.4f
+#define kGYThresholdL (kGYThreshold - fMargin)
+#define kGYThresholdU (kGYThreshold + fMargin)
+
+#define kYRThreshold 0.6f
+#define kYRThresholdL (kYRThreshold - fMargin)
+#define kYRThresholdU (kYRThreshold + fMargin)
+
+
+//Global objects
+BusOut binaryOutput(D5, D6, D7); //Outputs as an integer
+
+DigitalIn SW1(D3);
+DigitalIn SW2(D4);
+
+AnalogIn AIN(A0);
+float fVin = 0.0;
+unsigned state = kGREEN;
+
+//Main function
+int main() {
+
+ while(1) {
+
+ //Read ADC
+ fVin = AIN;
+
+ //Write to terminal
+ printf("Analog input = %6.4f\n", fVin);
+
+ //Next State Logic
+ switch (state) {
+
+ case kGREEN:
+ if (fVin > kGYThresholdU) {
+ state = kYELLOW;
+ }
+ break;
+
+ case kYELLOW:
+ if (fVin > kYRThresholdU) {
+ state = kRED;
+ } else if (fVin < kGYThresholdL) {
+ state = kGREEN;
+ }
+ break;
+
+ case kRED:
+ if (fVin < kYRThresholdL) {
+ state = kYELLOW;
+ }
+ break;
+
+ default:
+ state = kGREEN;
+ }
+
+ //Output logic = f(State)
+ binaryOutput = state;
+
+ //Wait
+ wait(0.1);
+
+ } //end while(1)
+} //end main
\ No newline at end of file