[마이크로비트] 노크 센서 활용 (아두이노 센서 활용)
마이크로 비트 자바 스크립트
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 | ontrol.onEvent(EventBusSource.MICROBIT_ID_IO_P2,EventBusValue.MICROBIT_PIN_EVT_FALL,function(){ Flag1=1 }) let Flag1=0 pins.setPull(DigitalPin.P2,PinPullMode.PullUp) pins.setEvents(DigitalPin.P2,PinEventType.Edge) Flag1=0 basic.showIcon(IconNames.Square) basic.pause(1000) basic.forever(function(){ if(Flag1){ basic.showIcon(IconNames.Heart) Flag1=0 basic.pause(1000) } else{ basic.showIcon(IconNames.No) } }) |
블록 코딩