ESP8266 tools auto_analyse_raw_data #1942
-
Is there any documentation on how to use this python script. How do you give it the raw data, I have been trying to get the XMP protocol to work and have sucessfully used IRrecvDumpV2.ino to decode XMP codes sent from my arduino using a send program. The next stage seems to be to further anylyse the raw data. I'm not sure if the py script only works on the esp or whether I could run it on my pc , say with anaconda. Either way I don't understand how you interact with auto_analyse_raw_data to give it the raw data. Thanks |
Beta Was this translation helpful? Give feedback.
Replies: 4 comments 9 replies
-
You run it with python, and it will give you help and examples? |
Beta Was this translation helpful? Give feedback.
-
You run the script on a device that has Python. e.g. PC, Mac, Linux, etc etc. |
Beta Was this translation helpful? Give feedback.
-
If the library successfully decodes the protocol, you most likely don't need the I think you need to analyse the "output data" collected by the protocol decoder, not the "raw" data. |
Beta Was this translation helpful? Give feedback.
-
As you've confirmed the protocol works for your real devices, can you please supply us with the make/model etc for the remote and the device it controls so we can add it to the list of supported devices. |
Beta Was this translation helpful? Give feedback.
If the library successfully decodes the protocol, you most likely don't need the
auto_analyse_raw_data.py
script. It's primary use is for attempting to decode protocols have no decoder for them yet.I think you need to analyse the "output data" collected by the protocol decoder, not the "raw" data.