2017-03-27 06:22:40 +02:00
# Connect
2017-09-07 22:42:08 +02:00
## ~avatar avatar
2017-03-27 06:22:40 +02:00
2017-03-27 20:19:08 +02:00
Remote control your Milk Carton Robot with another @boardname @
2017-03-27 06:22:40 +02:00
2017-09-07 22:42:08 +02:00
## ~
2017-03-27 06:22:40 +02:00
## Duration: ~30 minutes
2017-03-27 20:19:08 +02:00
You will need 2 @boardname @ for this part. By using the radio, we can make the Milk Carton Monster controlled by another @boardname @.
2018-11-20 22:26:26 +01:00
Download the code below to the @boardname @ on the Milk Carton Monster and another "controller" @boardname @. Whenever ``A`` is pressed, the Milk Carton Monster will move once.
2017-03-27 06:22:40 +02:00
```blocks
2018-10-16 00:32:09 +02:00
radio.onReceivedNumber(({ receivedNumber }) => {
2017-03-27 06:22:40 +02:00
pins.servoWritePin(AnalogPin.P0, 0)
basic.pause(500)
pins.servoWritePin(AnalogPin.P0, 180)
basic.pause(500)
})
input.onButtonPressed(Button.A, () => {
radio.sendNumber(0)
})
```
```package
radio
```