xArmServoController icon indicating copy to clipboard operation
xArmServoController copied to clipboard

LewanSoul-Lobot-HiWonder 6-DOF xArm servo controller libraries

Results 10 xArmServoController issues
Sort by recently updated
recently updated
newest added

This fixes #5 Specifically, `Controller.setPosition` has a new argument, `learm : bool`, which is by default False. When true, it uses the LeArm 6DoF joint limits for restricting joint positions....

I am using xarm to try and control my LeArm 6-DOF robotic arm via a USB connection. I am running on a Windows 10 machine and have pip installed the...

This PR does the following: - Adds the method `writeServoId` that writes a new servo ID to any connected servo - Adds the method `listServos` that lists any connected servos...

I followed the instruction to install necessary packages and I found that pip didn't work. Whenever I used pip3, it worked well.

when the script strips serial number from USB, it strip part of the serial number if it contains B like below >>> arm = xarm.Controller('USBMM32F103RB',debug=True) MM32F103R fix it the below...

![image](https://user-images.githubusercontent.com/94660324/186000469-a822eef0-7b07-4f22-9c9c-b9990b6804b1.png) i keep getting this problem and all attempts to fix it seem to just make more problems and when trying to do it the arduino way the arm would...

import xarm arm = xarm.Controller('USB') battery_voltage = arm.getBatteryVoltage() print('Battery voltage (volts):', battery_voltage)

I have a LeArm robot arm. Usually before programming with Arduino IDE I check the com port of the board. But it doesn't show up after connecting USB. Not sure...

OSError: open failed (.venv) rico@ricoadmin:~/hiwonder$ /home/rico/hiwonder/.venv/bin/python /home/rico/hiwonder/test.py Traceback (most recent call last): File "/home/rico/hiwonder/test.py", line 4, in arm = xarm.Controller('USB') File "/home/rico/hiwonder/.venv/lib/python3.10/site-packages/xarm/controller.py", line 25, in __init__ self._device.open(0x0483, 0x5750) File "hid.pyx",...

import xarm # arm is the first xArm detected which is connected to USB arm = xarm.Controller('USB') print('Battery voltage in volts:', arm.getBatteryVoltage()) --------------------------------------------------------------- I installed necessary modules as instructed but...