Respekt für die harte handbuchlose Tour!

Dein Programm möchte wohl in etwa so aussehen:

Code:
$regfile = "m32def.dat"  
$crystal = 16000000      
$baud = 9600    
$hwstack = 32
$framesize = 32
$swstack = 32 
 
Config Servos = 1 , Servo1 = PORTA.7 , Reload = 10 

Config PORTA = Output 
 
Enable Interrupts 

Do
 
  Servo(1) = 100
  Wait 1
  Servo(1) = 150
  Wait 1
  Servo(1) = 200
  Wait 1

Loop

End
Ohne Gewähr!