]> vault307.fbx.one Git - micorpython_ir.git/blob - RECEIVER.md
cd84c4f33f3257faa399c510cc257169aaed80d9
[micorpython_ir.git] / RECEIVER.md
1 # IR Receiver
2
3 ##### [Main README](./README.md#1-ir-communication)
4
5 # 1. Hardware Requirements
6
7 The receiver is cross-platform. It requires an IR receiver chip to demodulate
8 the carrier. The chip must be selected for the frequency in use by the remote.
9 For 38KHz devices a receiver chip such as the Vishay TSOP4838 or the
10 [adafruit one](https://www.adafruit.com/products/157) is required. This
11 demodulates the 38KHz IR pulses and passes the demodulated pulse train to the
12 microcontroller. The tested chip returns a 0 level on carrier detect, but the
13 driver design ensures operation regardless of sense.
14
15 In my testing a 38KHz demodulator worked with 36KHz and 40KHz remotes, but this
16 is obviously neither guaranteed nor optimal.
17
18 The TSOP4838 can run from 3.3V or 5V supplies. The former should be used on
19 non-5V compliant hosts such as ESP32 and Raspberry Pi Pico and is fine on 5V
20 compliant hosts too.
21
22 The pin used to connect the decoder chip to the target is arbitrary. The test
23 program assumes pin X3 on the Pyboard, pin 23 on ESP32 and pin 13 on ESP8266.
24 On the WeMos D1 Mini the equivalent pin is D7.
25
26 A remote using the NEC protocol is [this one](https://www.adafruit.com/products/389).
27
28 # 2. Installation and demo scripts
29
30 The receiver is a Python package. This minimises RAM usage: applications only
31 import the device driver for the protocol in use. Clone the repository to the
32 current directory of your PC with:
33 ```bash
34 $ git clone https://github.com/peterhinch/micropython_ir
35 ```
36
37 Copy the following to the target filesystem:
38 1. `ir_rx` Directory and contents.
39
40 There are no dependencies.
41
42 ## 2.1 Test scripts
43
44 The demo can be used to characterise IR remotes where the protocol is known. It
45 displays the codes returned by each button. This can aid in the design of
46 receiver applications. The demo prints "running" every 5 seconds and reports
47 any data received from the remote.
48 ```python
49 from ir_rx.test import test
50 ```
51 Instructions will be displayed at the REPL.
52
53 If the protocol in use is unknown, there are two options: trial and error with
54 the above script or run the following:
55 ```python
56 from ir_rx.acquire import test
57 test()
58 ```
59 This script waits for a single burst from the remote and prints the timing of
60 the pulses followed by its best guess at the protocol. It correctly identifies
61 supported protocols, but can wrongly identify unsupported protocols. The
62 report produced by the script exposed to an unknown protocol is unpredictable.
63 The `test()` function returns a list of the mark and space periods (in μs).
64
65 # 3. The driver
66
67 This implements a class for each supported protocol. Each class is subclassed
68 from a common abstract base class in `__init__.py`.
69
70 Applications should instantiate the appropriate class with a callback. The
71 callback will run whenever an IR pulse train is received. Example running on a
72 Pyboard:
73 ```python
74 import time
75 from machine import Pin
76 from pyb import LED
77 from ir_rx.nec import NEC_8 # NEC remote, 8 bit addresses
78
79 red = LED(1)
80
81 def callback(data, addr, ctrl):
82 if data < 0: # NEC protocol sends repeat codes.
83 print('Repeat code.')
84 else:
85 print('Data {:02x} Addr {:04x}'.format(data, addr))
86
87 ir = NEC_8(Pin('X3', Pin.IN), callback)
88 while True:
89 time.sleep_ms(500)
90 red.toggle()
91 ```
92
93 #### Common to all classes
94
95 Constructor args:
96 1. `pin` is a `machine.Pin` instance configured as an input, connected to the
97 IR decoder chip.
98 2. `callback` is the user supplied callback.
99 3. `*args` Any further args will be passed to the callback.
100
101 The user callback takes the following args:
102 1. `data` (`int`) Value from the remote. Normally in range 0-255. A value < 0
103 signifies an NEC repeat code.
104 2. `addr` (`int`) Address from the remote.
105 3. `ctrl` (`int`) The meaning of this is protocol dependent:
106 NEC: 0
107 Philips: this is toggled 1/0 on repeat button presses. If the button is held
108 down it is not toggled. The transmitter demo implements this behaviour.
109 Sony: 0 unless receiving a 20-bit stream, in which case it holds the extended
110 value.
111 4. Any args passed to the constructor.
112
113 Bound variable:
114 1. `verbose=False` If `True` emits debug output.
115
116 Methods:
117 1. `error_function` Arg: a function taking a single `int` arg. If specified
118 the function will be called if an error occurs. The arg value corresponds to
119 the error code. Typical usage might be to provide some user feedback of
120 incorrect reception although beware of occasional triggers by external events.
121 In my testing the TSOP4838 produces 200µs pulses on occasion for no obvious
122 reason. See [section 4](./RECEIVER.md#4-errors).
123 2. `close` No args. Shuts down the pin and timer interrupts.
124
125 A function is provided to print errors in human readable form. This may be
126 invoked as follows:
127
128 ```python
129 from ir_rx.print_error import print_error # Optional print of error codes
130 # Assume ir is an instance of an IR receiver class
131 ir.error_function(print_error)
132 ```
133 Class variables:
134 1. These are constants defining the NEC repeat code and the error codes sent
135 to the error function. They are discussed in [section 4](./RECEIVER.md#4-errors).
136
137 #### NEC classes
138
139 `NEC_8`, `NEC_16`
140
141 Typical invocation:
142 ```python
143 from ir_rx.nec import NEC_8
144 ```
145
146 Remotes using the NEC protocol can send 8 or 16 bit addresses. If the `NEC_16`
147 class receives an 8 bit address it will get a 16 bit value comprising the
148 address in bits 0-7 and its one's complement in bits 8-15.
149 The `NEC_8` class enables error checking for remotes that return an 8 bit
150 address: the complement is checked and the address returned as an 8-bit value.
151 A 16-bit address will result in an error.
152
153 #### Sony classes
154
155 `SONY_12`, `SONY_15`, `SONY_20`
156
157 Typical invocation:
158 ```python
159 from ir_rx.sony import SONY_15
160 ```
161
162 The SIRC protocol comes in 3 variants: 12, 15 and 20 bits. `SONY_20` handles
163 bitstreams from all three types of remote. Choosing a class matching the remote
164 improves the timing reducing the likelihood of errors when handling repeats: in
165 20-bit mode SIRC timing when a button is held down is tight. A worst-case 20
166 bit block takes 39ms nominal, yet the repeat time is 45ms nominal.
167 A single physical remote can issue more than one type of bitstream. The Sony
168 remote tested issued both 12 bit and 15 bit streams.
169
170 #### Philips classes
171
172 `RC5_IR`, `RC6_M0`
173
174 Typical invocation:
175 ```python
176 from ir_rx.philips import RC5_IR
177 ```
178
179 These support the RC-5 (including RC-5X) and RC-6 mode 0 protocols
180 respectively.
181
182 #### Microsoft MCE class
183
184 `MCE`
185
186 Typical invocation:
187 ```python
188 from ir_rx.mce import MCE
189 ```
190
191 I have been unable to locate a definitive specification: the protocol was
192 analysed by a mixture of googling and experiment. Behaviour may change if I
193 acquire new information. The protocol is known as OrtekMCE and the remote
194 control is sold on eBay as VRC-1100.
195
196 The remote was designed for Microsoft Media Center and is used to control Kodi
197 on boxes such as the Raspberry Pi. With a suitable PC driver it can emulate a
198 PC keyboard and mouse. The mouse emulation uses a different protocol: the class
199 does not currently support it. Pressing mouse buttons and pad will cause the
200 error function (if provided) to be called.
201
202 Args passed to the callback comprise 4 bit `addr`, 6 bit `data` and 2 bit `ctrl`
203 with the latter having the value 0 for the first message and 2 for the message
204 sent on key release. Intermediate messages (where the key is held down) have
205 value 1.
206
207 There is a 4-bit checksum which is used by default. The algorithm requires an
208 initial 'seed' value which my testing proved to be 4. However the only
209 [documentation](http://www.hifi-remote.com/johnsfine/DecodeIR.html#OrtekMCE) I
210 could find stated that the value should be 3. I implemented this as a class
211 variable `MCE.init_cs=4`. This enables it to be changed if some remotes use 3.
212 If the value is set to -1 the check will be skipped.
213
214 # 4. Errors
215
216 IR reception is inevitably subject to errors, notably if the remote is operated
217 near the limit of its range, if it is not pointed at the receiver or if its
218 batteries are low. The user callback is not called when an error occurs.
219
220 On ESP8266 and ESP32 there is a further source of errors. This results from the
221 large and variable interrupt latency of the device which can exceed the pulse
222 duration. This causes pulses to be missed or their timing measured incorrectly.
223 On ESP8266 some improvment may be achieved by running the chip at 160MHz.
224
225 In general applications should provide user feedback of correct reception.
226 Users tend to press the key again if the expected action is absent.
227
228 In debugging a callback can be specified for reporting errors. The value passed
229 to the error function are represented by constants indicating the cause of the
230 error. These are driver ABC class variables and are as follows:
231
232 `BADSTART` A short (<= 4ms) start pulse was received. May occur due to IR
233 interference, e.g. from fluorescent lights. The TSOP4838 is prone to producing
234 200µs pulses on occasion, especially when using the ESP8266.
235 `BADBLOCK` A normal data block: too few edges received. Occurs on the ESP8266
236 owing to high interrupt latency.
237 `BADREP` A repeat block: an incorrect number of edges were received.
238 `OVERRUN` A normal data block: too many edges received.
239 `BADDATA` Data did not match check byte.
240 `BADADDR` (`NEC_IR`) If `extended` is `False` the 8-bit address is checked
241 against the check byte. This code is returned on failure.
242
243 # 5. Receiver platforms
244
245 Currently the ESP8266 suffers from [this issue](https://github.com/micropython/micropython/issues/5714).
246 Testing was therefore done without WiFi connectivity. If the application uses
247 the WiFi regularly, or if an external process pings the board repeatedly, the
248 crash does not occur.
249
250 Philips protocols (especially RC-6) have tight timing constraints with short
251 pulses whose length must be determined with reasonable accuracy. The Sony 20
252 bit protocol also has a timing issue in that the worst case bit pattern takes
253 39ms nominal, yet the repeat time is 45ms nominal. These issues can lead to
254 errors particularly on slower targets. As discussed above, errors are to be
255 expected. It is up to the user to decide if the error rate is acceptable.
256
257 Reception was tested using Pyboard D SF2W, ESP8266 and ESP32 with signals from
258 remote controls (where available) and from the tranmitter in this repo. Issues
259 are listed below.
260
261 NEC: No issues.
262 Sony 12 and 15 bit: No issues.
263 Sony 20 bit: On ESP32 some errors occurred when repeats occurred.
264 Philips RC-5: On ESP32 with one remote control many errors occurred, but paired
265 with the transmitter in this repo it worked.
266 Philips RC-6: No issues. Only tested against the transmitter in this repo.
267
268 # 6. Principle of operation
269
270 Protocol classes inherit from the abstract base class `IR_RX`. This uses a pin
271 interrupt to store in an array the time (in μs) of each transition of the pulse
272 train from the receiver chip. Arrival of the first edge starts a software timer
273 which runs for the expected duration of an IR block (`tblock`). The use of a
274 software timer ensures that `.decode` and the user callback can allocate.
275
276 When the timer times out its callback (`.decode`) decodes the data. `.decode`
277 is a method of the protocol specific subclass; on completion it calls the
278 `do_callback` method of the ABC. This resets the edge reception and calls
279 either the user callback or the error function (if provided).
280
281 The size of the array and the duration of the timer are protocol dependent and
282 are set by the subclasses. The `.decode` method is provided in the subclass.
283
284 CPU times used by `.decode` (not including the user callback) were measured on
285 a Pyboard D SF2W at stock frequency. They were: NEC 1ms for normal data, 100μs
286 for a repeat code. Philips codes: RC-5 900μs, RC-6 mode 0 5.5ms.
287
288 # 7. Unsupported protocols
289
290 It is possible to capture an IR burst from a remote and to re-create it using
291 the transmitter. This has limitations and is discussed in detail in
292 [the transmitter doc](./TRANSMITTER.md#5-unsupported-protocols).
293
294 # Appendix 1 NEC Protocol description
295
296 A normal burst comprises exactly 68 edges, the exception being a repeat code
297 which has 4. An incorrect number of edges is treated as an error. All bursts
298 begin with a 9ms pulse. In a normal code this is followed by a 4.5ms space; a
299 repeat code is identified by a 2.25ms space. A data burst lasts for 67.5ms.
300
301 Data bits comprise a 562.5µs mark followed by a space whose length determines
302 the bit value. 562.5µs denotes 0 and 1.6875ms denotes 1.
303
304 In 8 bit address mode the complement of the address and data values is sent to
305 provide error checking. This also ensures that the number of 1's and 0's in a
306 burst is constant, giving a constant burst length of 67.5ms. In extended
307 address mode this constancy is lost. The burst length can (by my calculations)
308 run to 76.5ms.
309
310 # Appendix 2 MCE Protocol
311
312 The bitstream comprises a header (2ms mark, 1ms space) followed by 16 bits of
313 Manchester encoded data with a bit time of 500μs. Data are encoded
314 ```
315 ccccddddddppaaaa
316 ```
317 Where `aaaa` is the address, `pp` is the position (toggle) field, `dddddd` is
318 data and `cccc` is a checksum. This is calculated by counting the ones in
319 `ddddddppaaaa` and adding 4. Data are transmitted LSB first.
320
321 The only [doc](http://www.hifi-remote.com/johnsfine/DecodeIR.html#OrtekMCE) I
322 could find states that the checksum seed value is 3, but this did not match the
323 remote I have.