WARNING: THIS SITE IS A MIRROR OF GITHUB.COM / IT CANNOT LOGIN OR REGISTER ACCOUNTS / THE CONTENTS ARE PROVIDED AS-IS / THIS SITE ASSUMES NO RESPONSIBILITY FOR ANY DISPLAYED CONTENT OR LINKS / IF YOU FOUND SOMETHING MAY NOT GOOD FOR EVERYONE, CONTACT ADMIN AT ilovescratch@foxmail.com
Skip to content

Commit a9a29af

Browse files
committed
Added brewlogger integration
1 parent 4daa1ae commit a9a29af

File tree

2 files changed

+4
-6
lines changed

2 files changed

+4
-6
lines changed

platformio.ini

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,15 +22,15 @@ build_unflags =
2222
build_flags =
2323
-D BAUD=${common_env_data.monitor_speed}
2424
-D USE_LITTLEFS=true
25-
-D CFG_APPVER="\"1.0.0\""
25+
-D CFG_APPVER="\"1.1.0\""
2626
#-D PERF_ENABLE
2727
-D PERF_INFLUX_TARGET=\""\""
2828
-D PERF_INFLUX_BUCKET=\""\""
2929
-D PERF_INFLUX_ORG=\""\""
3030
-D PERF_INFLUX_TOKEN=\""\""
31-
#-D CFG_GITREV=\""beta-3\""
31+
-D CFG_GITREV=\""dev\""
3232
#-D ENABLE_REMOTE_UI_DEVELOPMENT
33-
!python script/git_rev.py
33+
#!python script/git_rev.py
3434
lib_deps =
3535
https://github.com/mp-se/SimpleKalmanFilter#v0.2
3636
https://github.com/mp-se/Statistic#1.0.5

src/kegconfig.hpp

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -261,9 +261,7 @@ class KegConfig : public BaseConfig {
261261
_beer[idx]._name = s;
262262
_saveNeeded = true;
263263
}
264-
const char* getBeerId(UnitIndex idx) {
265-
return _beer[idx]._id.c_str();
266-
}
264+
const char* getBeerId(UnitIndex idx) { return _beer[idx]._id.c_str(); }
267265
void setBeerId(UnitIndex idx, String s) {
268266
_beer[idx]._id = s;
269267
_saveNeeded = true;

0 commit comments

Comments
 (0)