Hello!
I am having a little trouble getting started and was wondering if I could get a little pointer to what I am doing wrong
I downloaded the latest version of IDE from Basic Micro, and I connected my hardware in the picture
4.bp.blogspot.com/_M-vte_krHj0/S … 0_1011.JPG
and I ran the test code in IDE
’ Atom / SSC-32 Test
’ Configure the SSC-32 for 38.4k baud.
’ Note, a | means the line continues onto the next line.
’ Note, a ’ means the line is a comment, and will not be compiled.
servo0pw var word
movetime var word
servo0pw = 1000
movetime = 2500
start:
servo0pw = 1000
serout p8,i38400,"#0P",DEC servo0pw,“T”,DEC movetime,13]
pause 2500
servo0pw = 2000
serout p8,i38400,"#0P",DEC servo0pw,“T”,DEC movetime,13]
pause 2500
goto start
but with no result.
Any help would be appreciated!!
Thanks,
James