pure crystal mqtt client
Add this to your application's shard.yml
:
dependencies:
mqtt_crystal:
github: liu-chong/mqtt_crystal
branch: master
require "mqtt_crystal"
# host, port, username, password or url
client = MqttCrystal::Client.new(url: "mqtt://iot.eclipse.org") # mqtt://user:[email protected]:1883
spawn {
999.times { |i|
sleep rand.seconds
client.publish("lccc/teeest/topiiic", "test #{i} payload xxxxyyyyyy")
}
}
client.get("lccc/teeest/#") { |t, m|
puts "#{t}, #{m}"
}
git clone https://github.com/liu-chong/mqtt_crystal.git
cd mqtt_crystal
crystal spec
- Fork it ( https://github.com/liu-chong/mqtt_crystal/fork )
- Create your feature branch (git checkout -b my-new-feature)
- Commit your changes (git commit -am 'Add some feature')
- Push to the branch (git push origin my-new-feature)
- Create a new Pull Request
- [liu-chong] Liu Chong - creator, maintainer