WLED/wled00/usermod_v2_empty.h

18 lines
313 B
C
Raw Normal View History

2020-05-28 02:20:02 +02:00
#pragma once
#include "wled.h"
//This is an empty v2 usermod template. Please see the file usermod_v2_example.h in the EXAMPLE_v2 usermod folder for documentation on the functions you can use!
class UsermodRenameMe : public Usermod {
private:
2023-01-06 09:24:29 +01:00
2020-05-28 02:20:02 +02:00
public:
void setup() {
2023-01-06 09:24:29 +01:00
2020-05-28 02:20:02 +02:00
}
void loop() {
2023-01-06 09:24:29 +01:00
2020-05-28 02:20:02 +02:00
}
};