-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnmea2mqtt.ino
185 lines (151 loc) · 4.34 KB
/
nmea2mqtt.ino
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
/* based on example code of the used libs
https://github.com/knolleary/pubsubclient/blob/master/examples/mqtt_esp8266/mqtt_esp8266.ino
https://github.com/mikalhart/TinyGPSPlus/blob/master/examples/FullExample/FullExample.ino
*/
#include <TinyGPS++.h>
#include <SoftwareSerial.h>
#include <ESP8266WiFi.h>
#include <PubSubClient.h>
#define strcpyDef(var, def) if (def != NULL) { strcpy(var, def); }
// The TinyGPS++ object
TinyGPSPlus gps;
// **** CONFIG SECTION BEGIN
// ****Variables
// configure your credentials and server in
#include "wificredentials.h";
static const int RXPin = 4, TXPin = 3;
static const uint32_t GPSBaud = 4800;
// **** custom messages you are interested in, need to be handled in loop
TinyGPSCustom WindDirection(gps, "WIMWV", 1);
TinyGPSCustom WindSpeed(gps, "WIMWV", 3);
// **** CONFIG SECTION END
// credentials from wificredentials
char wlanssid[] = MY_WLANSSID;
char wlanpwd[] = MY_WLANPWD;
char mqtt_server[] = MY_MQTT_SERVER;
// The serial connection to the GPS device
SoftwareSerial ss(RXPin, TXPin);
String clientName;
WiFiClient wifiClient;
//long lastpsmsg = 0;
char psmsg[50];
//float psvalue = 0;
// incoming messages
void callback(char* topic, byte* payload, unsigned int length) {
/*
// no handling of incoming messages yet
Serial.print("Message arrived [");
Serial.print(topic);
Serial.print("] ");
for (int i = 0; i < length; i++) {
Serial.print((char)payload[i]);
}
Serial.println();
// Switch on the LED if an 1 was received as first character
if ((char)payload[0] == '1') {
digitalWrite(BUILTIN_LED, LOW); // Turn the LED on (Note that LOW is the voltage level
// but actually the LED is on; this is because
// it is acive low on the ESP-01)
} else {
digitalWrite(BUILTIN_LED, HIGH); // Turn the LED off by making the voltage HIGH
}
*/
}
PubSubClient psclient(mqtt_server, 1883, callback, wifiClient);
void setup()
{
// Initialize the BUILTIN_LED pin as an output
pinMode(BUILTIN_LED, OUTPUT);
// init builtin Serial (USB2serial)
Serial.begin(115200);
delay(10);
// init NMEA (soft) serial
ss.begin(GPSBaud);
delay(10);
clientName = "esp8266-";
clientName += String(ESP.getChipId());
Serial.println(F("NMEA2MQTT, passing on sentences via (USB2)serial"));
Serial.println(clientName);
// init Wifi
setup_wifi();
psclient.setServer(mqtt_server, 1883);
psclient.setCallback(callback);
}
void loop()
{
String topic;
String topicbase = "nmea2mqtt/";
topicbase += clientName;
topicbase += "/";
if (!psclient.connected()) {
reconnect();
}
smartDelay(50);
topic=topicbase+String("debug");
psclient.publish(topic.c_str(), "loop");
psclient.loop();
if (WindDirection.isUpdated()){
topic=topicbase+String("winddirection");
psclient.publish(topic.c_str(), WindDirection.value());
}
}
void setup_wifi() {
delay(10);
// We start by connecting to a WiFi network
Serial.println();
Serial.print("Connecting to ");
Serial.println(wlanssid);
WiFi.begin(wlanssid, wlanpwd);
while (WiFi.status() != WL_CONNECTED) {
delay(500);
Serial.print(".");
}
randomSeed(micros());
Serial.println("");
Serial.println("WiFi connected");
Serial.println("IP address: ");
Serial.println(WiFi.localIP());
}
void reconnect() {
// Loop until we're reconnected
while (!psclient.connected()) {
Serial.print("Attempting MQTT connection...");
// Create a random client ID
String clientId = "ESP8266Client-";
clientId += String(random(0xffff), HEX);
// Attempt to connect
if (psclient.connect(clientId.c_str())) {
Serial.println("connected");
// Once connected, publish an announcement...
psclient.publish("outTopic", "hello world");
// ... and resubscribe
psclient.subscribe("inTopic");
} else {
Serial.print("failed, rc=");
Serial.print(psclient.state());
Serial.println(" try again in 5 seconds");
// Wait before retrying
smartDelay(500);
}
}
}
// This custom version of delay() ensures that the gps object
// is being "fed".
static void smartDelay(unsigned long ms)
{
unsigned long start = millis();
do
{
while (ss.available())
gps.encode(ss.read());
} while (millis() - start < ms);
}
/*
static void publishMsg(topic, str)
{
int slen = strlen(str);
for (int i=0; i<len; ++i)
Serial.print(i<slen ? str[i] : ' ');
smartDelay(0);
}
*/