sqefqsdf
Dependencies: C12832 EthernetInterface LM75B mbed-rtos mbed
Fork of app-board-LM75B by
LCD.h
- Committer:
- gimohd
- Date:
- 2017-03-23
- Revision:
- 6:77a4c45f6416
File content as of revision 6:77a4c45f6416:
#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