Hi,
The picture is kinda bad, but I guess that you talk about the yellow/black cable, thats the communication cable between the BotBoardII and the SSC-32 board. The receiver is connected as follow: black/white to ground, red to 5V… P12=brown, P13=orange, P14=yellow and P15=blue
I’m pretty sure that all the wires are correct, the green led on the receiver burns, and the red one flashes.
Think that If I would find someone with a PlayStation, it would be easy to tell if the receiver/controller is working at all…
only stupid that none of my friends has a Playstation
what are the chances 
but this is the code I’m reading now.
41 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255
FF 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255
41 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255
FF 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255
41 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255
FF 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255
41 255 255 255 255 255 255 255
And this code keeps generating with my controller on or of.
My program is the test program from Lynxmotion website::
;PS2 Controller / BotBoard II
DAT con P12
CMD con P13
SEL con P14
CLK con P15
;-----------------------------
index var byte
temp var byte(19)
mode var byte
Small_Motor var byte
Large_Motor var byte
;PS2Init
high CLK
low SEL
shiftout CMD,CLK,FASTLSBPRE,$1\8,$43\8,$0\8,$1\8,$0\8] ;CONFIG_MODE_ENTER
high SEL
pause 1
low SEL
shiftout CMD,CLK,FASTLSBPRE,$01\8,$44\8,$00\8,$01\8,$03\8,$00\8,$00\8,$00\8,$00\8] ;SET_MODE_AND_LOCK
high SEL
pause 100
low SEL
shiftout CMD,CLK,FASTLSBPRE,$01\8,$4F\8,$00\8,$FF\8,$FF\8,$03\8,$00\8,$00\8,$00\8] ;SET_DS2_NATIVE_MODE
high SEL
pause 1
low SEL
shiftout CMD,CLK,FASTLSBPRE,$01\8,$4D\8,$00\8,$00\8,$01\8,$FF\8,$FF\8,$FF\8,$FF\8] ;VIBRATION_ENABLE
high SEL
pause 1
low SEL
shiftout CMD,CLK,FASTLSBPRE,$01\8,$43\8,$00\8,$00\8,$5A\8,$5A\8,$5A\8,$5A\8,$5A\8] ;CONFIG_MODE_EXIT_DS2_NATIVE
high SEL
pause 1
low SEL
shiftout CMD,CLK,FASTLSBPRE,$01\8,$43\8,$00\8,$00\8,$00\8,$00\8,$00\8,$00\8,$00\8] ;CONFIG_MODE_EXIT
high SEL
pause 1
main
;-----------PS2 Mode----------
low SEL
; asking “mode” to PS2 controller
shiftout CMD,CLK,FASTLSBPRE,$1\8]
; reading “mode” from PS2 controller
; 73(hex) is dualshock1 (digital buttons)
; 79(hex) is dualshock2 (analog buttons)
shiftin DAT,CLK,FASTLSBPOST,[mode\8]
high SEL
;-----------------------------
pause 1
;-----------PS2 Data----------
low SEL
; asking data to PS2 controller
shiftout CMD,CLK,FASTLSBPRE,$1\8,$42\8]
; reading data from controller
; (don’t use a “for-next” loop, it’s too slow to read PS2 data)
shiftin DAT,CLK,FASTLSBPOST,[temp(0)\8,temp(1)\8,temp(2)\8,temp(3)\8,temp(4)\8,temp(5)\8,temp(6)\8,temp(7)\8,temp(8)\8, |
temp(9)\8,temp(10)\8,temp(11)\8,temp(12)\8,temp(13)\8,temp(14)\8,temp(15)\8,temp(16)\8,temp(17)\8,temp(18)\8]
high SEL
;-----------------------------
pause 1
;-----------------------------
;-----------Basic Micro IDE terminal----------
serout S_OUT,i57600,[13, hex2 mode\2] ; Basic Micro Pro IDE <= 08.0.1.7
for index = 1 to 18 ; temp(0) contains a dummy variable so we don’t send it to the PC
serout S_OUT,i57600," ", dec3 temp(index)\3] ; Basic Micro Pro IDE <= 08.0.1.7
next
;-----------------------------
goto main
Hope someone can help me out here. Maybe its a simple stupid mistake I make, but I don’t see it anymore…
THX