Zachary J. Fields

Results 57 issues of Zachary J. Fields

`ArduinoIoTCloud_Schedule` does not utilize the `switchButton` cloud variable, and it is the ONLY variable synchronized by LoRa. This is odd, perhaps `switchButton` could be incorporated, and/or one of the `CloudSchedule`...

type: imperfection
topic: documentation

The following Cloud variables, have a frequency that is too fast for LoRa: ``` ArduinoCloud.addProperty(bool_property_1, READWRITE, 1 * SECONDS); ... ArduinoCloud.addProperty(bool_property_2, Permission::ReadWrite).publishEvery(1 * SECONDS); ... ArduinoCloud.addProperty(str_property_3, READWRITE, 1 * SECONDS,...

type: imperfection
topic: infrastructure

Running this [**Arduino CLI**](https://arduino.github.io/arduino-cli/latest/) command from the folder of a sketch that `#include`s the "ArduinoIoTCloud" library: ```text arduino-cli compile --verbose --warnings=all --build-property "build.extra_flags=-Wno-unused-variable -Wno-implicit-fallthrough -Wno-psabi -Wno-deprecated-copy -Wno-missing-field-initializers -Wno-vla -Wno-sign-compare -Og...

type: imperfection
topic: code

Enables a user to intuit the pin name of the input pins, without having to reference this file.

``` #warning No configuration for LF clock source. Xtal source will be used as a default configuration. ``` I have always compiled with `-Werror`. I have not changed my source...