[ble] Speed up Ollie example roll speed

Signed-off-by: deadprogram <ron@hybridgroup.com>
This commit is contained in:
deadprogram 2016-07-11 23:47:19 -06:00
parent c5f996c543
commit 5b29de3ff7
1 changed files with 1 additions and 1 deletions

View File

@ -17,7 +17,7 @@ func main() {
work := func() {
ollie.SetRGB(255, 0, 255)
gobot.Every(3*time.Second, func() {
ollie.Roll(30, uint16(gobot.Rand(360)))
ollie.Roll(40, uint16(gobot.Rand(360)))
})
}