2
SKILL
LEVEL
Ringo Educational Guide Rev04.1 ~ Plum Geek
IR Communication
Ringo is able to receive commands from the IR remote control or
from other Ringos, and similarly, can send commands or information
to other Ringos or other IR devices like your TV.
Setup...
Ringo can send IR signals through 3 different emitters which allow him to transmit
360 degrees. Each emitter may be independently enabled allowing for flexibility in
how you want Ringo to communicate with other Ringos or devices around him.
digitalWrite(IR_Enable_Front, HIGH);
//Enable Front IR source
digitalWrite(IR_Enable_RearLeft, HIGH);
//Enable RearLeft IR source
digitalWrite(IR_Enable_RearRight, HIGH);
//Enable RearRight IR source
//Set any of these to LOW to disable the given source
digitalWrite(IR_Send, HIGH);
//Turns ON all enabled IR Light Sources
digitalWrite(IR_Send, LOW);
//Turns OFF all enabled IR Light Sources
IR_Enable_Front
IR_Enable_RearLeft
IR Remote Receiver
IR_Enable_RearRight
Once you have the sources configured as desired, the enabled IR sources are
controlled together at the same time with the IR_Send pin.