Search found 1594 matches

by Basicmicro Support
Wed Aug 31, 2016 9:15 am
Forum: General Discussion
Topic: USB does not appear on WIndows 10
Replies: 5
Views: 13350

Re: USB does not appear on WIndows 10

Thanks for the update. Just so everyone is clear you must power the Roboclaw directly when using USB. The Roboclaw does not take power from the USB port.
by Basicmicro Support
Wed Aug 31, 2016 9:14 am
Forum: General Discussion
Topic: ROS Driver problems and modifications
Replies: 11
Views: 14203

Re: Roboclaw takes too long to execute movement commands / packet serial over USB

Since we didnt write the ROS lirbary(it was provided free by an end user that uses it in his own projects) I dont know too much about the guts of it. However I'll do what I can. First make sure you have the latest firmware. Also please describe in detail what you are doing in ROS that accesses the r...
by Basicmicro Support
Wed Aug 31, 2016 9:09 am
Forum: General Discussion
Topic: The error led lit when setting mode to packet serial
Replies: 3
Views: 5470

Re: The error led lit when setting mode to packet serial

Note, you can swap the button functions(Lipo and Mode) using IonMotion(its a check box in General Settings). Apparently yours was not set when it was tested before packaging the board. Also note, that the 4.1.19 firmware(Available in the IonMotion QA software) changes the default button layout on th...
by Basicmicro Support
Wed Aug 31, 2016 9:06 am
Forum: General Discussion
Topic: Powering RoboClaw from boost converter
Replies: 3
Views: 5725

Re: Powering RoboClaw from boost converter

DC motors are usually safe to run at +-50% their rated voltage(too low and you pull too much current which can over heat the motor and too high you can damage the brushes). As suggested in your stackexchange message I would just run the batteries in series instead of parallel, even at full charge th...
by Basicmicro Support
Tue Aug 30, 2016 9:49 am
Forum: General Discussion
Topic: VB.Net sample code for USB RoboClaw 2x15A Motor Controller
Replies: 2
Views: 4393

Re: VB.Net sample code for USB RoboClaw 2x15A Motor Controller

We currently dont have C# ot VB/Net samples. However we will be working on some C# samples that show how to use the roboclaw .Net library in about 2 weeks.
by Basicmicro Support
Wed Aug 24, 2016 9:13 am
Forum: General Discussion
Topic: The error led lit when setting mode to packet serial
Replies: 3
Views: 5470

Re: The error led lit when setting mode to packet serial

Ion Motion will tell you exactly what the error state is. Solid error led usually indiactes a warning(over/under voltagage or over current. My guess is when you set the packet serial mode you may have accidentally changed the battery setting instead. You can reset the board settings(which also reset...
by Basicmicro Support
Wed Aug 17, 2016 5:32 pm
Forum: Velocity and Position Control
Topic: Waiting for buffer/motors to arrive at destination
Replies: 2
Views: 5577

Re: Waiting for buffer/motors to arrive at destination

The buffer value will be 0x80 if the motors are idle. Other wise the number returned is how many commands are buffered waiting to run(eg 1 means there is one command waiting to run when the current command finished, 0 means the last command in the buffer for that motor is still running and 0x80 mean...
by Basicmicro Support
Wed Aug 17, 2016 8:32 am
Forum: Velocity and Position Control
Topic: Mixing position and speed/distance commands
Replies: 4
Views: 7465

Re: Mixing position and speed/distance commands

1. Yes. If the motors are holding position(already stoped) using the Duty cycle command with 0 will stop the PWM to the motors. 2. When executing a Position command a new position command can take over immediately if you set the buffer flag for that command(1 execute immediately, 0 execute when the ...
by Basicmicro Support
Tue Aug 16, 2016 11:03 am
Forum: General Discussion
Topic: Looking for C# sample
Replies: 6
Views: 8375

Re: Looking for C# sample

I wont be able to dig into the library until near the end of this week but I will work up a simple example to initialize the library and run the motor(s). I may not have it ready till Monday though.
by Basicmicro Support
Tue Aug 16, 2016 11:01 am
Forum: Velocity and Position Control
Topic: Mixing position and speed/distance commands
Replies: 4
Views: 7465

Re: Mixing position and speed/distance commands

Position commands shouldnt be mixed together with other non-Position commands on the same motor. The position commands use an internal variable to keep track of the expected next position for accelerationa nd decceleration calculations. If you move the motor using something else(Speed or PWM command...