Skip to content

Commit

Permalink
sprkplus: add custom collision default params
Browse files Browse the repository at this point in the history
Signed-off-by: deadprogram <[email protected]>
  • Loading branch information
deadprogram committed Oct 31, 2017
1 parent 6941810 commit 0263b9c
Show file tree
Hide file tree
Showing 3 changed files with 76 additions and 0 deletions.
46 changes: 46 additions & 0 deletions examples/sprkplus_collision.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
// +build example
//
// Do not build by default.

/*
How to run
Pass the Bluetooth address or name as the first param:
go run examples/bb8-collision.go BB-1234
NOTE: sudo is required to use BLE in Linux
*/

package main

import (
"fmt"
"os"

"gobot.io/x/gobot"
"gobot.io/x/gobot/platforms/ble"
"gobot.io/x/gobot/platforms/sphero/sprkplus"
)

func main() {
bleAdaptor := ble.NewClientAdaptor(os.Args[1])
ball := sprkplus.NewDriver(bleAdaptor)

work := func() {
ball.On("collision", func(data interface{}) {
fmt.Printf("collision detected = %+v \n", data)
ball.SetRGB(255, 0, 0)
})

ball.SetRGB(0, 255, 0)
ball.Roll(80, 0)
}

robot := gobot.NewRobot("sprkplus",
[]gobot.Connection{bleAdaptor},
[]gobot.Device{ball},
work,
)

robot.Start()
}
15 changes: 15 additions & 0 deletions platforms/sphero/bb8/bb8_packets.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
package bb8

import "gobot.io/x/gobot/platforms/sphero"

// DefaultCollisionConfig returns a CollisionConfig with sensible collision defaults
func DefaultCollisionConfig() sphero.CollisionConfig {
return sphero.CollisionConfig{
Method: 0x01,
Xt: 0x20,
Yt: 0x20,
Xs: 0x20,
Ys: 0x20,
Dead: 0x01,
}
}
15 changes: 15 additions & 0 deletions platforms/sphero/sprkplus/sprkplus_packets.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
package sprkplus

import "gobot.io/x/gobot/platforms/sphero"

// DefaultCollisionConfig returns a CollisionConfig with sensible collision defaults
func DefaultCollisionConfig() sphero.CollisionConfig {
return sphero.CollisionConfig{
Method: 0x01,
Xt: 0x20,
Yt: 0x20,
Xs: 0x20,
Ys: 0x20,
Dead: 0x01,
}
}

0 comments on commit 0263b9c

Please sign in to comment.