Matt Austin
Matt Austin
Just simplifying with `Boolean(true)` for the example (my actual code is generating the boolean from another var, and wanted to make sure I had a pure boolean object for the...
Indeed - thank you for your help! I've replaced: ``` javascript var bar = new Boolean(baz); ``` with: ``` javascript var bar = baz ? true : false; ``` and...
See also: #119
I've just discovered that using `url_override` is also a workaround - I'll use this method for the time-being, but there are comments for this kwarg that warn it's a bit...
I only have battery info for a few sensors, and they are all located in the same planter, so I wouldn't imagine signal strength to vary too much between them
Hi @hammy1988 , did you ever work this out? I have the same question.