Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- function Encoder(Cnt:number) {
- let x = 0
- while (x < Cnt) {
- while (pins.digitalReadPin(DigitalPin.P8) == 0) {}
- x = x + 1
- while (pins.digitalReadPin(DigitalPin.P8) == 1) {}
- x = x + 1
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment