#12 in Remote-control extenders
Use arrows to jump to the previous/next product

Reddit mentions of MagicW Digital 38khz Ir Receiver 38khz Ir Transmitter Sensor Module Kit for Arduino Compatible

Sentiment score: 2
Reddit mentions: 2

We found 2 Reddit mentions of MagicW Digital 38khz Ir Receiver 38khz Ir Transmitter Sensor Module Kit for Arduino Compatible. Here are the top ones.

MagicW Digital 38khz Ir Receiver 38khz Ir Transmitter Sensor Module Kit for Arduino Compatible
Buying options
View on Amazon.com
or
✅ Based on the 38KHz IR Receiver Sensor✅ 1pcs 38KHz IR Receiver Sensor and 1pcs 38KHz IR Transmitter Sensor✅ Can be used for remoter control,Can be compatible with Wrobot Digital 38KHz IR Transmitter Sensor✅ Power Supply : 5V✅ Modulate Frequency : 38Khz
Specs:

idea-bulb Interested in what Redditors like? Check out our Shuffle feature

Shuffle: random products popular on Reddit

Found 2 comments on MagicW Digital 38khz Ir Receiver 38khz Ir Transmitter Sensor Module Kit for Arduino Compatible:

u/Bobsalt · 24 pointsr/raspberry_pi

Parts List

Old telephone ringer box

RaspberryPi

Nixie tube vfdclock from ebay
or from these guys

Powered USB hub

Amazon USB speakers

PIR sensor (to turn on nixie tubes at night)

IR receiver/sender

GPIO buttons (they are pretty cheap, next time I'd use these. Thanks /u/John_Barlycorn for the link/idea!

old sony ps2 remote - I chose this remote because they are cheap, built solid and are in brand new shape (no one used them as a remote) and have easy LIRC support

USB mic


Edit:
forgot the pics!

Edit2: Linked everything

u/scubascratch · 2 pointsr/AskElectronics

Making a simulated mouse trigger is very easy, get an arduino Leonardo which can be trivially programmed to emulate a USB mouse with a couple lines of code.

I am not sure what kind of IR trigger you want to implement - do you already have an IR transmitter he can trigger somehow? If that’s the case you can add an IR receiver which can receive standard IR signals from things like remote controls.

Do you need to sense something like muscular movement in his face? You might be able to hook up something like attach a small magnet with tape to his eyebrow and then position a [https://www.amazon.com/IDUINO-Arduino-Compatible-Effect-Magnetic/dp/B019GU8UY2](Hall effect sensor) nearby so he can flex an eyebrow to change the hall effect sensor reading. The hall sensor will be connected to an analog input on the arduino.

The code will look something like this:

int magnetThreshold = 300; // this value will need to be determined experimentally

void setup(){
//initiate the Mouse library
Mouse.begin();
}

void loop(){
//if the magnetic sensor is triggered send a Left mouse click
if (analogRead(1)) > magnetThreshold){
Mouse.click();
delay(1000); // wait a full second
// make sure magnet is no longer triggered
while (analogRead(1)) > magnetThreshold) {
delay(250);
}
}

There are also other kind of sensors you can use like color sensors, pressure sensors (blowing into a tube) and even tongue switches.