2020-03-25 09:00:55 +01:00
|
|
|
#include "wled.h"
|
2021-05-23 01:11:35 +02:00
|
|
|
#ifndef WLED_DISABLE_BLYNK
|
2020-03-25 09:00:55 +01:00
|
|
|
#include "src/dependencies/blynk/Blynk/BlynkHandlers.h"
|
2021-05-23 01:11:35 +02:00
|
|
|
#endif
|
2020-03-31 02:38:08 +02:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Remote light control with the free Blynk app
|
|
|
|
*/
|
2018-07-16 11:50:09 +02:00
|
|
|
|
|
|
|
uint16_t blHue = 0;
|
|
|
|
byte blSat = 255;
|
|
|
|
|
2020-12-22 00:44:16 +01:00
|
|
|
void initBlynk(const char *auth, const char *host, uint16_t port)
|
2018-07-16 11:50:09 +02:00
|
|
|
{
|
2018-11-01 15:36:13 +01:00
|
|
|
#ifndef WLED_DISABLE_BLYNK
|
2019-10-18 13:26:39 +02:00
|
|
|
if (!WLED_CONNECTED) return;
|
2018-07-16 11:50:09 +02:00
|
|
|
blynkEnabled = (auth[0] != 0);
|
2020-12-22 00:44:16 +01:00
|
|
|
if (blynkEnabled) Blynk.config(auth, host, port);
|
2018-11-01 15:36:13 +01:00
|
|
|
#endif
|
2018-07-16 11:50:09 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void handleBlynk()
|
|
|
|
{
|
2018-11-01 15:36:13 +01:00
|
|
|
#ifndef WLED_DISABLE_BLYNK
|
2019-10-18 13:26:39 +02:00
|
|
|
if (WLED_CONNECTED && blynkEnabled)
|
2018-07-16 11:50:09 +02:00
|
|
|
Blynk.run();
|
2018-11-01 15:36:13 +01:00
|
|
|
#endif
|
2018-07-16 11:50:09 +02:00
|
|
|
}
|
|
|
|
|
2018-07-29 14:03:02 +02:00
|
|
|
void updateBlynk()
|
|
|
|
{
|
2018-11-01 15:36:13 +01:00
|
|
|
#ifndef WLED_DISABLE_BLYNK
|
2019-10-18 14:06:07 +02:00
|
|
|
if (!WLED_CONNECTED) return;
|
2018-10-08 17:36:22 +02:00
|
|
|
Blynk.virtualWrite(V0, bri);
|
2018-07-29 14:03:02 +02:00
|
|
|
//we need a RGB -> HSB convert here
|
2018-10-08 17:36:22 +02:00
|
|
|
Blynk.virtualWrite(V3, bri? 1:0);
|
|
|
|
Blynk.virtualWrite(V4, effectCurrent);
|
|
|
|
Blynk.virtualWrite(V5, effectSpeed);
|
|
|
|
Blynk.virtualWrite(V6, effectIntensity);
|
|
|
|
Blynk.virtualWrite(V7, nightlightActive);
|
|
|
|
Blynk.virtualWrite(V8, notifyDirect);
|
2018-11-01 15:36:13 +01:00
|
|
|
#endif
|
2018-07-29 14:03:02 +02:00
|
|
|
}
|
|
|
|
|
2018-11-01 15:36:13 +01:00
|
|
|
#ifndef WLED_DISABLE_BLYNK
|
2018-07-16 11:50:09 +02:00
|
|
|
BLYNK_WRITE(V0)
|
|
|
|
{
|
2018-11-09 17:00:36 +01:00
|
|
|
bri = param.asInt();//bri
|
2020-02-22 16:17:32 +01:00
|
|
|
colorUpdated(NOTIFIER_CALL_MODE_BLYNK);
|
2018-07-16 11:50:09 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
BLYNK_WRITE(V1)
|
|
|
|
{
|
2018-11-09 17:00:36 +01:00
|
|
|
blHue = param.asInt();//hue
|
|
|
|
colorHStoRGB(blHue*10,blSat,(false)? colSec:col);
|
2020-02-22 16:17:32 +01:00
|
|
|
colorUpdated(NOTIFIER_CALL_MODE_BLYNK);
|
2018-07-16 11:50:09 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
BLYNK_WRITE(V2)
|
|
|
|
{
|
2018-11-09 17:00:36 +01:00
|
|
|
blSat = param.asInt();//sat
|
|
|
|
colorHStoRGB(blHue*10,blSat,(false)? colSec:col);
|
2020-02-22 16:17:32 +01:00
|
|
|
colorUpdated(NOTIFIER_CALL_MODE_BLYNK);
|
2018-07-16 11:50:09 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
BLYNK_WRITE(V3)
|
|
|
|
{
|
2019-03-09 21:41:23 +01:00
|
|
|
bool on = (param.asInt()>0);
|
2020-02-22 16:17:32 +01:00
|
|
|
if (!on != !bri) {toggleOnOff(); colorUpdated(NOTIFIER_CALL_MODE_BLYNK);}
|
2018-07-16 11:50:09 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
BLYNK_WRITE(V4)
|
|
|
|
{
|
2018-11-09 17:00:36 +01:00
|
|
|
effectCurrent = param.asInt()-1;//fx
|
2020-02-22 16:17:32 +01:00
|
|
|
colorUpdated(NOTIFIER_CALL_MODE_BLYNK);
|
2018-07-16 11:50:09 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
BLYNK_WRITE(V5)
|
|
|
|
{
|
2018-11-09 17:00:36 +01:00
|
|
|
effectSpeed = param.asInt();//sx
|
2020-02-22 16:17:32 +01:00
|
|
|
colorUpdated(NOTIFIER_CALL_MODE_BLYNK);
|
2018-07-16 11:50:09 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
BLYNK_WRITE(V6)
|
|
|
|
{
|
2018-11-09 17:00:36 +01:00
|
|
|
effectIntensity = param.asInt();//ix
|
2020-02-22 16:17:32 +01:00
|
|
|
colorUpdated(NOTIFIER_CALL_MODE_BLYNK);
|
2018-07-16 11:50:09 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
BLYNK_WRITE(V7)
|
|
|
|
{
|
2019-03-09 21:41:23 +01:00
|
|
|
nightlightActive = (param.asInt()>0);
|
2018-07-16 11:50:09 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
BLYNK_WRITE(V8)
|
|
|
|
{
|
|
|
|
notifyDirect = (param.asInt()>0); //send notifications
|
|
|
|
}
|
2018-11-01 15:36:13 +01:00
|
|
|
#endif
|