This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/python | |
| # | |
| # MangroveMike | |
| # | |
| # Read the local MQTT channels and publish to my COSM channels | |
| # | |
| # | |
| # Based upon great code from: | |
| # Andy Piper |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/python | |
| # | |
| # MangroveMike (www.merewether.com.au) | |
| # | |
| # Get tides, moonrise, moonset, sunrise and sut set from XTIDE and publish to local MQTT server. | |
| # We publish when the actual event occurs to the /now/ topic and the next 6 hours worth of activity to the /future/ topic. | |
| # | |
| # 10/12/2012 Initially created. | |
| # | |
| # |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /* | |
| Beaufort Scale LED Display | |
| This is a Beaufort Scale LED display using MQTT Server to determine wind speed. It is written to use | |
| the Wind Speed data collected from my weather station but can be adapted to any other MQTT | |
| service (even COSM data). | |
| It uses a very basic RGB 'blink-em' arduino config. | |
| Thanks to Toby Jaffey and Nick O'Leary for mqtt libraries and tutorials and to Andy Piper and |