Skip to content

Commit 762c17c

Browse files
committed
Updated readme and example ini file
1 parent fad6ada commit 762c17c

File tree

2 files changed

+9
-12
lines changed

2 files changed

+9
-12
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
# AMS MQTT Bridge
1+
# AMS Reader
22
This code is designed to decode data from electric smart meters installed in many countries in Europe these days. The data is presented in a graphical web interface and can also send the data to a MQTT broker which makes it suitable for home automation project. Originally it was only designed to work with Norwegian meters, but has since been adapter to read any IEC-62056-7-5 or IEC-62056-21 compliant meters.
33

4-
Later development have added Energy usage graph for both day and month, as well as future energy price (Prices only available for ESP32). The code can run on any ESP8266 or ESP32 hardware which you can read more about in the [WiKi](https://github.com/gskjold/AmsToMqttBridge/wiki). If you don't have the knowledge to set up a ESP device yourself, have a look at the shop at [amsleser.no](https://amsleser.no/).
4+
Later development have added Energy usage graph for both day and month, as well as future energy price. The code can run on any ESP8266 or ESP32 hardware which you can read more about in the [WiKi](https://github.com/gskjold/AmsToMqttBridge/wiki). If you don't have the knowledge to set up a ESP device yourself, have a look at the shop at [amsleser.no](https://amsleser.no/).
55

66

77
<img src="webui.png">

platformio-user.ini-example

Lines changed: 7 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -2,19 +2,16 @@
22
default_envs = dev
33

44
[env:dev]
5-
platform = espressif8266
5+
6+
framework = arduino
67
board = esp12e
78
board_build.ldscript = eagle.flash.4m2m.ld
8-
framework = arduino
9-
lib_deps = ${common.lib_deps}
10-
lib_ignore = ${common.lib_ignore}
9+
build_flags = ${common.build_flags} -D DEBUG_MODE=1
10+
lib_ldf_mode = off
1111
lib_compat_mode = off
12-
build_flags =
13-
-D WEBSOCKET_DISABLED=1
14-
-D DEBUG_MODE=1
15-
extra_scripts =
16-
pre:scripts/addversion.py
17-
scripts/makeweb.py
12+
lib_deps = ESP8266WiFi, ESP8266mDNS, ESP8266WebServer, ESP8266HTTPClient, ESP8266httpUpdate, ${common.lib_deps}
13+
lib_ignore = ${common.lib_ignore}
14+
extra_scripts = ${common.extra_scripts}
1815
monitor_speed = 115200 ; If serial port is shared with HAN, use baud and parity configured for meter
1916
monitor_flags =
2017
--parity

0 commit comments

Comments
 (0)