Demo to control 4 LEDs

Dependencies:   BSP_DISCO_F469NI mbed

Committer:
Faberge
Date:
Tue Oct 31 14:46:28 2017 +0000
Revision:
2:e6fc24fbd86c
Parent:
1:a6d179a9ffbb
Update

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 1:a6d179a9ffbb 26 /* Fade Widget's color when pressed */
Faberge 0:e06404fdff2f 27 static const uint32_t FADEMASK = 0xFF666666;
Faberge 0:e06404fdff2f 28 static const uint16_t DIMX = 70;
Faberge 0:e06404fdff2f 29 static const uint16_t DIMY = 70;
Faberge 0:e06404fdff2f 30
Faberge 1:a6d179a9ffbb 31 /* Initial state of Button is "OFF" */
Faberge 1:a6d179a9ffbb 32 Button(const uint16_t x, const uint16_t y, const color_t clr, char *s) :
Faberge 0:e06404fdff2f 33 Widget(x, y, DIMX, DIMY, clr), str(s), funcOne(NULL), funcTwo(NULL),
Faberge 1:a6d179a9ffbb 34 fBool(NULL), state(false) {draw(backColor);}
Faberge 1:a6d179a9ffbb 35 Button(const uint16_t x, const uint16_t y, const color_t clr, char *s,
Faberge 1:a6d179a9ffbb 36 void (*fOne) (), void (*fTwo) ()) :
Faberge 0:e06404fdff2f 37 Widget(x, y, DIMX, DIMY, clr), str(s), funcOne(fOne), funcTwo(fTwo),
Faberge 1:a6d179a9ffbb 38 fBool(NULL), state(false) {draw(backColor);}
Faberge 1:a6d179a9ffbb 39 Button(const uint16_t x, const uint16_t y, const color_t clr, char *s,
Faberge 1:a6d179a9ffbb 40 void (*func) (bool)):
Faberge 1:a6d179a9ffbb 41 Widget(x, y, DIMX, DIMY, clr), str(s), funcOne(NULL), funcTwo(NULL),
Faberge 1:a6d179a9ffbb 42 fBool(func), state(false) {draw(backColor);}
Faberge 0:e06404fdff2f 43
Faberge 0:e06404fdff2f 44 virtual ~Button();
Faberge 0:e06404fdff2f 45 virtual void draw(color_t clr);
Faberge 0:e06404fdff2f 46 virtual uint16_t update();
Faberge 0:e06404fdff2f 47
Faberge 0:e06404fdff2f 48 private:
Faberge 0:e06404fdff2f 49 char *str;
Faberge 0:e06404fdff2f 50
Faberge 0:e06404fdff2f 51 void (*funcOne) ();
Faberge 0:e06404fdff2f 52 void (*funcTwo) ();
Faberge 1:a6d179a9ffbb 53 void (*fBool) (bool);
Faberge 0:e06404fdff2f 54
Faberge 0:e06404fdff2f 55 bool state;
Faberge 0:e06404fdff2f 56 };
Faberge 0:e06404fdff2f 57
Faberge 0:e06404fdff2f 58 #endif