Iron man helmet using a AXE024

Jcdenton

New Member
Here is a bit of code that will allow you to control the 2 top servo's found in this video:

https://www.youtube.com/watch?v=4oEpHHu5Z18

Code:
init: 
servo 1,75
servo 2, 225
 
main:
if pin3 = 0 then goto main

Open:
servopos 1,225
servopos 2, 75
pause 3000


hold:
if pin3 = 0 then goto hold

servopos 1, 75
servopos 2, 225
pause 3000
goto main
 
Last edited:

MPep

Senior Member
Looks cool.
I never watched IronMan. Not my thing.
But at the end where you do the comparison, looks very impressive. Well done.

What PICAXE chip did you use?
 

Jcdenton

New Member
axe024 driver controller, i have also justr actually setup channel 4 to run the leds also. Ill update the code asap.
 
Top