Demo to control 4 LEDs

Dependencies:   BSP_DISCO_F469NI mbed

Committer:
Faberge
Date:
Wed Oct 11 22:26:45 2017 +0000
Revision:
0:e06404fdff2f
Child:
1:a6d179a9ffbb
Demo to control 4 LEDs

Who changed what in which revision?

UserRevisionLine numberNew contents of line
Faberge 0:e06404fdff2f 1 /*
Faberge 0:e06404fdff2f 2 * Button.h
Faberge 0:e06404fdff2f 3 *
Faberge 0:e06404fdff2f 4 * Copyright 2017 Faberge@TsarTeam
Faberge 0:e06404fdff2f 5 *
Faberge 0:e06404fdff2f 6 * This program is free software; you can redistribute it and/or modify
Faberge 0:e06404fdff2f 7 * it under the terms of the GNU General Public License as published by
Faberge 0:e06404fdff2f 8 * the Free Software Foundation; either version 2 of the License, or
Faberge 0:e06404fdff2f 9 * (at your option) any later version.
Faberge 0:e06404fdff2f 10 *
Faberge 0:e06404fdff2f 11 * This program is distributed in the hope that it will be useful,
Faberge 0:e06404fdff2f 12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
Faberge 0:e06404fdff2f 13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
Faberge 0:e06404fdff2f 14 * GNU General Public License for more details.
Faberge 0:e06404fdff2f 15 *
Faberge 0:e06404fdff2f 16 */
Faberge 0:e06404fdff2f 17
Faberge 0:e06404fdff2f 18 #ifndef BUTTON_H
Faberge 0:e06404fdff2f 19 #define BUTTON_H
Faberge 0:e06404fdff2f 20
Faberge 0:e06404fdff2f 21 #include "Widget.h"
Faberge 0:e06404fdff2f 22
Faberge 0:e06404fdff2f 23 class Button : public Widget
Faberge 0:e06404fdff2f 24 {
Faberge 0:e06404fdff2f 25 public:
Faberge 0:e06404fdff2f 26 static const uint32_t FADEMASK = 0xFF666666;
Faberge 0:e06404fdff2f 27 static const uint16_t DIMX = 70;
Faberge 0:e06404fdff2f 28 static const uint16_t DIMY = 70;
Faberge 0:e06404fdff2f 29
Faberge 0:e06404fdff2f 30 Button(int x, int y, color_t clr, char *s = "") :
Faberge 0:e06404fdff2f 31 Widget(x, y, DIMX, DIMY, clr), str(s), funcOne(NULL), funcTwo(NULL),
Faberge 0:e06404fdff2f 32 state(false) {draw(backColor);}
Faberge 0:e06404fdff2f 33 Button(int x, int y, color_t clr, char *s, void (fOne) (), void (fTwo) ()) :
Faberge 0:e06404fdff2f 34 Widget(x, y, DIMX, DIMY, clr), str(s), funcOne(fOne), funcTwo(fTwo),
Faberge 0:e06404fdff2f 35 state(false) {draw(backColor);}
Faberge 0:e06404fdff2f 36
Faberge 0:e06404fdff2f 37 virtual ~Button();
Faberge 0:e06404fdff2f 38 virtual void draw(color_t clr);
Faberge 0:e06404fdff2f 39 virtual uint16_t update();
Faberge 0:e06404fdff2f 40
Faberge 0:e06404fdff2f 41 private:
Faberge 0:e06404fdff2f 42 char *str;
Faberge 0:e06404fdff2f 43
Faberge 0:e06404fdff2f 44 void (*funcOne) ();
Faberge 0:e06404fdff2f 45 void (*funcTwo) ();
Faberge 0:e06404fdff2f 46
Faberge 0:e06404fdff2f 47 bool state;
Faberge 0:e06404fdff2f 48 };
Faberge 0:e06404fdff2f 49
Faberge 0:e06404fdff2f 50 #endif