Index

Pebble


This repository contains the Gobot adaptor for Pebble smart watch.

It uses the Pebble 2.0 SDK, and requires the 2.0 iOS or Android app, and that the "watchbot" app has been installed on the Pebble watch.

API Reference

How to Install

go get -d -u gobot.io/x/gobot/...
  • Install Pebble 2.0 iOS or Android app. (If you haven't already)
  • Follow README to install and configure "watchbot" on your watch: https://gobot.io/x/watchbot

How to Use

Before running the example, make sure configuration settings match with your program. In the example, api host is your computer IP, robot name is 'pebble' and robot api port is 8080

package main

import (
        "fmt"

        "gobot.io/x/gobot"
        "gobot.io/x/gobot/api"
        "gobot.io/x/gobot/platforms/pebble"
)

func main() {
        master := gobot.NewMaster()
        api.NewAPI(master).Start()

        pebbleAdaptor := pebble.NewAdaptor()
        watch := pebble.NewDriver(pebbleAdaptor)

        work := func() {
                watch.SendNotification("Hello Pebble!")
                watch.On(watch.Event("button"), func(data interface{}) {
                        fmt.Println("Button pushed: " + data.(string))
                })

                watch.On(watch.Event("tap"), func(data interface{}) {
                        fmt.Println("Tap event detected")
                })
        }

        robot := gobot.NewRobot("pebble",
                []gobot.Connection{pebbleAdaptor},
                []gobot.Device{watch},
                work,
        )

        master.AddRobot(robot)

        master.Start()
}

Supported Features

  • We support event detection of 3 main pebble buttons.
  • Accelerometer events
  • Pushing data to pebble watch

Documentation

We're busy adding documentation to our web site at http://gobot.io/ please check there as we continue to work on Gobot

Thank you!

Contributing

  • All patches must be provided under the Apache 2.0 License
  • Please use the -s option in git to "sign off" that the commit is your work and you are providing it under the Apache 2.0 License
  • Submit a Github Pull Request to the appropriate branch and ideally discuss the changes with us in IRC.
  • We will look at the patch, test it out, and give you feedback.
  • Avoid doing minor whitespace changes, renamings, etc. along with merged content. These will be done by the maintainers from time to time but they can complicate merges and should be done seperately.
  • Take care to maintain the existing coding style.
  • Add unit tests for any new or changed functionality
  • All pull requests should be "fast forward"
  • If there are commits after yours use “git rebase -i
  • If you have local changes you may need to use “git stash”
  • For git help see progit which is an awesome (and free) book on git

License

Copyright (c) 2013-2018 The Hybrid Group. Licensed under the Apache 2.0 license.

Drivers

There is only one driver for the Pebble platform, as listed below.