2020-03-28 13:30:51 +01:00
|
|
|
#ifndef WLED_BLYNK_H
|
|
|
|
#define WLED_BLYNK_H
|
|
|
|
#include <Arduino.h>
|
|
|
|
/*
|
|
|
|
* Remote light control with the free Blynk app
|
|
|
|
*/
|
|
|
|
|
|
|
|
void initBlynk(const char* auth);
|
|
|
|
void handleBlynk();
|
|
|
|
void updateBlynk();
|
2020-03-30 12:56:51 +02:00
|
|
|
// TODO: Make sure that the macro expansions are handled correctly.
|
2020-03-28 13:30:51 +01:00
|
|
|
|
2020-03-25 09:00:55 +01:00
|
|
|
#endif //WLED_BLYNK_H
|