Measuring Nikon DSLR IR remote signal
I just got a Nikon ML-3 equivalent IR remote for remote controlling my Nikon D3300 camera. I recently also wrote the Arduino Nikon IR remote sketch and I figured why not do some reverse engineering on the “original” remote. I took out my logic analyzer and attached an IR receiver to it.
The chinese logic analyzer is able to mimic a few different types of logic analyzers. After initially searching for USBee software I found out that the company producing it went out of bussiness… That is unfortunate as the USBee pods were really nice to use in school. I’m not sure what happened, but I guess their pricing may have contributed to that (well, some time ago the price was almost the same as a real Scope with bulitin LA).
I started a recording and pressed the button on the ML-3 a few times:
The receiver actually outputs already demodulated signal, so the modulation and its frequency are not visible, but timings should still be correct. The receiver ouputs logic one when no signal is detected and logic zero when a signal is detected.
Zoomed in signal of a single button press:
The signal is as follows: (only signal changes are noted, 0 when transmitting, 1 when not transmitting)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 |
Time[s] Channel 0 Duration [s] Time[ms] Duration [ms] -0,100000000 1 -100,000000000 0,000000000 0 0,001976333 0,000000000 1,976333333 0,001976333 1 0,027536083 1,976333333 27,536083333 0,029512417 0 0,000386583 29,512416667 0,386583333 0,029899000 1 0,001555333 29,899000000 1,555333333 0,031454333 0 0,000385167 31,454333333 0,385166667 0,031839500 1 0,003514583 31,839500000 3,514583333 0,035354083 0 0,000386417 35,354083333 0,386416667 0,035740500 1 0,061998083 35,740500000 61,998083333 0,097738583 0 0,001975417 97,738583333 1,975416667 0,099714000 1 0,027534250 99,714000000 27,534250000 0,127248250 0 0,000387167 127,248250000 0,387166667 0,127635417 1 0,001557167 127,635416667 1,557166667 0,129192583 0 0,000384500 129,192583333 0,384500000 0,129577083 1 0,003516333 129,577083333 3,516333333 0,133093417 0 0,000385917 133,093416667 0,385916667 0,133479333 1 0,068768667 133,479333333 68,768666667 0,202248000 0 0,000547083 202,248000000 0,547083333 0,202795083 1 0,007153833 202,795083333 7,153833333 0,209948917 0 0,000545500 209,948916667 0,545500000 0,210494417 1 210,494416667 |
The timings look pretty much the same as in my sketch, apart from the last two pulses, which seem to be missing in it… But it doesn’t seem they are that important as it works quite nicely without them also 😉
Leave a Reply