Search found 263 matches

by ESP_Piyush
Wed Jan 03, 2024 5:50 pm
Forum: ESP RainMaker
Topic: RainMaker Thermostat
Replies: 1
Views: 33144

Re: RainMaker Thermostat

Please check out these videos by some hobbyists to understand how to integrate temperature sensors in ESP RainMaker: Using RainMaker with Arduino IDE in ESP32 Temperature and Humidity Monitor Using ESP RainMaker After that, check my comment here to understand how to implement any standard device typ...
by ESP_Piyush
Thu Dec 28, 2023 2:43 pm
Forum: ESP RainMaker
Topic: how to use standard motion sensor device
Replies: 4
Views: 5882

Re: how to use standard motion sensor device

Please check my comment here for some pointers. Your motion sensor device creation logic seems fine, since it indeed sets the device type to esp.device.motion-sensor, but you can skip the power parameter if the motion sensor does not need any control. The motion detection state parameter, however, s...
by ESP_Piyush
Wed Dec 27, 2023 11:44 am
Forum: ESP RainMaker
Topic: TV Params not recognized by Alexa
Replies: 1
Views: 15700

Re: TV Params not recognized by Alexa

As mentioned in the Standar device type docs, Name, Power, Media State, Media Control App Selector, Input Selector, Volume are all mandatory parameter for TV. Can you try adding these?
by ESP_Piyush
Wed Dec 27, 2023 10:47 am
Forum: ESP RainMaker
Topic: how to use standard motion sensor device
Replies: 4
Views: 5882

Re: how to use standard motion sensor device

Are you using esp-idf of Arduino? Can you share your current snippet which creates the device so that we can suggest appropriate changes?
by ESP_Piyush
Wed Dec 06, 2023 9:21 am
Forum: ESP RainMaker
Topic: Can the data type of Parameters be "File"?
Replies: 4
Views: 21973

Re: Can the data type of Parameters be "File"?

Currently, the value types are documented only in the C API docs.
by ESP_Piyush
Mon Dec 04, 2023 11:25 am
Forum: ESP RainMaker
Topic: Can the data type of Parameters be "File"?
Replies: 4
Views: 21973

Re: Can the data type of Parameters be "File"?

No, we do not currently support file data type, but we are working on the support to be able to send any files to the nodes. I cannot give an exact timeline yet though.
by ESP_Piyush
Wed Nov 22, 2023 3:02 pm
Forum: ESP RainMaker
Topic: Admin Cli CA Generation
Replies: 2
Views: 17507

Re: Admin Cli CA Generation

Hi Josh, I tired this at my end and it works on macOS atleast. ./rainmaker_admin_cli.py certs cacert generate --outdir my_CA created a my_CA directory and the ca.key and ca.crt were generated at my_CA/2023-11-22/Mfg-000001/common/. I am checking with the team to see if this is some Linux specific is...
by ESP_Piyush
Mon Nov 13, 2023 10:50 am
Forum: ESP RainMaker
Topic: How to build esp-rainmaker examples in VSC (esp idf)
Replies: 5
Views: 18139

Re: How to build esp-rainmaker examples in VSC (esp idf)

In this file, just delete the 2 lines that begin with override_path.
by ESP_Piyush
Fri Nov 10, 2023 7:38 pm
Forum: ESP RainMaker
Topic: Retain Device Status while offline
Replies: 1
Views: 18976

Re: Retain Device Status while offline

Hi Mark, We have a command-response feature available already which is not yet mentioned in the docs but has been silently introduced in the led_light example along with usage instructions . Basically you can create a command (in your case, the device state) with a timeout . If the device is online,...
by ESP_Piyush
Fri Nov 10, 2023 7:24 pm
Forum: ESP RainMaker
Topic: How to build esp-rainmaker examples in VSC (esp idf)
Replies: 5
Views: 18139

Re: How to build esp-rainmaker examples in VSC (esp idf)

Seems this error is coming via the dependencies specified for component manager, so it will be worthwhile to pull rainmaker and its dependencies directly via component manager. For this, remove the ${RMAKER_PATH}/components/esp-insights/components and ${RMAKER_PATH}/components from CMakeLists.txt fi...