'this simple code drives a servo
' a complete help of Annex32 can be found here
' https://cicciocb.com/annex32help/V1.442/
DIRECTION = 2 : STEPS = 15
pin.mode DIRECTION, output 'dir
pin.mode STEPS, output 'step
current_position = 0
'buttons
BUT1 = 32 : BUT2 = 33 : BUT3 = 25 : BUT4 = 26
pin.mode BUT1, input,pullup
pin.mode BUT2, input,pullup
pin.mode BUT3, input,pullup
pin.mode BUT4, input,pullup

maxscroll.setup 8, 21
maxscroll.print "PRESS BUTT"
maxscroll.show 63, 5

pause 1000
interrupt BUT1, press1
interrupt BUT2, press2
interrupt BUT3, press3
interrupt BUT4, press4



wait

press1:
pulse_motor 0
return

press2:
pulse_motor 50
return

press3:
pulse_motor 100
return

press4:
pulse_motor 150
return

sub pulse_motor(pos)
  maxscroll.print "POS " + str$(pos)
  maxscroll.show 63,5
  local c, z, dir
  c = current_position - pos
  if (c > 100) then c=100-c
  if (c <-100) then c=-(c+100)
  if (c < 0) then dir=1 else dir=0
  pin(DIRECTION) = dir
  for z = 1 to abs(c)
    pin(STEPS) = 1
    pin(STEPS) = 0
    pause 10
  next z
  current_position = pos
end sub
esp:VIN
esp:GND.2
esp:D13
esp:D12
esp:D14
esp:D27
esp:D26
esp:D25
esp:D33
esp:D32
esp:D35
esp:D34
esp:VN
esp:VP
esp:EN
esp:3V3
esp:GND.1
esp:D15
esp:D2
esp:D4
esp:RX2
esp:TX2
esp:D5
esp:D18
esp:D19
esp:D21
esp:RX0
esp:TX0
esp:D22
esp:D23
matrix1:V+
matrix1:GND
matrix1:DIN
matrix1:CS
matrix1:CLK
matrix1:V+.2
matrix1:GND.2
matrix1:DOUT
matrix1:CS.2
matrix1:CLK.2
matrix2:V+
matrix2:GND
matrix2:DIN
matrix2:CS
matrix2:CLK
matrix2:V+.2
matrix2:GND.2
matrix2:DOUT
matrix2:CS.2
matrix2:CLK.2
A4988
drv1:ENABLE
drv1:MS1
drv1:MS2
drv1:MS3
drv1:RESET
drv1:SLEEP
drv1:STEP
drv1:DIR
drv1:GND.1
drv1:VDD
drv1:1B
drv1:1A
drv1:2A
drv1:2B
drv1:GND.2
drv1:VMOT
stepper1:A-
stepper1:A+
stepper1:B+
stepper1:B-
btn1:1.l
btn1:2.l
btn1:1.r
btn1:2.r
btn2:1.l
btn2:2.l
btn2:1.r
btn2:2.r
btn3:1.l
btn3:2.l
btn3:1.r
btn3:2.r
btn4:1.l
btn4:2.l
btn4:1.r
btn4:2.r