Difference between revisions of "Infrared receiver"
From Microduino Wiki
Line 15: | Line 15: | ||
**1.27mm-pitch 4PIN interface | **1.27mm-pitch 4PIN interface | ||
*Connection Method | *Connection Method | ||
− | **GND, VCC, signal port and NC. | + | **GND, VCC, signal port and NC. The signal port can be defined by users. |
==Development== | ==Development== | ||
===Equipment=== | ===Equipment=== |
Latest revision as of 08:40, 4 August 2017
ContentsOutlineMicroduino-IR receiver is used to receive infrared signal from Infrared transmission. It can receive infrared signal within 10m. Specification
DevelopmentEquipment
PreparationSetup 1: Connect the IR receiver's interface with the Hub's D10 digital port.
Debugging
if (irrecv.decode(&results)) { Serial.println(results.value, HEX); irrecv.resume(); }
ApplicationIt can be used in infrared remote control, which is able to be matched with all kinds of infrared remote controller. You need to make sure the infrared signal type and protocol format before using. |