Initial version.

Dependencies:   LCD_DISCO_F429ZI mbed TS_DISCO_F429ZI BSP_DISCO_F429ZI

Committer:
bridzysta
Date:
Mon May 25 12:36:53 2020 +0000
Revision:
1:6a6bc6bc51b0
Parent:
0:00760a80f72b
New version

Who changed what in which revision?

UserRevisionLine numberNew contents of line
bridzysta 0:00760a80f72b 1 #ifndef LEDLCD_H
bridzysta 0:00760a80f72b 2 #define LEDLCD_H
bridzysta 0:00760a80f72b 3
bridzysta 0:00760a80f72b 4 #include "LCD_DISCO_F429ZI.h"
bridzysta 0:00760a80f72b 5
bridzysta 0:00760a80f72b 6 class LedLcd{
bridzysta 0:00760a80f72b 7 public:
bridzysta 0:00760a80f72b 8 LedLcd(unsigned char ucColumnXPosition);
bridzysta 0:00760a80f72b 9 void On(unsigned char ucButtonLight);
bridzysta 0:00760a80f72b 10 private:
bridzysta 0:00760a80f72b 11 unsigned char ucColumnXIndex;
bridzysta 0:00760a80f72b 12 };
bridzysta 0:00760a80f72b 13
bridzysta 0:00760a80f72b 14 #endif