SCLD peripheral of the KL46Z - with sign "-" just for USB Academy

Dependents:   KL46Z-Lab2_lodz KL46Z-Lab2_fullll KL46Z-Lab2_szkolenie kL46Z-Lab3-lodz ... more

Fork of SLCD by Erik -

SLCD.h

Committer:
Sissors
Date:
2014-01-14
Revision:
0:d04758e76d5b
Child:
1:1579bcd31410

File content as of revision 0:d04758e76d5b:

#ifndef SLCD_H
#define SLCD_H

#include "mbed.h"

class SLCD : public Stream {
    public:
    SLCD();
    
    void init();
    void vfnEnablePins();
    
    void vfnLCD_Write_Char(char lbValue);
    
    
    uint8_t lcd_alternate_mode;
    
    virtual int _putc(int c);
    virtual int _getc() {
        return 0;
    }
    uint8_t bLCD_CharPosition;
    
};

#endif