Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
zankich committed Feb 4, 2014
1 parent 9f04c4d commit fc8ca57
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,8 +40,8 @@ func main() {
}

robot := gobot.Robot{
Connections: []interface{} { spheroAdaptor },
Devices: []interface{} { sphero },
Connections: []gobot.Connection{ spheroAdaptor },
Devices: []gobot.Device{ sphero },
Work: work,
}

Expand Down Expand Up @@ -70,10 +70,10 @@ func main() {
led.Name = "led"
led.Pin = "13"

connections := []interface{}{
connections := []gobot.Connection{
firmata,
}
devices := []interface{}{
devices := []gobot.Device{}{
led,
}

Expand Down

0 comments on commit fc8ca57

Please sign in to comment.