Skip to content
This repository was archived by the owner on Jan 20, 2025. It is now read-only.

Commit f1a519f

Browse files
committedApr 24, 2020
Updated documentation
1 parent 6bc66b2 commit f1a519f

File tree

4 files changed

+9
-1
lines changed

4 files changed

+9
-1
lines changed
 

‎HISTORY

+6
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,12 @@
11
Version history
22
===============
33

4+
0.8: 24/04/2020
5+
- Added multi instance handling
6+
- Made 'wh_per_pulse' floating point
7+
- Made pulse_tolerance configurable
8+
- Bug fix
9+
410
0.7: 24/08/2015
511
- Added configurable WebAPI URI
612
- Added configurable WebAPI update rate limit

‎README.md

+1
Original file line numberDiff line numberDiff line change
@@ -138,6 +138,7 @@ You can customize the application to your needs via the config file emon.conf wh
138138
pulse_input_pin = 25 # BCM pin number used for pulse input from energy meter
139139
wh_per_pulse = 100 # Wh per pulse (Energy meter setting)
140140
pulse_length = 100 # pulse length (in ms), leave blank for auto detection
141+
pulse_tolerance = 5 # pulse tolerance (in %), leave blank for default
141142
max_power = 3300 # max possible power (in W) provided by energy company
142143

143144
# Storage parameters

‎conf/emon.conf

+1
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@
1010
pulse_input_pin = 25 # BCM pin number used for pulse input from energy meter
1111
wh_per_pulse = 100 # Wh per pulse (from the Energy meter setting)
1212
pulse_length = 100 # pulse length (in ms), leave blank for auto detection
13+
pulse_tolerance = 5 # pulse tolerance (in %), leave blank for default
1314
max_power = 3300 # max possible power (in W) provided by energy company
1415

1516
# Storage parameters

‎src/emond.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@
4545
/* Uncomment this to enable debug mode */
4646
//#define DEBUG
4747

48-
#define VERSION "0.7.3"
48+
#define VERSION "0.8"
4949

5050
#define BUFFER_SIZE 64
5151

0 commit comments

Comments
 (0)
This repository has been archived.