Nathan Yonkee / Mbed OS Seeed_Grove_4_Digit_Display_Clock

Dependencies:   Data_Clock_Pair Seeed_Chainable_LED Seeed_Four_Digit_Disp Seeed_IR_Temp_Sensor Seeed_Led_Bar

Fork of Seeed_Grove_4_Digit_Display_Clock by Seeed

Revision:
16:cebc9f55d2a6
diff -r abda719ba6e6 -r cebc9f55d2a6 DataClockPair.h
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/DataClockPair.h	Thu May 18 10:48:12 2017 -0600
@@ -0,0 +1,10 @@
+#ifndef DATA_CLOCK_PAIR_H
+#define DATA_CLOCK_PAIR_H
+#include "mbed.h"
+struct DataClockPair{
+    typedef PinName ClockPin;
+    typedef PinName DataPin;
+    ClockPin clockPin;
+    DataPin dataPin;
+};
+#endif