1 # AllWize - WIZE 2 MQTT Bridge
3 Listens to messages on the same channel, data rate and CF and
4 forwards them to an MQTT broker.
5 This example is meant to run on a Wemos D1 board (ESP8266).
7 Configuration: copy the `configuration.sample.h` file to `configuration.h` and
8 edit it to configure your WiFi network credentials and the MQTT broker data.
10 The payload format is very simple at the moment being just a comma separated list of values.
11 The topic is configured to be a placeholder with the node identification
12 (now using the message CI file) and an index for each value in the payload.
14 Always remember to connect the antenna before powering the board!
18 Copyright (C) 2018-2020 by AllWize ([http://allwize.io](http://allwize.io))
20 AllWize library is free software: you can redistribute it and/or modify
21 it under the terms of the GNU Lesser General Public License as published by
22 the Free Software Foundation, either version 3 of the License, or
23 (at your option) any later version.
25 AllWize library is distributed in the hope that it will be useful,
26 but WITHOUT ANY WARRANTY; without even the implied warranty of
27 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
28 GNU Lesser General Public License for more details.
30 You should have received a copy of the GNU Lesser General Public License
31 along with AllWize library. If not, see <http://www.gnu.org/licenses/>.