C coded library to use 1Wire LCD

Dependencies:   mbed

Fork of 1WireLcd by Ahmet Unal

Committer:
ahmetunal
Date:
Mon Aug 13 22:47:50 2012 +0000
Revision:
1:842f42dcf39a
Parent:
0:fcd5b3044e79
C code

Who changed what in which revision?

UserRevisionLine numberNew contents of line
ahmetunal 0:fcd5b3044e79 1 #include "mbed.h"
ahmetunal 0:fcd5b3044e79 2 #include "1WireLcd.h"
ahmetunal 0:fcd5b3044e79 3
ahmetunal 0:fcd5b3044e79 4
ahmetunal 0:fcd5b3044e79 5 DigitalOut myled(LED1);
ahmetunal 0:fcd5b3044e79 6
ahmetunal 0:fcd5b3044e79 7 int main() {
ahmetunal 0:fcd5b3044e79 8
ahmetunal 0:fcd5b3044e79 9 lcd_init();
ahmetunal 0:fcd5b3044e79 10
ahmetunal 1:842f42dcf39a 11 lcd_printf("1-Wire Shift LCD");
ahmetunal 0:fcd5b3044e79 12 }