Search found 287 matches

by ESP_Piyush
Thu Sep 12, 2024 7:34 pm
Forum: ESP RainMaker
Topic: IOS Rainmaker App V3.2.1 On Wifi Provisioning SOFTAP
Replies: 5
Views: 1533

Re: IOS Rainmaker App V3.2.1 On Wifi Provisioning SOFTAP

Which esp-idf version and esp-rainmaker commit are you currently on? Are you trying this with some default RainMaker project? Which MCU are you using?
by ESP_Piyush
Wed Sep 11, 2024 5:06 am
Forum: ESP RainMaker
Topic: IOS Rainmaker App V3.2.1 On Wifi Provisioning SOFTAP
Replies: 5
Views: 1533

Re: IOS Rainmaker App V3.2.1 On Wifi Provisioning SOFTAP

An issue was identified with the recent changes in firmware for using the new Network provisioning component instead of the earlier Wi-Fi provisioning component. The apps were able to provision the nodes after this change. Can you confirm if things started failing for you just on app update, or had ...
by ESP_Piyush
Wed Sep 04, 2024 1:33 pm
Forum: ESP RainMaker
Topic: Error: MQTT_CLIENT: MQTT connect failed
Replies: 5
Views: 5980

Re: Error: MQTT_CLIENT: MQTT connect failed

In the original issue, the node was unable to connect, hence the question regarding claiming. If you use host driven claiming, followed by assisted claiming and then again followed by host driven claiming, it is possible that a stale certificate gets written to the device, which will never be able t...
by ESP_Piyush
Wed Sep 04, 2024 1:29 pm
Forum: ESP RainMaker
Topic: Enroll all node devices remotely under 1 account
Replies: 4
Views: 1842

Re: Enroll all node devices remotely under 1 account

Claiming the nodes using host driven claiming will make you the admin user for these nodes, making them visible to you on the dashboard. The devices can then be sent to the end users to onboard on their app, but the admin access will still stay with you. Meanwhile, I hope it is well understood that ...
by ESP_Piyush
Tue Sep 03, 2024 11:58 am
Forum: ESP RainMaker
Topic: Enroll all node devices remotely under 1 account
Replies: 4
Views: 1842

Re: Enroll all node devices remotely under 1 account

We have concept of user roles which allows admin users to always have access to all the owned nodes via dashboard, irrespective of who the end user is. However, admins cannot control which users should be allowed to link a given node.

Can you let us know what your use case is?
by ESP_Piyush
Thu Aug 29, 2024 4:30 pm
Forum: ESP RainMaker
Topic: Device Provisioning Account
Replies: 1
Views: 1069

Re: Device Provisioning Account

The public as well as private deployments of ESP RainMaker indeed have admin and end user roles. You can read more about these roles here. On private deployments, the differentiation is much clearer though, since the node registration itself happens differently and is managed by the admin users.
by ESP_Piyush
Tue Aug 27, 2024 7:16 am
Forum: ESP RainMaker
Topic: esp rainmaker on how to move rainmaker libraries
Replies: 1
Views: 963

Re: esp rainmaker on how to move rainmaker libraries

Please try the following - Add esp-rainmaker component dependency in your project using idf.py add-dependency "espressif/esp_rainmaker^1.4.0" - Copy all folders from examples/common into a components/ folder in your project or esp-idf/components. - Remove this line from your project's CMakeLists.txt...
by ESP_Piyush
Mon Aug 12, 2024 9:29 am
Forum: ESP RainMaker
Topic: Rainmaker guideline for ESP32 and IDE
Replies: 1
Views: 2115

Re: Rainmaker guideline for ESP32 and IDE

The examples typically are meant to serve as a starting point and the ones for RainMaker Arduino cater to different use cases like standard device, custom device and multi device. Depending on your use case, you can start with one. The "issue" regarding using these is not clear from your description...
by ESP_Piyush
Mon Aug 05, 2024 6:18 am
Forum: ESP RainMaker
Topic: Rainmaker dashboart rest API
Replies: 4
Views: 2650

Re: Rainmaker dashboart rest API

The python CLI is for claiming and end user operations whereas the dashboard is for admin operations, meaning that their feature sets would mostly be mutually exclusive. So, the requirement is still not clear. If you can elaborate with specific points, we can check what can be added/improved.
by ESP_Piyush
Fri Aug 02, 2024 6:25 am
Forum: ESP RainMaker
Topic: Schedule that runs only some seconds ?
Replies: 3
Views: 2440

Re: Schedule that runs only some seconds ?

Parameter settings will be under "Actions" in schedules. Did you check there? Also, schedules need to be explicitly enabled in the firmware. They are enabled by default in all examples using esp_rmaker_schedule_enable(). Please ensure that your project has the same.