Search found 1 match

by taifurbau
Sat Apr 01, 2023 3:16 pm
Forum: ESP RainMaker
Topic: Fan speed control is not working in Alexa but works with Google Voice
Replies: 2
Views: 3024

Fan speed control is not working in Alexa but works with Google Voice

I am using ESP Rainmaker and added a device using the following code: Param speed("Speed", ESP_RMAKER_PARAM_SPEED, value(1), PROP_FLAG_READ | PROP_FLAG_WRITE); speed.addBounds(value(1), value(5), value(1)); speed.addUIType(ESP_RMAKER_UI_SLIDER); my_fan.addParam(speed); my_node.addDevice(my_fan); Whe...