sqefqsdf

Dependencies:   C12832 EthernetInterface LM75B mbed-rtos mbed

Fork of app-board-LM75B by Chris Styles

LCD.h

Committer:
gimohd
Date:
2017-05-09
Revision:
7:0618a1e407d0
Parent:
6:77a4c45f6416

File content as of revision 7:0618a1e407d0:

#ifndef LCD_H
#define LCD_H

#include "mbed.h"
#include "C12832.h"

//Class to control an RGB LED using three PWM pins
class LCD: public C12832
{
public:

    /** 
      *     Create a C12832 object connected to SPI1
      */
    LCD(PinName mosi, PinName sck, PinName reset, PinName a0, PinName ncs);
};

#endif