mqtt

package
v0.0.0-...-1595f01 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Nov 18, 2014 License: Apache-2.0 Imports: 2 Imported by: 0

README

Gobot for MQTT

Gobot (http://gobot.io/) is a library for robotics and physical computing using Go

This repository contains the Gobot adaptor for the MQTT machine to machine message broker (http://mqtt.org/).

Installing

  • Install running:
go get github.com/hybridgroup/gobot && go install github.com/hybridgroup/gobot/platforms/mqtt

Using

  • Before running the example, make sure you have an MQTT message broker running somewhere you can connect to
package main

import (
  "github.com/hybridgroup/gobot"
  "github.com/hybridgroup/gobot/platforms/mqtt"
  "fmt"
  "time"
)

func main() {
  gbot := gobot.NewGobot()

  mqttAdaptor := mqtt.NewMqttAdaptor("server", "tcp://0.0.0.0:1883", "pinger")

  work := func() {
    mqttAdaptor.On("hello", func(data []byte) {
      fmt.Println("hello")
    })
    mqttAdaptor.On("hola", func(data []byte) {
      fmt.Println("hola")
    })
    data := []byte("o")
    gobot.Every(1*time.Second, func() {
      mqttAdaptor.Publish("hello", data)
    })
    gobot.Every(5*time.Second, func() {
      mqttAdaptor.Publish("hola", data)
    })
  }

  robot := gobot.NewRobot("mqttBot",
    []gobot.Connection{mqttAdaptor},
    work,
  )

  gbot.AddRobot(robot)

  gbot.Start()
}

Supported Features

  • Publish messages
  • Respond to incoming message events

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 <new_head_branch>”
  • 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-2014 The Hybrid Group. Licensed under the Apache 2.0 license.

Documentation

Overview

Package mqtt provides Gobot adaptor for the mqtt message service.

Installing:

go get github.com/hybridgroup/gobot/platforms/mqtt

For further information refer to mqtt README: https://github.com/hybridgroup/gobot/blob/master/platforms/mqtt/README.md

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type MqttAdaptor

type MqttAdaptor struct {
	gobot.Adaptor
	Host string
	// contains filtered or unexported fields
}

func NewMqttAdaptor

func NewMqttAdaptor(name string, host string, clientID string) *MqttAdaptor

NewMqttAdaptor creates a new mqtt adaptor with specified name, host and client id

func (*MqttAdaptor) Connect

func (a *MqttAdaptor) Connect() bool

Connect returns true if connection to mqtt is established

func (*MqttAdaptor) Disconnect

func (a *MqttAdaptor) Disconnect() bool

Disconnect returns true if connection to mqtt is closed

func (*MqttAdaptor) Finalize

func (a *MqttAdaptor) Finalize() bool

Finalize returns true if connection to mqtt is finalized succesfully

func (*MqttAdaptor) On

func (a *MqttAdaptor) On(event string, f func(s []byte)) bool

Subscribe to a topic, and then call the message handler function when data is received

func (*MqttAdaptor) Publish

func (a *MqttAdaptor) Publish(topic string, message []byte) bool

Publish a message under a specific topic

func (*MqttAdaptor) Reconnect

func (a *MqttAdaptor) Reconnect() bool

Reconnect retries connection to mqtt. Returns true if successful

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL