Skip to content
Snippets Groups Projects

Resend Data capabilities

Merged Zoe Pfister requested to merge 29-resending-of-data-if-network-connection-was-lost into develop
5 files
+ 107
1
Compare changes
  • Side-by-side
  • Inline
Files
5
//
// Created by zoe on 1/12/23.
//
#ifndef HOST_CENTRAL_MAST_DEFINITIONS_H
#define HOST_CENTRAL_MAST_DEFINITIONS_H
#include "Arduino.h"
#define uS_TO_S_FACTOR 1000000ULL // Conversion factor for micro seconds to seconds
#define TIME_TO_SLEEP 5 // Time ESP32 will go to sleep (in seconds)
#define UART_BAUD 115200
#define PIN_DTR 25
#define PIN_TX 27
#define PIN_RX 26
#define PWR_PIN 4
#define SD_MISO 2
#define SD_MOSI 15
#define SD_SCLK 14
#define SD_CS 13
#define LED_PIN 12
const String INFLUXDB_TOKEN =
"dUh2gbVLv7e3egqocxriDsJQNUacA9qZ5YXsYtdnVAglnHgy4nx-jDVO7nGlSF34BosfnuwnUDaviC7dQeC5RQ==";
#endif // HOST_CENTRAL_MAST_DEFINITIONS_H
Loading