Skip to content
Snippets Groups Projects
Select Git revision
  • 54ff6f772744517a56528528ca35f9cb7d7af043
  • main default protected
  • v0.2.0
  • v0.1.4
  • v0.1.3
  • v0.1.2
  • v0.1.1
  • v0.1.0
8 results

CourseProviderInterface.php

Blame
  • led_handler.hpp 291 B
    #pragma once
    
    #include <handler.hpp>
    
    class LedHandler : public Handler {
    public:
      LedHandler(ATPBodyKiwiSystem &system) : Handler(system), counter_{0} {}
    
      void init() override;
      void run() override;
    
      static constexpr auto LED_BLINK_PERIOD_MS = 1000;
    
    private:
      uint32_t counter_;
    };