Answers for "switch command picaxe"

0

switch command picaxe

init:	let b0 = 0

main:	if pinC.0 = 1 then add
	goto main

add:	pause 100 		; short delay
	let b0 = b0 + 1
	if b0 < 5 then main
	high B.1
	goto main
Posted by: Guest on May-04-2022

Browse Popular Code Answers by Language