Go to advanced search

by Neid
Sat Apr 25, 2020 6:20 pm
Forum: Troubleshooting
Topic: Problem with serial communication through USB
Replies: 8
Views: 259

Re: Problem with serial communication through USB

Looking at the logo, it's from RTRobot. Current Linux software - including manual and Raspberry Pi code - seems to live here: http://www.rtrobot.org/software/ You want Servo Controller X64 for Linux. It's a big/slow download, and there are some precompiled things in there that might not be the best...
by Neid
Sat Apr 25, 2020 5:22 pm
Forum: Troubleshooting
Topic: Problem with serial communication through USB
Replies: 8
Views: 259

Re: Problem with serial communication through USB

Link to the board https://pl.aliexpress.com/item/32272674301.html?spm=a2g0s.9042311.0.0.27425c0f7dISrt Do you have a link to the datasheet for the board ? Sadly no. The closest thing to that board is video that i found https://www.youtube.com/watch?v=4YMroxH_Oio&list=LL-ccL5ZcTW9SseXMNaS78Fw&index=...
by Neid
Sat Apr 25, 2020 4:10 pm
Forum: Troubleshooting
Topic: Problem with serial communication through USB
Replies: 8
Views: 259

Re: Problem with serial communication through USB

There's this very old thread about SSC-32 control where it turns out that the board needs \r instead of \n to accept a command: Controlling SSC-32 servo controler board with RPi - Raspberry Pi Forums . Have you tried that? Although you're writing, not reading, serial.Serial should set a timeout to ...
by Neid
Sat Apr 25, 2020 12:02 pm
Forum: Troubleshooting
Topic: Problem with serial communication through USB
Replies: 8
Views: 259

Re: Problem with serial connection through USB

I'm trying to send commands from raspberry pi 3b+ to 32 CH servo control board with serial communication through USB. import serial import time ser = serial.Serial('/dev/ttyACM0', baudrate=115200, parity=serial.PARITY_NONE, stopbits=serial.STOPBITS_ONE, bytesize=serial.EIGHTBITS ) while True: ser.w...
by Neid
Sat Apr 25, 2020 10:46 am
Forum: Troubleshooting
Topic: Problem with serial communication through USB
Replies: 8
Views: 259

Problem with serial communication through USB

I'm trying to send commands from raspberry pi 3b+ to 32 CH servo control board with serial communication through USB. import serial import time ser = serial.Serial('/dev/ttyACM0', baudrate=115200, parity=serial.PARITY_NONE, stopbits=serial.STOPBITS_ONE, bytesize=serial.EIGHTBITS ) while True: ser.wr...
by Neid
Tue Apr 21, 2020 5:23 pm
Forum: Troubleshooting
Topic: Problem with serial communication through usb
Replies: 0
Views: 59

Problem with serial communication through usb

Hello, I'm working on hexapod which will be controlled by raspberry pi 3B+ and 32 CH servo controller (https://pl.aliexpress.com/item/32272674301.html?spm=a2g0s.9042311.0.0.27425c0f8mKzsW). I'd like to use serial communication via usb (servo controller is powered up from raspberry pi but motors have...

Go to advanced search