esp8266_web_settings beta
BasicAnalog.h
1/*
2 * Copyright (c) 2021, 2022 G. R. McDorman
3 *
4 * Permission is hereby granted, free of charge, to any person obtaining a copy
5 * of this software and associated documentation files (the "Software"), to deal
6 * in the Software without restriction, including without limitation the rights
7 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
8 * copies of the Software, and to permit persons to whom the Software is
9 * furnished to do so, subject to the following conditions:
10 *
11 * The above copyright notice and this permission notice shall be included in all
12 * copies or substantial portions of the Software.
13 *
14 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
15 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
16 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
17 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
18 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
19 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
20 * SOFTWARE.
21 */
22
23#pragma once
24
25#include <Arduino.h>
26
27#include "grmcdorman/device/AbstractAnalog.h"
28
29namespace grmcdorman::device
30{
60 {
61 public:
71 explicit BasicAnalog(const __FlashStringHelper *units, bool allowUserAdjust,
72 float defaultScale = 1.0f, float defaultOffset = 0.0f, bool invert = false);
73
74
83 virtual String get_status() const;
84 protected:
85 virtual float transform_raw_reading(int reading) override
86 {
87 return reading;
88 };
89 NoteSetting title;
90 InfoSettingHtml device_status;
91 };
92}
Abstract analog device.
Definition: AbstractAnalog.h:46
A basic analog device.
Definition: BasicAnalog.h:60
BasicAnalog(const __FlashStringHelper *units, bool allowUserAdjust, float defaultScale=1.0f, float defaultOffset=0.0f, bool invert=false)
Construct a new Basic Analog object.
Definition: BasicAnalog.cpp:70
virtual float transform_raw_reading(int reading) override
Transform the raw reading into the reported value.
Definition: BasicAnalog.h:85
InfoSettingHtml device_status
Last update.
Definition: BasicAnalog.h:90
virtual String get_status() const
Get a status report.
Definition: BasicAnalog.cpp:102
NoteSetting title
Device tab title.
Definition: BasicAnalog.h:88