2017-03-20 23:17:24 +01:00
# Connect
2017-09-07 22:42:08 +02:00
## ~avatar avatar
2017-03-20 23:17:24 +01:00
2017-11-20 22:41:35 +01:00
Remotely control your Milky Monster with another @boardname @
2017-03-20 23:17:24 +01:00
2017-09-07 22:42:08 +02:00
## ~
2017-03-20 23:17:24 +01:00
## Duration: ~30 minutes
2017-11-20 22:49:38 +01: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 22:41:35 +01: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 23:17:24 +01:00
```blocks
2018-10-16 00:32:09 +02:00
radio.onReceivedNumber(({ receivedNumber }) => {
2017-03-20 23:17:24 +01: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
```