David Conran

Results 94 comments of David Conran

> Tried to follow How to add new IR Remote in the wiki and implemented the TestExample Stuff, but i still get UNKNOWN when i use the remote. Can you...

Thanks, at a cursory glance, the code looks like it should work. I'll have a tinker later

Did you try setting `DEBUG` on and have a look at the output? e.g. https://github.com/crankyoldgit/IRremoteESP8266/blob/4adcc7bcdeb922e28de9ee8937f65ccd18be3269/src/IRremoteESP8266.h#L1382-L1383

Try changing: ```c++ if (!matchSpace(results->rawbuf[offset++], kTestExampleHdrSpace)) return false; ``` to: ```c++ if (!matchMark(results->rawbuf[offset++], kTestExampleBitMark)) return false; if (!matchSpace(results->rawbuf[offset++], kTestExampleHdrSpace)) return false; ```

Okay. 1. Stop using `TestExample` etc. Use `CLIMATEBUTLER`/`ClimateButler` etc instead for all occurrences. 2. Rename `ir_Climate.cpp` to `ir_ClimateButler.cpp`. 3. Change: ```c++ for (uint16_t r = 0; r >= 52; //...

Your library code looks fine so far after a brief look. Nothing leaps out as wrong. Perhaps the problems is with your use of it. Can you post your minimum...

> Started to analyse the IR Codes here: https://docs.google.com/spreadsheets/d/1cy5-5tNJvlfgpQws0UVYX0jEZs4xoefBOWScEjmtoX0/edit#gid=0 @benjy3gg You forgot to make it publicly readable.

Looking at the temperature range, it looks like we've got the correct bit-ordering. So, nothing to change. Please create a PR. As for the checksum. It looks like the last...

Can you please include all of the text from some of the captures of the remote using IRrecvDumpV2 or V3? Especially for messages that decode incorrectly (and a few for...

Yes, it does. I've left comments on the spreadsheet. Sorry, I should have gotten back to you sooner.