Rky
1
Hi,
I changed Spark.variable(“xxx”,&xxx,INT) with Particle.variable(xxx) and then no more variables or functions are listed in IFTTT
I tried disconnect/reconnect the channel without any result, and I also tried to rewrite my code with Spark.variable without any success!
Thanks for help and Happy new year
Eric
You’ll need to post your code if you are going to want meaningful assistance.
Rky
3
double val=100.0, temp=0.0, gaz=0.0,dht_h=0.0;
int lifx_cde = 0x00;
setup()
Spark.variable("Luminosite",&val,DOUBLE);
Spark.variable("Temperature",&temp,DOUBLE);
Spark.variable("Humidite",&dht_h,DOUBLE);
Spark.variable("LIFX",&lifx_cde,INT);
I declare in the setup() function these 4 variables.
Is there enought ?
Rky
4
I made a mistake writing value in the variable every cycle of the loop …
loop()
lifx_cde = 0x00 // <-- THE MISTAKE!
… code …
1 Like