2017-03-26 21:22:40 -07:00
# Connect
2017-09-07 13:42:08 -07:00
## ~avatar avatar
2017-03-26 21:22:40 -07:00
2017-03-27 11:19:08 -07:00
Remote control your Milk Carton Robot with another @boardname @
2017-03-26 21:22:40 -07:00
2017-09-07 13:42:08 -07:00
## ~
2017-03-26 21:22:40 -07:00
## Duration: ~30 minutes
2017-03-27 11:19:08 -07: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 13:26:26 -08: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-26 21:22:40 -07:00
```blocks
2018-10-15 15:32:09 -07:00
radio.onReceivedNumber(({ receivedNumber }) => {
2017-03-26 21:22:40 -07: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
```