A simple program that shows you how to use the SevenSegmentDisplay library to display individual digits

Dependencies:   SevenSegmentDisplay mbed

Fork of Renbed_Seven_Segment by Miskin Project

Revision:
0:72cebff52cec
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/main.cpp	Wed Apr 20 12:36:46 2016 +0000
@@ -0,0 +1,17 @@
+/*********************************************************
+*Renbed_Seven_Segment                                    *
+*Author: Dan Argust                                      *
+*                                                        *  
+*A program that controls the seven segment displays      *
+*********************************************************/
+
+#include "mbed.h"
+#include "SevenSegmentDisplay.h"
+
+SevenSegmentDisplay seg(0); //creating the driver object
+
+int main(){
+    seg.DisplayDigits(3,4); //display the digits 3 and 4
+    wait(1);                //wait 1 second
+    seg.DisplayDigits(6,2); //display the digits 6 and 2
+}
\ No newline at end of file