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 * Switch.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 SWITCH_H
Faberge 0:e06404fdff2f 19 #define SWITCH_H
Faberge 0:e06404fdff2f 20
Faberge 0:e06404fdff2f 21 #include "Widget.h"
Faberge 0:e06404fdff2f 22 #include "Button.h"
Faberge 0:e06404fdff2f 23
Faberge 0:e06404fdff2f 24 class Switch : public Widget
Faberge 0:e06404fdff2f 25 {
Faberge 0:e06404fdff2f 26 public:
Faberge 0:e06404fdff2f 27 static const uint32_t FADEMASK = 0xFF666666;
Faberge 0:e06404fdff2f 28 static const uint16_t DIMX = (Button::DIMX) * 2 + 4;
Faberge 0:e06404fdff2f 29 static const uint16_t DIMY = Button::DIMY;
Faberge 0:e06404fdff2f 30
Faberge 0:e06404fdff2f 31 Switch(uint16_t x, uint16_t y, color_t clr, void (fOne) (), void (fTwo) ()) :
Faberge 0:e06404fdff2f 32 Widget(x, y, DIMX, DIMY, clr), b1(x, y, clr & FADEMASK, "ON"),
Faberge 0:e06404fdff2f 33 b2(x + Button::DIMX + 4, y, clr, "OFF"), funcOne(fOne), funcTwo(fTwo),
Faberge 0:e06404fdff2f 34 state(false) {}
Faberge 0:e06404fdff2f 35
Faberge 0:e06404fdff2f 36 virtual ~Switch() {funcTwo();}
Faberge 0:e06404fdff2f 37 virtual void draw(color_t clr);
Faberge 0:e06404fdff2f 38 virtual uint16_t update();
Faberge 0:e06404fdff2f 39
Faberge 0:e06404fdff2f 40 private:
Faberge 0:e06404fdff2f 41 Button b1;
Faberge 0:e06404fdff2f 42 Button b2;
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