With a 595 shift register shifting one wire lcd.

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers 1wire_lcd.h Source File

1wire_lcd.h

00001 #ifndef MBED_1wire_lcd_H
00002 #define MBED_1wire_lcd_H
00003 
00004 #include "mbed.h"
00005 #include "LPC1768/LPC17xx.h"
00006   
00007 
00008 void one_wire(unsigned char data);
00009 void lcd_putc(unsigned char);
00010 void lcd_clear(void);
00011 void lcd_printf(const char * a);
00012 void lcd_position(unsigned char x, unsigned char y);
00013 void lcd_command(unsigned char a);
00014 void lcd_init(void);
00015 
00016 #endif