Hello everyone i am using robotdyn one channel dimmer controlling by blynk app but I am also want to control this dimmer using google home or Alexa can someone help me how to create an applet in ifftt.
i am facing a problem to create a webhook request i already read some articles but the problem is we cant fill special numbers or symbols in phrases…
What EXACTLY is it that you are trying to achieve?
Are you wanting to use Alexa, Google Home or both?
What voice commands do you wish to issue, and what outcome do you want to achieve with these commands?
I’d suggest that instead of giving one-line vague answers, you take more time to explain in detail.
Three free applets won’t be sufficient for Alexa and Google Home, unless you manage to capture the percentage as a parameter and pass it to the Blynk API call. I’m not sure if that’s possible, but that’s an IFTTT question rather than a Blynk one.
There are lots of examples on the forum.
I realise that you’ve commented on one of those, about your inability to insert a percentage symbol into the “What do you want to say” field in IFTTT, but there are some good tutorials and discussions if you do some searching and reading.
I don’t find my answers, yes you right sir I did comments but I didn’t get any answers of my question if you can please help me how to fill webhook and how to put % symbols in ifttt field. Or any other option instead.
Hello Everyone can somebody help me to create the URL OF blynk api for IFTTT Google assistance applet.
#include <ESP8266WiFi.h> // Header file for Wifi Module
#include <BlynkSimpleEsp8266.h> // header file for blynk
#include <RBDdimmer.h> // header file for robodyn dimmer
char auth[] = ""; // blynk auth key
char ssid[] = "Yogendra"; // Wifi Name
char pass[] = "Jamsariya"; // Wifi Password
#define outputPin D2 // PWM pin for dimmer
#define zerocross D5 // for boards with CHANGEBLE input pins
dimmerLamp dimmer(outputPin, zerocross); //initialase port for dimmer for ESP8266, ESP32, Arduino due boards
int outVal = 0; // Intialisation value for dimmer
int dim_val; // dimmer value to dim the appliance
void setup()
{
Serial.begin(9600); // begin serial communication
dimmer.begin(NORMAL_MODE, ON); //dimmer initialisation: name.begin(MODE, STATE)
Blynk.begin(auth, ssid, pass); // begin blynk server
}
void loop()
{
Blynk.run(); // Run blynk server
}
BLYNK_WRITE(V0) { // Set to your virtual pin
outVal = param.asInt(); // Get State of Virtual Button
dim_val = map(outVal, 0, 1023, 0, 100); // mapped the value for dimmer
dimmer.setPower(dim_val); // Set dimmer power
Blynk.virtualWrite(V1, dim_val); //sending to Blynk
}