mirror of
https://github.com/daniviga/bite.git
synced 2024-11-26 14:56:13 +01:00
Merge remote-tracking branch 'origin/master' into podman
This commit is contained in:
commit
1d30398d95
|
@ -30,8 +30,10 @@ const byte mac[] = {
|
|||
const char serial[] = SERIAL;
|
||||
|
||||
struct netConfig {
|
||||
IPAddress address = REMOTE_IP;
|
||||
unsigned int port = REMOTE_PORT;
|
||||
IPAddress iot_address = IOT_IP;
|
||||
unsigned int iot_port = IOT_PORT;
|
||||
IPAddress ntp_address = NTP_IP;
|
||||
unsigned int ntp_port = NTP_PORT;
|
||||
} config;
|
||||
|
||||
void setup() {
|
||||
|
|
|
@ -19,5 +19,7 @@
|
|||
*/
|
||||
|
||||
#define SERIAL "uno_1"
|
||||
#define REMOTE_IP {192, 168, 0, 1}
|
||||
#define REMOTE_PORT 80
|
||||
#define IOT_IP {192, 168, 10, 1}
|
||||
#define IOT_PORT 80
|
||||
#define NTP_IP {192, 168, 10, 1}
|
||||
#define NTP_PORT 123
|
||||
|
|
|
@ -31,8 +31,6 @@
|
|||
#define TELEMETRY_DELAY 10 // second between telemetry samples
|
||||
#define AREF_VOLTAGE 3.3 // set aref voltage to 3.3v instead of default 5v
|
||||
|
||||
char serial[9];
|
||||
|
||||
// const String serverName = "sensor.server.domain";
|
||||
const size_t capacity = 2 * JSON_OBJECT_SIZE(3) + JSON_OBJECT_SIZE(2) + 20;
|
||||
|
||||
|
@ -50,11 +48,13 @@ EthernetClient ethClient;
|
|||
PubSubClient clientMQTT(ethClient);
|
||||
|
||||
struct netConfig {
|
||||
IPAddress address;
|
||||
unsigned int port;
|
||||
};
|
||||
netConfig config;
|
||||
IPAddress iot_address;
|
||||
unsigned int iot_port;
|
||||
IPAddress ntp_address;
|
||||
unsigned int ntp_port; // not used
|
||||
} config;
|
||||
|
||||
char serial[9];
|
||||
const String apiURL = "/api/device/subscribe/";
|
||||
const String telemetryURL = "/telemetry/";
|
||||
|
||||
|
@ -89,15 +89,17 @@ void setup(void) {
|
|||
Serial.println(Ethernet.localIP());
|
||||
Serial.println();
|
||||
Serial.print("Connecting to: ");
|
||||
Serial.print(config.address);
|
||||
Serial.print(config.iot_address);
|
||||
Serial.print(":");
|
||||
Serial.print(config.port);
|
||||
Serial.print(config.iot_port);
|
||||
Serial.print(" every ");
|
||||
Serial.print(TELEMETRY_DELAY);
|
||||
Serial.println("s");
|
||||
|
||||
#if USE_INTERNAL_NTP
|
||||
timeClient.setPoolServerIP(config.address);
|
||||
Serial.print("Using NTP: ");
|
||||
Serial.println(config.ntp_address);
|
||||
timeClient.setPoolServerIP(config.ntp_address);
|
||||
#endif
|
||||
timeClient.begin();
|
||||
if (timeClient.update()) {
|
||||
|
@ -115,7 +117,7 @@ void setup(void) {
|
|||
// payload["id"] = serverName;
|
||||
|
||||
#if USE_MQTT
|
||||
clientMQTT.setServer(config.address, 1883);
|
||||
clientMQTT.setServer(config.iot_address, 1883);
|
||||
#endif
|
||||
}
|
||||
|
||||
|
@ -175,14 +177,14 @@ void publishData(const netConfig &mqtt, const DynamicJsonDocument &json) {
|
|||
#endif
|
||||
|
||||
void postData(const netConfig &postAPI, const String &URL, const DynamicJsonDocument &json) {
|
||||
if (ethClient.connect(postAPI.address, postAPI.port)) {
|
||||
if (ethClient.connect(postAPI.iot_address, postAPI.iot_port)) {
|
||||
ethClient.print("POST ");
|
||||
ethClient.print(URL);
|
||||
ethClient.println(" HTTP/1.1");
|
||||
ethClient.print("Host: ");
|
||||
ethClient.print(postAPI.address);
|
||||
ethClient.print(postAPI.iot_address);
|
||||
ethClient.print(":");
|
||||
ethClient.println(postAPI.port);
|
||||
ethClient.println(postAPI.iot_port);
|
||||
ethClient.println("Content-Type: application/json");
|
||||
ethClient.print("Content-Length: ");
|
||||
ethClient.println(measureJson(json));
|
||||
|
|
|
@ -31,8 +31,10 @@ const char* ssid = SECRET_SSID;
|
|||
const char* password = SECRET_PASSWORD;
|
||||
|
||||
struct netConfig {
|
||||
IPAddress address = REMOTE_IP;
|
||||
unsigned int port = REMOTE_PORT;
|
||||
IPAddress iot_address = IOT_IP;
|
||||
unsigned int iot_port = IOT_PORT;
|
||||
IPAddress ntp_address = NTP_IP;
|
||||
unsigned int ntp_port = NTP_PORT;
|
||||
} config;
|
||||
|
||||
void setup() {
|
||||
|
|
|
@ -19,7 +19,9 @@
|
|||
*/
|
||||
|
||||
#define SERIAL "<fillme>"
|
||||
#define REMOTE_IP {192, 168, 0, 1}
|
||||
#define REMOTE_PORT 80
|
||||
#define IOT_IP {192, 168, 10, 1}
|
||||
#define IOT_PORT 80
|
||||
#define NTP_IP {192, 168, 10, 1}
|
||||
#define NTP_PORT 123
|
||||
#define SECRET_SSID "<fillme>"
|
||||
#define SECRET_PASSWORD "<fillme>"
|
||||
|
|
|
@ -48,8 +48,10 @@ WiFiClient ethClient;
|
|||
PubSubClient clientMQTT(ethClient);
|
||||
|
||||
struct netConfig {
|
||||
IPAddress address;
|
||||
unsigned int port;
|
||||
IPAddress iot_address;
|
||||
unsigned int iot_port;
|
||||
IPAddress ntp_address;
|
||||
unsigned int ntp_port; // not used
|
||||
} config;
|
||||
|
||||
char* serial;
|
||||
|
@ -94,15 +96,17 @@ void setup(void) {
|
|||
Serial.println(WiFi.localIP());
|
||||
Serial.println();
|
||||
Serial.print("Connecting to: ");
|
||||
Serial.print(config.address.toString());
|
||||
Serial.print(config.iot_address.toString());
|
||||
Serial.print(":");
|
||||
Serial.print(config.port);
|
||||
Serial.print(config.iot_port);
|
||||
Serial.print(" every ");
|
||||
Serial.print(TELEMETRY_DELAY);
|
||||
Serial.println("s");
|
||||
|
||||
#if USE_INTERNAL_NTP
|
||||
timeClient.setPoolServerIP(config.address);
|
||||
Serial.print("Using NTP: ");
|
||||
Serial.println(config.ntp_address.toString());
|
||||
timeClient.setPoolServerIP(config.ntp_address);
|
||||
#endif
|
||||
timeClient.begin();
|
||||
if (timeClient.update()) {
|
||||
|
@ -120,7 +124,7 @@ void setup(void) {
|
|||
// payload["id"] = serverName;
|
||||
|
||||
#if USE_MQTT
|
||||
clientMQTT.setServer(config.address, 1883);
|
||||
clientMQTT.setServer(config.iot_address, 1883);
|
||||
#endif
|
||||
}
|
||||
|
||||
|
@ -172,14 +176,14 @@ void publishData(const netConfig &mqtt, const DynamicJsonDocument &json) {
|
|||
#endif
|
||||
|
||||
void postData(const netConfig &postAPI, const String &URL, const DynamicJsonDocument &json) {
|
||||
if (ethClient.connect(postAPI.address, postAPI.port)) {
|
||||
if (ethClient.connect(postAPI.iot_address, postAPI.iot_port)) {
|
||||
ethClient.print("POST ");
|
||||
ethClient.print(URL);
|
||||
ethClient.println(" HTTP/1.1");
|
||||
ethClient.print("Host: ");
|
||||
ethClient.print(postAPI.address.toString());
|
||||
ethClient.print(postAPI.iot_address.toString());
|
||||
ethClient.print(":");
|
||||
ethClient.println(postAPI.port);
|
||||
ethClient.println(postAPI.iot_port);
|
||||
ethClient.println("Content-Type: application/json");
|
||||
ethClient.print("Content-Length: ");
|
||||
ethClient.println(measureJson(json));
|
||||
|
|
Loading…
Reference in New Issue
Block a user