Hi all I’m currently attempting to control a lynxmotion SSC - 32 with a picaxe 28/40 protoboard and a 40x1 chip.
So this is what I’ve cobbled together. I Used the Lynx sample code from the ssc users pdf and translated it to picaxe basic (ish) I think.
let w0 = 1000 

let w1 = 1500
let b4 = 5
start:

serout 2,N2400,("#",#b4, #w1, “T”, #w0,13)

pause 1500

w1 = 2000

serout 2,N2400,("#",#b4, #w1, “T”, #w0,13)
pause 2000

goto start
So…
Mmmm not working. Looks good but no servo action.
The SSC status indicator LED turns on at powerup and stays light 'til the picaxe is connected. At which point it goes out. Any subsequent comms are indicated with a quick blink.
Well, all seems good according to the LED. It’s steady,off/blinking when the picaxe is connected/disconnected (doing the right things) but there is no life from the servo.
I’m thinking the pic is doing the trick but…
A) the code isn’t making sense to the Atmel on the ssc
B) the servo’s on the wrong pin
I’m wondering…
A) servo’s connected to the wrong pin
B) What is the significance of 5 in (b4 = 5)? Is it the pinout?
C) How do I specify pin0 in ACSII?
Here is a link to my topic on the picaxe forum where axe people have had a think about the problem and have noted there ideas…