This repository was archived by the owner on Jan 20, 2025. It is now read-only.
File tree 4 files changed +9
-1
lines changed
4 files changed +9
-1
lines changed Original file line number Diff line number Diff line change 1
1
Version history
2
2
===============
3
3
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
+
4
10
0.7: 24/08/2015
5
11
- Added configurable WebAPI URI
6
12
- Added configurable WebAPI update rate limit
Original file line number Diff line number Diff line change @@ -138,6 +138,7 @@ You can customize the application to your needs via the config file emon.conf wh
138
138
pulse_input_pin = 25 # BCM pin number used for pulse input from energy meter
139
139
wh_per_pulse = 100 # Wh per pulse (Energy meter setting)
140
140
pulse_length = 100 # pulse length (in ms), leave blank for auto detection
141
+ pulse_tolerance = 5 # pulse tolerance (in %), leave blank for default
141
142
max_power = 3300 # max possible power (in W) provided by energy company
142
143
143
144
# Storage parameters
Original file line number Diff line number Diff line change 10
10
pulse_input_pin = 25 # BCM pin number used for pulse input from energy meter
11
11
wh_per_pulse = 100 # Wh per pulse (from the Energy meter setting)
12
12
pulse_length = 100 # pulse length (in ms), leave blank for auto detection
13
+ pulse_tolerance = 5 # pulse tolerance (in %), leave blank for default
13
14
max_power = 3300 # max possible power (in W) provided by energy company
14
15
15
16
# Storage parameters
Original file line number Diff line number Diff line change 45
45
/* Uncomment this to enable debug mode */
46
46
//#define DEBUG
47
47
48
- #define VERSION "0.7.3 "
48
+ #define VERSION "0.8 "
49
49
50
50
#define BUFFER_SIZE 64
51
51
You can’t perform that action at this time.
0 commit comments