Cool and cheap remote control solution with Arduino!

Posted by: admin Category: Network Tags: , , Comments: 2

Cool and cheap remote control solution with Arduino!

This set is really cheap which only $4.3 (including receive module and remote console)! and work with Arduino!

It has four buttons on the remote controller, and you only need to connect four data output pin to your arduino analog read, VCC and GND to your arduino as well, then you can start to read signal!

The antenna is already mounted, just unbend it to increase receive distance, really easy to use!

The code is simply modified from Example library – Basic – AnalogReadSerial, compare the code below with example

 

[c]void setup() {
Serial.begin(9600);
}

void loop() {
int sensorValue = analogRead(A0);
int sensorValue2 = analogRead(A1);
int sensorValue3 = analogRead(A2);
int sensorValue4 = analogRead(A3);
Serial.print(sensorValue, DEC);
Serial.print(";;;");
Serial.print(sensorValue2, DEC);
Serial.print(";;;");
Serial.print(sensorValue3, DEC);
Serial.print(";;;");
Serial.println(sensorValue4, DEC);
delay(500);
}[/c]

About distance

In real test, the distance is over 2.5 meters with 100% data receive, but it could vary due to the different environment.

Share this post

Comments (2)

  • geraldhasmail Reply

    I bought this setup a little over a month ago, I didn’t expect it to be amazing for the price, but it has turned out to be a really useful part. Right now it’s embedded in a light I have outside for remote control.

    May 26, 2016 at 11:46 am
  • poulbran Reply

    These are great for firework displays all you need is an Arduino and relay shield

    September 12, 2016 at 8:03 am

Leave a Reply

Your email address will not be published. Required fields are marked *

This site uses Akismet to reduce spam. Learn how your comment data is processed.