Alain Turbide
Alain Turbide
Ok, looks like your getting out of memory errors. The dev branch uses a bit more ram and the esp8266 is tight on that. I'll try and see if I...
I've seen that type of issue with 05 commands that lose a bit possibly due to a bad connection or noisy line. That changes the message quite a bit and...
You can also remove the expander branch as that code is not current anymore. This version supersedes it.
What was the previous 05/0a request cmd? The it-100 must have triggered a cmd first in order to have a 0xD0 command response?
Ok, I see, the it100 clears bit 1 in byte 5 to request to do an update. Thank you. That is what I needed.
Make the changes below to have your panel identified. Yours sends 0x32 in byte3 (which is your panel version) Actually, you have found a good thing here. Byte 3 is...
With the arduino you can easily use the bitRead function: ``` if (bitRead(panelData[4],3)) stream->print(F("| 6 digit code "); else stream->print(F("| 4 digit code "); ``` Alternatively, you can "and" it:...
currently, I'm only able to access the specific battery level of zones by sending a *27## to the panel on initial start and retrieving it from the 0A (sent in...
If you want to see the Pgm data in a sketch, look at the array variable dsc.panelData[], when dsc.panelData[0]==0x87, the dsc.panelData[2] and dsc.panelData[3] bytes will have the pgm bit values.
I know this has been mentioned before but power issues will also cause problems with wifi. Are you powering via usb? Try a different adapter just as an experiment as...