Commit fcd21a7e0e6b9b777030e0512764c3e0de0db249
Merge branch 'development' into 'master'
Development See merge request !4
Showing
2 changed files
with
24 additions
and
2 deletions
COPYING.MIT
0 → 100644
| 1 | +/* **************************************************************************** | |
| 2 | + * Copyright 2019 Open Systems Development BV * | |
| 3 | + * * | |
| 4 | + * Permission is hereby granted, free of charge, to any person obtaining a * | |
| 5 | + * copy of this software and associated documentation files (the "Software"), * | |
| 6 | + * to deal in the Software without restriction, including without limitation * | |
| 7 | + * the rights to use, copy, modify, merge, publish, distribute, sublicense, * | |
| 8 | + * and/or sell copies of the Software, and to permit persons to whom the * | |
| 9 | + * Software is furnished to do so, subject to the following conditions: * | |
| 10 | + * * | |
| 11 | + * The above copyright notice and this permission notice shall be included in * | |
| 12 | + * all copies or substantial portions of the Software. * | |
| 13 | + * * | |
| 14 | + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * | |
| 15 | + * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * | |
| 16 | + * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL * | |
| 17 | + * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * | |
| 18 | + * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING * | |
| 19 | + * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER * | |
| 20 | + * DEALINGS IN THE SOFTWARE. * | |
| 21 | + * ***************************************************************************/ | |
| 22 | + | ... | ... |
README.md
| ... | ... | @@ -28,7 +28,7 @@ Just check your package manager for the correct package-name. |
| 28 | 28 | $ mkdir build |
| 29 | 29 | $ cd build |
| 30 | 30 | $ cmake ../ |
| 31 | - $ gmake | |
| 31 | + $ gmake ( or make, depending on your platform ) | |
| 32 | 32 | ``` |
| 33 | 33 | And you're all set. In build/bin there are two examples, test_mqtt_pu and test_mqtt_sub. Have a broker running, |
| 34 | 34 | like mosquitto or flashmq capable of accepting anonymous connections. Start the "sub" part and couple of moments |
| ... | ... | @@ -152,4 +152,4 @@ void Subscriber::receive_data( const std::string &message_topic, const std::stri |
| 152 | 152 | } |
| 153 | 153 | ``` |
| 154 | 154 | |
| 155 | 155 | -Now it will be very easy to send and receive messages from a broker without the hassle of administration. |
| 156 | +Now it will be very easy to send and receive messages from a broker without the hassle of administration. | |
| 156 | 157 | \ No newline at end of file | ... | ... |