Brian Ejike
Brian Ejike
If you enable DEBUG prints in the midst of the template transfer itself, it can cause the process to fail as the sensor sends data faster than the MCU is...
Likely caused because the library doesn't open the Ethernet socket first before writing log strings to it. This should be done with `this->_client->begin(someRandomLocalPort)` or in your sketch `setup()`, can also...
Your most recent error (MGMT_STATUS_CONNECT_FAILED == 0x4) is basically saying that the connection attempt failed -- possibly the paging of the remote device. Perhaps your speaker isn't in pairing/connectable mode?...
Yes, this is likely the same as #1203. With mounting effectively broken, there should really be a warning in the app to reduce frustration, let alone all these duplicate issues...
After the recent refactoring, this function is now available as `FPM::readProductInfo()`. Closing this.
> how to go about uploading from the pc back to the reader slot. Took a few years but finally added an example for doing this, as part of the...
The issue isn't noticed normally likely because the compiler reproduces the entire IF statement pretty much as is. Whenever `1 - INT_MIN` happens, instead of yielding `2147483649` (which is not...
When I modify the function like so: ``` const char* mqtt_error_str(enum MQTTErrors error) { if (error < 0) { /* Only allow this subtraction when error is negative, to avoid...
You need to make sure you set the baud rate correctly in your serial monitor, to match the baud rate in the sketch -- 57600.
Ah, that's an idea many have had. You may want to first check out the old issues in this repo such as https://github.com/brianrho/FPM/issues/39 and https://github.com/brianrho/FPM/issues/9#issuecomment-451048453. I don't know anything of...