I have got Lynxmotion A-Pod robot , Finally I’ve done form assembling and calibration robot
Just yesterday I installed the updated Psx2 library to Arduino IDE library folder , uploaded the Psx2 to Bot Boarduino , so far every thing going fine so far .
Then I’ve downloaded the ( 3DOF-4DOF-Hex-master.zip) from get GitHub , after that I moved the folder to Arduino Library folder same as i did to Psx2 file .
Then The folder name (3 DoF Ready ) which is inside the BotBoarduino folder , I’ve changed the folder name from (3 DoF Ready ) to ( (BotBoarduino_CH3R_PS2 )
Then i opened Ardiono IDE software , then upload the (BotBoarduino_CH3R_PS2 ) to my Bot Borduino , uploaded successfully.
Turned on my ps2 controller , then i pressed start , when i click any button i can hear the (peep ) sound , But the problem that the robot is not moving
Can you Please tell me if i did any mistake in uploading files process or in wires connections ???
Note : I changed the Ps2 receiver connections which are ( Data, CMD, ATT, CLK ,5v,GND) to pins number ( 10,11,12,13) in Bot Boarduino and Pin 8 ( red wire ) in Bot Boarduino goes to RX in SSC32u , Pin 9 ( yellow and Black wires ) goes to ( TX and G ) in SSC32u .
pin 8 ( red wire to RX in .
And modify these Pins in ( Hex_Cfg.h ) file
//--------------------------------------------------------------------
//[Botboarduino Pin Numbers]
#ifdef BOTBOARDUINO
#define SOUND_PIN 5 // Botboarduino JR pin number
#define PS2_DAT 10
#define PS2_CMD 11
#define PS2_SEL 12 // On the PS2 receiver this pin may be called ATT (attention)
#define PS2_CLK 13
// If we are using a SSC-32 then:
// If were are running on an Arduino Mega we will use one of the hardware serial port, default to Serial1 above.
// If on Non mega, if the IO pins are set to 0, we will overload the hardware Serial port
// Else we will user SoftwareSerial to talk to the SSC-32
#define cSSC_OUT 8 //Output pin for Botboard - Input of SSC32 (Yellow)
#define cSSC_IN 9 //Input pin for Botboard - Output of SSC32 (Blue)
#endif
#ifdef BOTBOARD_ARDUINOPROMINI
#define SOUND_PIN 11 // Bot Board JR pin number (with Arduino Pro Mini plugged)
#define PS2_DAT 14
#define PS2_CMD 15
#define PS2_SEL 16
#define PS2_CLK 17