Marcio
Marcio
Tried this on a M1 MacBook, but the brew install failed because OS X was reporting 11.4 version. So my solution was: ``` curl https://krypt.co/kr | sed "s/11.0/11.4/g" | sh...
FWIW, I was seeing this error too when the receiver url I used could not be accessed from the Chromecasts.
+1 to this. 🙂
Hi all. First, thanks for the amazing work on firmata, really incredible how this enable so many other projects. I've been developing a plant monitoring system and that includes moisture...
I see, makes sense. I implemented it and had it running before you replied (here's the [diff](https://github.com/firmata/arduino/compare/master...mdlima:analog-report-config)). As you said, I had to replace the `int analogInputsToReport` by two arrays...
Sure, let me detail the use cases: - _What is your use case for read average loops?_ Average smoothed reading is useful for cancelling out noise in the Vcc line....
Fair enough, I will implement the other use cases as user messages. I opened the pull request https://github.com/firmata/ConfigurableFirmata/pull/80 for this. Some things that came to mind: - Since the QUERY...
> Overall I'm not yet set on this proposal. It may take some time to settle. Too bad, I was hoping to get this merged so I can open the...
> Are you aware of any microcontroller platforms that return a negative value for an analog read? Not really, it was a question I had too, but I also meant...
That's for reconstructing the negative numbers, using signed 2's complement. ### Sending 32 16-bit binary: 0000 0000 0010 0000 [0x0020] 7-bit bytes: ``` data sent [mask & remaining] 1. 010...