mirror of
https://github.com/UtilitechAS/amsreader-firmware.git
synced 2026-01-28 13:08:57 +00:00
64 lines
1.6 KiB
C
64 lines
1.6 KiB
C
#define WIFI_CONNECTION_TIMEOUT 30000;
|
|
|
|
|
|
#if defined(ESP8266)
|
|
#include <ESP8266WiFi.h>
|
|
#elif defined(ESP32)
|
|
#include <WiFi.h>
|
|
#endif
|
|
|
|
// Build settings for custom hardware by Roar Fredriksen
|
|
#if HW_ROARFRED
|
|
#define LED_PIN 2 // The blue on-board LED of the ESP8266 custom AMS board
|
|
#define LED_ACTIVE_HIGH 0
|
|
#define AP_BUTTON_PIN 0
|
|
|
|
#include <DallasTemperature.h>
|
|
#include <OneWire.h>
|
|
#define TEMP_SENSOR_PIN 5 // Temperature sensor connected to GPIO5
|
|
|
|
HardwareSerial *hanSerial = &Serial;
|
|
|
|
// Build settings for Wemos Lolin D32
|
|
#elif defined(ARDUINO_LOLIN_D32)
|
|
#define LED_PIN 5
|
|
#define LED_ACTIVE_HIGH 0
|
|
#define AP_BUTTON_PIN INVALID_BUTTON_PIN
|
|
|
|
#define SOFTWARE_SERIAL 1
|
|
#include <SoftwareSerial.h>
|
|
SoftwareSerial *hanSerial = new SoftwareSerial(GPIO_NUM_21);
|
|
|
|
// Build settings for Wemos D1 mini
|
|
#elif defined(ARDUINO_ESP8266_WEMOS_D1MINI)
|
|
#define LED_PIN LED_BUILTIN
|
|
#define LED_ACTIVE_HIGH 0
|
|
#define AP_BUTTON_PIN INVALID_BUTTON_PIN
|
|
|
|
#define SOFTWARE_SERIAL 1
|
|
#include <SoftwareSerial.h>
|
|
SoftwareSerial *hanSerial = new SoftwareSerial(D1);
|
|
|
|
// Build settings for Adafruit Feather ESP32
|
|
#elif defined(ARDUINO_FEATHER_ESP32)
|
|
#define LED_PIN LED_BUILTIN
|
|
#define LED_ACTIVE_HIGH 1
|
|
#define AP_BUTTON_PIN INVALID_BUTTON_PIN
|
|
|
|
HardwareSerial *hanSerial = &Serial;
|
|
|
|
// Default build settings
|
|
#else
|
|
#define LED_PIN 2
|
|
#define LED_ACTIVE_HIGH 0
|
|
#define AP_BUTTON_PIN INVALID_BUTTON_PIN
|
|
#define SOFTWARE_SERIAL 1
|
|
#include <SoftwareSerial.h>
|
|
SoftwareSerial *hanSerial = new SoftwareSerial(5);
|
|
#endif
|
|
|
|
|
|
#if defined TEMP_SENSOR_PIN
|
|
OneWire oneWire(TEMP_SENSOR_PIN);
|
|
DallasTemperature tempSensor(&oneWire);
|
|
#endif |