Blame view

build3/apps/led_timer.h 184 Bytes
6663b6c9   adorian   projet complet av...
1
2
3
4
5
6
7
8
9
10
11
12
13
14
  #ifndef APPS_LED_TIMER_H
  #define APPS_LED_TIMER_H
  
  #include <escher.h>
  
  class LedTimer : public Timer {
  public:
    LedTimer();
  private:
    bool fire() override;
    bool m_on;
  };
  
  #endif