2017-03-20 15:17:24 -07:00
# Connect
2017-09-07 13:42:08 -07:00
## ~avatar avatar
2017-03-20 15:17:24 -07:00
2017-11-20 13:41:35 -08:00
Remotely control your Milky Monster with another @boardname @
2017-03-20 15:17:24 -07:00
2017-09-07 13:42:08 -07:00
## ~
2017-03-20 15:17:24 -07:00
## Duration: ~30 minutes
2017-11-20 13:49:38 -08:00
You will need a second @boardname @ for this part. By using the radio, we can control the Milky Monster with another @boardname @.
2017-11-20 13:41:35 -08:00
Download the code below to the @boardname @ that's on the Milky Monster and again to another "controller" @boardname @. Whenever button **A** is pressed, the Milky Monster will move one time.
2017-03-20 15:17:24 -07:00
```blocks
2018-10-15 15:32:09 -07:00
radio.onReceivedNumber(({ receivedNumber }) => {
2017-03-20 15:17:24 -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
```