Search found 27 matches

by rmetzner49
Wed Mar 16, 2022 8:00 pm
Forum: ESP RainMaker
Topic: Is Scheduling supported under Arduino?
Replies: 0
Views: 1815

Is Scheduling supported under Arduino?

I found some code on Rainmaker, but not as a part of Arduino Library. Is there a separate Schedule Library?


Are there any examples of calling the Scheduler?
by rmetzner49
Fri Mar 04, 2022 2:35 pm
Forum: ESP RainMaker
Topic: Device Create API(Device Icon Change)
Replies: 8
Views: 5434

Re: Device Create API(Device Icon Change)

How about this:

my_device.updateAndReportParam("Hours Exercising:", h1);

Note, if you are updating several parameters, you will need to DELAY between calling them, else things choke.
Be sure not to use delay(); , you want a non-blocking timer. I update 3 values and have 200ms between each call.
by rmetzner49
Tue Mar 01, 2022 9:49 pm
Forum: ESP RainMaker
Topic: Future nice-to-have list for ESP-RainMaker
Replies: 6
Views: 22310

Re: Future nice-to-have list for ESP-RainMaker

How about in addition to: esp_rmaker_get_local_time_str( Timestring, 150);

Could you include: uint32_1 Seconds_since_1970 (esp_rmaker_get_local_time_epoch( );

It would help when timing events without having to decode the Timestring.
by rmetzner49
Thu Feb 10, 2022 3:33 pm
Forum: ESP RainMaker
Topic: Claiming Failed with error:
Replies: 3
Views: 2914

Re: Claiming Failed with error:

Thank you. Perhaps the Admin can also REMOVE unwanted Claims? I have 5 showing up but have only 3 working ESP32's. Is it reasonable to DELETE Claims that are tied to FAILED units thrown in the trash? I'm working on a Custom PCB of my design, and occasionally a test lead might flop onto 12VDC. The ES...
by rmetzner49
Wed Feb 09, 2022 10:13 pm
Forum: ESP RainMaker
Topic: Claiming Failed with error:
Replies: 3
Views: 2914

Claiming Failed with error:

This is new, and probably because I cannot REMOVE a device from the dashboard. I now have only ONE device active in my phone app, but this new message above is followed by "User does not have available quota. Please contact Administrator." I'm guessing I have one working and 4 failed attempts. SO my...
by rmetzner49
Wed Feb 09, 2022 9:03 pm
Forum: ESP RainMaker
Topic: Provisioning over WiFi without COM Port
Replies: 2
Views: 3858

Re: Provisioning over WiFi without COM Port

I did conclude that after much looking at the order of events in Provisioning. To get around this, I now don't initialize WiFi until after the claiming process. You ask, why WiFi? Because I haven't been able to use Rainmaker's OTA service and can't afford to wait until Pedro or Piyoush get around to...
by rmetzner49
Sat Jan 29, 2022 3:24 pm
Forum: Hardware
Topic: Can I safely power a PICO-KIT through 3.3V?
Replies: 3
Views: 3824

Re: Can I safely power a PICO-KIT through 3.3V?

You also have to be careful with sequencing the power. I've had a 3.3V display powered from its own regulator and connected same regulator to 3.3V of the LDO. You have to always disconnect your USB before powering down your 3.3V device, else that 1117 LDO tries to power everything which it isn't hap...
by rmetzner49
Sat Jan 29, 2022 3:04 pm
Forum: Hardware
Topic: I can't program my ESP32-WROOM-32D
Replies: 3
Views: 4031

Re: I can't program my ESP32-WROOM-32D

How are you powering the ESP32? Presumably you have a regulator somewhere? Where do you derive 3.3V ?
by rmetzner49
Sat Jan 29, 2022 12:46 am
Forum: ESP RainMaker
Topic: Provisioning over WiFi without COM Port
Replies: 2
Views: 3858

Provisioning over WiFi without COM Port

First, I want to say you guys have done a tremendous job with Rainmaker, and I'm able to create a node and add parameters to my heart's desire. What is puzzling me is; how to provision an ESP32 with an existing WiFi connection. Indeed, if I disable WiFi, the ESP makes a new bar code just fine. I hav...
by rmetzner49
Sun Apr 18, 2021 3:09 pm
Forum: Sample Code
Topic: Arduino example: XPT2046 touch and ILI9341 tft.
Replies: 2
Views: 17043

Re: Arduino example: XPT2046 touch and ILI9341 tft.

Since HSPI is used on most Dev Boards for EEPROM access, I should think you would want to stay off of that one with any other business. In the Arduino world, VSPI is the default channel the Compiler uses. SPI devices generally don't have a problem sharing channels unless one device (e.g. RA8875) doe...