From c82a2a1d4b2c3312b2907742078d39d565316eaf Mon Sep 17 00:00:00 2001 From: Gunnar Skjold Date: Thu, 12 Dec 2019 19:32:20 +0100 Subject: [PATCH] Added adafruit esp32 feather as a target --- README.md | 5 +++-- hardware/{ => img}/feather_3010-00_mbus_slave.jpg | Bin platformio.ini | 9 +++++++++ 3 files changed, 12 insertions(+), 2 deletions(-) rename hardware/{ => img}/feather_3010-00_mbus_slave.jpg (100%) diff --git a/README.md b/README.md index 9198d8b3..973f8a61 100644 --- a/README.md +++ b/README.md @@ -7,8 +7,9 @@ This repository contains the code and schematics necessary to build a device to In the [Release section](https://github.com/gskjold/AmsToMqttBridge/releases) of this repository, you will find precompiled binaries for some common boards. -- _esp12e_ :: Compiled for a general ESP8266 board with 12E or 12F chip, ex NodeMCU board. -- _hw1esp12e_ :: Compiled for first version hardware with ESP 12E of 12F chip. +- _esp12e_ :: General ESP8266 board with 12E or 12F chip, ex NodeMCU board. +- _hw1esp12e_ :: First version hardware with ESP 12E of 12F chip. +- _featheresp32_ :: Adafruit ESP32 feather ### Flashing binaries with [esptool.py](https://github.com/espressif/esptool) diff --git a/hardware/feather_3010-00_mbus_slave.jpg b/hardware/img/feather_3010-00_mbus_slave.jpg similarity index 100% rename from hardware/feather_3010-00_mbus_slave.jpg rename to hardware/img/feather_3010-00_mbus_slave.jpg diff --git a/platformio.ini b/platformio.ini index 29dccc75..091c3d93 100755 --- a/platformio.ini +++ b/platformio.ini @@ -22,3 +22,12 @@ lib_deps = ${common.lib_deps} build_flags = -D HAS_DALLAS_TEMP_SENSOR=1 -D IS_CUSTOM_AMS_BOARD=1 + +[env:featheresp32] +platform = espressif32 +board = featheresp32 +framework = ${common.framework} +lib_deps = ${common.lib_deps} +build_flags = + -D HAS_DALLAS_TEMP_SENSOR=0 + -D IS_CUSTOM_AMS_BOARD=0