Skip to content

Instantly share code, notes, and snippets.

@JosephGregg
Created November 12, 2017 03:19
Show Gist options
  • Save JosephGregg/a3c05dd6f6f883de456fbdd358486c40 to your computer and use it in GitHub Desktop.
Save JosephGregg/a3c05dd6f6f883de456fbdd358486c40 to your computer and use it in GitHub Desktop.
YT-260 Pan/Tilt hack
const byte numChars = 32;
char receivedChars[numChars]; // an array to store the received data
boolean newData = false;
int dataNumber = 0; // new for this version
void setup() {
pinMode(5, OUTPUT);
pinMode(4, OUTPUT);
pinMode(0, OUTPUT);
pinMode(2, OUTPUT);
Serial.begin(115200);
Serial.println("<Pan/Tilt Controller>");
Serial.println("Ready!");
}
void loop() {
recvWithEndMarker();
showNewNumber();
}
void recvWithEndMarker() {
static byte ndx = 0;
char endMarker = '\n';
char rc;
if (Serial.available() > 0) {
rc = Serial.read();
if (rc != endMarker) {
receivedChars[ndx] = rc;
ndx++;
if (ndx >= numChars) {
ndx = numChars - 1;
}
}
else {
receivedChars[ndx] = '\0'; // terminate the string
ndx = 0;
newData = true;
}
}
}
void showNewNumber() {
if (newData == true) {
dataNumber = 0;
dataNumber = atoi(receivedChars);
if (dataNumber == 1) {
Serial.println("Received stop command");
analogWrite(5, 0);
analogWrite(4, 0);
exit;
}
else if (dataNumber == 2) {
Serial.println("Received rotate left command");
analogWrite(4, 1023);
digitalWrite(2, LOW);
delay(300);
analogWrite(4, 0);
}
else if (dataNumber == 3) {
Serial.println("Received rotate right command");
analogWrite(4, 1023);
digitalWrite(2, HIGH);
delay(300);
analogWrite(4,0);
}
else if (dataNumber == 4) {
Serial.println("Received tilt back command");
analogWrite(5, 1023);
digitalWrite(0, HIGH);
delay(300);
analogWrite(5,0);
}
else if (dataNumber == 5) {
Serial.println("Received tilt forward command");
analogWrite(5, 1023);
digitalWrite(0, LOW);
delay(300);
analogWrite(5,0);
}
newData = false;
}
}
@davidfurey
Copy link

In the photograph you can see 5 orange wires that I've added to the PCB where the RF board was. The one at the very left (marked on the PCB with a box around it) is ground. The other 4 are up, down, left and right. I can't remember the order, but you'll find out quickly once you try them.

You just need to connect the ground wire to the Raspberry PI's ground, and the other 4 wires to any 4 GPIO on the Raspberry PI. Then program the Raspberry PI to set those GPIO as outputs, and set the appropriate pin HIGH when you want the YT-260 to move.

@davidfurey
Copy link

I had some success with using PWM to control the speed, setting the GPIO high for 50ms every 0.5s to move slowly, 100ms every 0.5s for medium and 200ms every 0.5s for fast.

Sometimes the YT-260 sticks slightly though, and the 50ms pulse isn't enough to make it move at all.

@jay3702
Copy link

jay3702 commented Aug 5, 2021

Thanks for the inspiration! I bought a YT-1000 from AliExpress for $70 because I needed the 1kg capacity for my project. It uses a completely different logic board than the one in the YT-260, but it also uses DC motors and separate H bridge controllers for each motor. The controllers are surface-mount CMOS chips (TC118SS), so that makes modifications a delicate operation! I chose to desolder the input pins and then bend them up so that I could wire them (and the pads) to a small board containing a quad CMOS OR gate (CD4071B). The OR gates allows me to control the base with an external controller (I'm using a Raspberry Pi 4) as well as the RF remote. There's a convenient empty spot in the bottom of the case for the board.

@MarkMLl
Copy link

MarkMLl commented Aug 24, 2021

It's probably worth cross-referencing https://hackaday.io/project/175096-hacking-yt-500-pan-tilt-head-radio-remote

I'm planning to grab one of these to sit under the 5MPx camera that monitors my 3D printer, and now that this gist has illustrated how easy it is to break into the motor control I might investigate putting something like a Teensy inside so that pan/tilt could look like an HID device.

@jkoenig72
Copy link

jkoenig72 commented Jan 20, 2023

Thanks for the inspiration! I bought a YT-1000 from AliExpress for $70 because I needed the 1kg capacity for my project. It uses a completely different logic board than the one in the YT-260, but it also uses DC motors and separate H bridge controllers for each motor. The controllers are surface-mount CMOS chips (TC118SS), so that makes modifications a delicate operation! I chose to desolder the input pins and then bend them up so that I could wire them (and the pads) to a small board containing a quad CMOS OR gate (CD4071B). The OR gates allows me to control the base with an external controller (I'm using a Raspberry Pi 4) as well as the RF remote. There's a convenient empty spot in the bottom of the case for the board.

Can you share a bit more details here? I got one of those as well and want to control via esphome. Thanks!

@jay3702
Copy link

jay3702 commented Jan 20, 2023

Here's the schematic of the whole project. The wiring for the base is in the lower right. I desoldered two pins on each of the motor controller chips so that I could insert the OR gates. They aren't really necessary, I included them so that the buttons on the base and the remote would still work. If you don't care about that functionality, just connect your external controller directly to the motor controller pins after desoldering them and bending them up. Alternatively, you could find a place to cut the traces from the onboard controller to the motor controller chips then wire directly to the motor controller pins without desoldering. Sorry, I don't have any photos.
Camera Project

@jkoenig72
Copy link

jkoenig72 commented Jan 20, 2023

Thanks. This will do it. Excellent.

@jay3702
Copy link

jay3702 commented Jan 20, 2023

I forgot to mention the power switch. I used a germanium diode so that there would be no chance for the power switch on the base to damage the PIO driver on the Pi. Also, the 10k resistors are to prevent unintended activation and/or ESD damage.

@jkoenig72
Copy link

jkoenig72 commented Jan 21, 2023 via email

@jay3702
Copy link

jay3702 commented Jan 21, 2023

Yep, that's the way I would do it now. I found this one not long after fully committing to the hardware-hacking approach: https://hackaday.io/project/175096-hacking-yt-500-pan-tilt-head-radio-remote/details

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment