Eric Chavet
Eric Chavet
> No worries in #opensource we help each other 😉. > > First, we'll probably need to reimplement the mitsubishi protocol used in the swicago library in the component itself,...
a better modification for compatibility should be to replace in `boolean OneWireFirmata::handleSysex(byte command, byte argc, byte* argv) {` ``` numReadBytes = *((int*)argv); argv += 2; correlationId = *((int*)argv); argv +=...
I didn't see the "`Firmata.delayTask(((long)argv));`" fix proposed. with this: ```cpp Firmata.delayTask(argv[0] | ((long)argv[1] time_ms = now; } } } ``` I am no longer able to test this, but I...
I'm using johnny-five client library. There are bugs in the client one wire implementation in this library too. I have proposed corrections https://github.com/rwaldron/johnny-five/pull/1824 to allow the thermometer hardware to process...
https://github.com/firmata/ConfigurableFirmata/issues/136#issuecomment-1518248362
I know this is a closed issue but... This is a bit surprising, given that all the platforms (esp8266, ardiono uno or zero for me) in question are little endian...
Same for me. With esphome. But it works well in both direction with [mitsubishi2MQTT](https://github.com/gysmo38/mitsubishi2MQTT).
Hello, I had the same problem. So I changed many little things looking at the code from mistubishi2mqtt, because this one was working well with my heaters. https://github.com/gysmo38/mitsubishi2MQTT Now I've...
Hey Sorry Geoff I don't remember why I chose to customize my Matt topics. This is not code, these last lines are just custom topics for the mqtt. I don't...
I have added some logs in the code. Some logs are not reliable. It says it is connected to the heater. But it is not. The heater does not seem...