Toyomasa Watarai / Mbed 2 deprecated QDSP-6064-hello

Dependencies:   BubbleDisplay mbed

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers main.cpp Source File

main.cpp

00001 #include "mbed.h"
00002 #include "bubble.h"
00003 
00004 #if defined(TARGET_SSCI824)
00005 BubbleDisplay bd(dp6, dp7, dp8, dp9, dp10, dp11, dp12, dp15, dp16, dp17, dp18, dp19);
00006 #endif
00007 
00008 int main() {
00009     uint16_t count = 0;
00010     bd.setFreq(200); // 5 ms
00011 
00012     while(1) {
00013         bd.write(count++);
00014         wait(0.1);
00015     }
00016 }