Move bluetooth management in to own classes

This commit is contained in:
Robert Marshall 2021-07-30 09:31:42 +01:00
parent 0432071759
commit e1a279ee75
5 changed files with 73 additions and 39 deletions

View file

@ -1,3 +1,6 @@
#ifndef LEDOutput_cpp
#define LEDOutput_cpp
#include <Arduino.h>
#define LED_OUTPUT_FREQUENCY 490
@ -25,3 +28,5 @@ public:
ledcWrite(_channel, value);
}
};
#endif