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.
Revision 0:471ded06b4cc, committed 2015-04-25
- Comitter:
- marcel1691
- Date:
- Sat Apr 25 16:15:58 2015 +0000
- Commit message:
- Ausgabe auf 4 Digit LED auf SMD Shield
Changed in this revision
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/SAA1064.lib Sat Apr 25 16:15:58 2015 +0000 @@ -0,0 +1,1 @@ +http://developer.mbed.org/teams/smdiotkitch/code/SAA1064/#e6f764285b44
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/main.cpp Sat Apr 25 16:15:58 2015 +0000
@@ -0,0 +1,24 @@
+/** Ausgabe auf 4 Digit LED auf SMD Shield
+*/
+#include "mbed.h"
+#include "SAA1064.h"
+
+// 4 Digit
+SAA1064 display;
+
+int main()
+{
+ for ( int i = 0; i < 10; i++ )
+ {
+ printf( "%d\n", i );
+ display.write( i, i+1, i+2, i+3 );
+ wait( 0.2 );
+ }
+
+ for ( int i = 0; i < 10000; i++ )
+ {
+ printf( "%d\n", i );
+ display.writeInt( i );
+ wait( 0.1 );
+ }
+}
\ No newline at end of file
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/mbed.bld Sat Apr 25 16:15:58 2015 +0000 @@ -0,0 +1,1 @@ +http://mbed.org/users/mbed_official/code/mbed/builds/487b796308b0 \ No newline at end of file