Questions tagged [remote-control]

Used to describe the act of (often wirelessly) controlling another system.

Forms of remote-control

Remote control can be separated in two categories: wired or wireless.

Remote control is different from remote communication in a way that the second device usually does not change the logic and that each signal usually represents an action rather than information.

(In consumer electronics, a remote control is the device to control a TV or set-top box. Also an RC-car is an (often radio) controlled miniature vehicle.)

Wired

A wired remote control system isn't all that different from a regular system. The increased length of wiring might bring in problems though. For long-distance wiring, interference and signal strength might become a real problem. The use of differential signals (RS-422, RS-485) in combination with quality (shielded) twisted pair cables should extend the maximum possible cable length. The use of internet might also be a solid option for wiring remote control systems, but you should be very wary of security risks (and even then, it's still a risk). High-risk applications are "never" connected to the internet.

Wireless

For setting up a wireless connection, there are several protocols/implementations around.

Such as: Bluetooth (HC-05/06), WiFi (Esp2866), Light/IR, radio signals or magnetics (limited range).

The security of wireless can also be a risk, since the signal could be intercepted/altered.

Directional

Some remote control applications are bi-directional, which means that there is no defined "master" or "slave" device. And that both the devices can control each other.

Related

Remote-control is closely related with:

Remote-interface and remote-communication

133 questions
14
votes
3 answers

Want to create bluetooth audio control (volume up/down, play, pause, etc.) for smartphone

I want to create a bluetooth remote audio control to control smartphone audio, essentially identical in function to this type of…
Howiecamp
  • 243
  • 1
  • 2
  • 6
6
votes
4 answers

RF remote control using VirtualWire on ATtiny85 running at 8MHz on internal oscillator

I'm trying to make an RF remote control using ATtiny85 running at 8MHz on internal oscillator, this cheap RF 434MHz transmitter module (like the one below), and VirtualWire lib, but had no success so far. So, before I go any further, is it…
Ricardo
  • 3,390
  • 2
  • 26
  • 55
6
votes
2 answers

Tone() conflicts with IRremote library (multiple definition of `__vector_7')

I have just started with Arduino and C++ so I apologise if my question is very basic. I am trying to use tone() with a passive buzzer to create a sound while also using the IRremote library for a remote. However, whenever they are used together, it…
rgiller
  • 63
  • 1
  • 6
6
votes
2 answers

What is the proper way to implement PID?

I'm having some trouble conceptualizing how to go about implementing PID into my drone. There are a few ways I'm thinking about implementing the pipeline: Having one PID Object for each of the six motors. Having one PID Object for each axis. How I…
tuskiomi
  • 205
  • 1
  • 11
6
votes
4 answers

Infrared TV Remote to Arduino

On the hardware side of things, what is involved in making the Arduino receive signals from a TV Remote? What kind of infrared receiver is needed? Do TV remotes use some kind of channels, encoding, or encryption requiring special receivers or else…
HK1
  • 397
  • 1
  • 4
  • 10
6
votes
5 answers

Is it possible to transmit using an NRF24L01+ without an Arduino?

I have two NRF24L01+ modules which are transceivers, but for my project I would like to send a very simple signal from one of these modules to the be read by the other. That would've been very simple if I had an Arduino on each side but due to power…
Ceottaki
  • 173
  • 1
  • 1
  • 3
5
votes
3 answers

Decoding 2.4G RF remote controller?

There is tons of information on how IR remote controls work and how to use an Arduino to decode those signals and use any IR remote to suit your project. But I couldn't find much info about 2.4G RF remotes. I want to control a string of addressable…
ahmadx87
  • 549
  • 2
  • 9
  • 16
3
votes
0 answers

is it possible for a client esp8266 to control the esp8266 that set as an access point?

Im creating a project where i need to set one of my esp as a hotspot or access point but i would like to put a function where i could control the connected esp8266 client using the esp8266 that set as access point. I wonder if could use the acces…
kwak
  • 61
  • 2
3
votes
0 answers

nano 33 BLE problems with reading RC signal

I'm using an Arduino Nano 33 BLE and a L293D motor driver to control a three-wheeled RC robot. The sketch I'm using worked fine with my Uno Rev3, but I've moved to the Nano for size/weight reasons, and it's no longer working. Whenever I turn the…
3
votes
5 answers

Fan regulator control from Arduino

I'm trying to control my ~230 V fan from the Arduino. Can anyone say the best possible ways to design a fan regulator that can be controlled by the Arduino using a low cost design.
Sivamani V
  • 51
  • 1
  • 7
3
votes
1 answer

Arduino keypad and RF 433MHz transmitter problem

So, the basic idea is that user presses a key on keypad, and key that is pressed is sent with RF transmitter. I got individual parts to work(keypad and transmitter), but can't send the actual key. When I try to send it, I get a strange string on…
3
votes
1 answer

Controlling amplifier using remote control jack

Many older amplifiers support wired remote control through connector jacks or ports. My 10-year old Marantz also supports this function, using a simple RCA connector. Originally these were used with external IR receivers when the unit was not kept…
retrography
  • 173
  • 5
3
votes
2 answers

Wirelessly communicate between two Arduinos without router

I want to "connect" two Arduinos, without using wires. The range is ~0.2 miles (300 meters). Using Google, I saw too many options. The idea is to build something like a beacon, so the bandwidth can be small. I want to send 32 or 64 bits/second of…
Imaky
  • 131
  • 3
2
votes
0 answers

I am trying to connect ps3 controller to Arduino mega using usb host shield, but it isn't getting?

I tried various method from YouTube and also debugged it. It shows that ps3 controller address was set to local Bluetooth address, after that when I try to connect, it shows that it is receiving request from controller but however the request isn't…
2
votes
2 answers

IRremote and PCM sound libraries interfering

I have a simple sketch which sends IR codes, plays a sound and toggles an LED when you press a button and toggles another LED when it receives that code. The idea is that I have two Arduinos with this same sketch and when you press the button on…
Patrick
  • 63
  • 4
1
2 3
8 9