2017-01-05 19:00:36 +01:00
|
|
|
# Code
|
|
|
|
### @description code to make the inchworm alive
|
|
|
|
|
|
|
|
### ~avatar avatar
|
|
|
|
|
|
|
|
Add code to make the inchworm move.
|
|
|
|
|
|
|
|
### ~
|
|
|
|
|
2017-01-05 22:28:06 +01:00
|
|
|
## Duration: ~30 minutes
|
2017-01-05 19:00:36 +01:00
|
|
|
|
2017-01-05 22:30:14 +01:00
|
|
|
## Step 1: walk forever
|
2017-01-05 19:00:36 +01:00
|
|
|
|
|
|
|
In order for the inchworm to move, the @boardname@ needs to command the servo to go between ``0`` and ``180`` degrees
|
|
|
|
at a certain pace. In the code below, the user pressed button ``A`` to launch the inchworm.
|
|
|
|
|
|
|
|
```blocks
|
|
|
|
input.onButtonPressed(Button.A, () => {
|
2017-01-06 16:19:00 +01:00
|
|
|
pins.servoWritePin(AnalogPin.P0, 0);
|
|
|
|
basic.pause(500);
|
|
|
|
pins.servoWritePin(AnalogPin.P0, 180);
|
|
|
|
basic.pause(500);
|
2017-01-05 19:00:36 +01:00
|
|
|
});
|
2017-01-05 22:28:06 +01:00
|
|
|
```
|
2017-01-05 19:00:36 +01:00
|
|
|
|
|
|
|
### ~ hint
|
|
|
|
|
|
|
|
You may have noticed that the inchworm can be rather slow or simply won't move. Try to improve the design of your legs, teeth
|
|
|
|
so that the inchworm goes as fast as possible. Trying it on carpet also great helps avoiding skidding.
|
|
|
|
|
|
|
|
### ~
|
|
|
|
|
2017-01-05 22:30:14 +01:00
|
|
|
## Step 2: radio controlled inchworm
|
2017-01-05 19:00:36 +01:00
|
|
|
|
|
|
|
You will need 2 @boardname@ for this part. By using the radio, we can make the inchworm controlled by another @boardname@.
|
|
|
|
Download the code below to the @boardname@ on the inchworm and another "controller" @boardname@. Whenere A is pressed, the inchworm will move once.
|
|
|
|
|
|
|
|
```blocks
|
|
|
|
radio.onDataPacketReceived(({receivedNumber}) => {
|
|
|
|
pins.servoWritePin(AnalogPin.P0, 0)
|
|
|
|
basic.pause(500)
|
|
|
|
pins.servoWritePin(AnalogPin.P0, 180)
|
|
|
|
basic.pause(500)
|
|
|
|
})
|
|
|
|
input.onButtonPressed(Button.A, () => {
|
|
|
|
radio.sendNumber(0)
|
|
|
|
})
|
2017-01-06 16:19:00 +01:00
|
|
|
```
|
|
|
|
|
|
|
|
```package
|
|
|
|
radio
|
2017-01-05 19:00:36 +01:00
|
|
|
```
|