Remove MODE_PROM_PUSH and MODE_MQTT from consts.h

These values are not supported yet, so they should not be there yet.
This commit is contained in:
Gergely Polonkai 2021-01-29 11:04:34 +01:00
parent 3d249d2e05
commit 4df507f7e1
No known key found for this signature in database
GPG Key ID: 2D2885533B869ED4
1 changed files with 0 additions and 11 deletions

View File

@ -27,14 +27,3 @@
// Prometheus Pull mode. A Prometheus instance has to be configured to
// regularly pull values from the station.
#define MODE_PROM_PULL 1
// Prometheus Push mode. A Prometheus Push Gateway instance has to be
// configured in config.h where the station can regularly push values.
//
// It purposefully conflicts with MODE_PROM_PULL; the weather station code
// checks only for bit 1 to be present and if it is, it ignores bit 0
#define MODE_PROM_PUSH 3
// MQTT mode. An MQTT broker address must be configured in config.h where
// the station can push values.
#define MODE_MQTT 4