Robert Musulin / LCDSEMINAR
Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers LCDSEMINAR.h Source File

LCDSEMINAR.h

00001 #ifndef LCDSEMINARH
00002 #define LCDSEMINARH
00003 
00004 #include "mbed.h"
00005 #include <string>
00006 
00007 class LCD
00008 {
00009 public:
00010     LCD(PinName SDA, PinName SCL );
00011     
00012     void inicijalizacija();
00013     void naredba (int byte);
00014     void print (char podatak);
00015     void ispis (string podatak);
00016     void ocisti();
00017     void pokazivac (int stupac, int red);
00018 
00019 
00020 private:
00021     
00022     I2C i2c;
00023 
00024 };
00025 
00026 #endif