Aaaand the B-robot EVO off-road version is here.
It has been easy to modify the original B-robot EVO adding new Off-road wheels (regular 83 mm diameter RC buggy wheels, quite easy to get and inexpensive). If you already have a B-robot, just modified the parameters indicated below in its code or upload this slightly modified CODE version to the Arduino: BROBOT OFFROAD
NOTE: We have used these NUTs to fix the wheels (working nicely so far)
PRODUCTS IN THE STORE
// NORMAL MODE PARAMETERS (MAXIMUN SETTINGS) // PRO MODE = MORE AGGRESSIVE (MAXIMUN SETTINGS) // Default control terms // Control gains for raiseup (the raiseup movement requiere special control parameters) Control your B-robot EVO with the NEW Google Play APP (Android devices)
#define MAX_THROTTLE 580
#define MAX_STEERING 150
#define MAX_TARGET_ANGLE 12
#define MAX_THROTTLE_PRO 850
#define MAX_STEERING_PRO 250
#define MAX_TARGET_ANGLE_PRO 30
#define KP 0.19
#define KD 28
#define KP_THROTTLE 0.07
#define KI_THROTTLE 0.04
#define KP_RAISEUP 0.16
#define KD_RAISEUP 44
#define KP_THROTTLE_RAISEUP 0 // No speed control on raiseup
#define KI_THROTTLE_RAISEUP 0.0Enjoy!
Leave a Reply
You must be logged in to post a comment.