New to Spin
bboy8012
Posts: 153
I just recieved my propeller, and have read and completed all the labs, and journyed into the propeller manual as well. My questions are what language would this most resemble? I am a beginner in java and VC++. I am just looking for more tutorials, so I can start coding for more robotic types of projects. Also can anyone steer me on say how to convert this BS2 code into spin? All help is greatly appreciated, and thanks in advance!·
(Calibrate: DEBUG "Arming ESC...", CR DEBUG "Applying full brake", CR FOR counter = 1 TO 150 PULSOUT ESCpin, 1000 PAUSE 20 NEXT PAUSE 50 DEBUG "Applying full Throttle",CR FOR counter = 1 TO 150 PULSOUT ESCpin, 2200 PAUSE 20 NEXT PAUSE 50 DEBUG "Applying full brake", CR FOR counter = 1 TO 150 PULSOUT ESCpin, 1000 PAUSE 20 NEXT PAUSE 50 DEBUG "ESC READY!!", CR RETURN)
Comments
The reason for suggesting the BS2_Functions object was that it provides a lot of the functionality of PBasic, but is written in Spin as method calls.· Have a look through it.