File tree 2 files changed +9
-11
lines changed
2 files changed +9
-11
lines changed Original file line number Diff line number Diff line change 43
43
#include " types/automation/CloudMotionSensor.h"
44
44
#include " types/automation/CloudSmartPlug.h"
45
45
#include " types/automation/CloudSwitch.h"
46
- #include " types/automation/CloudTemperature .h"
46
+ #include " types/automation/CloudTemperatureSensor .h"
47
47
#include " types/automation/CloudTelevision.h"
48
48
49
49
/* *****************************************************************************
Original file line number Diff line number Diff line change 15
15
// a commercial license, send an email to [email protected] .
16
16
//
17
17
18
- #ifndef CLOUDTEMPERATURE_H_
19
- #define CLOUDTEMPERATURE_H_
18
+ #ifndef CLOUD_TEMPERATURE_SENSOR_H_
19
+ #define CLOUD_TEMPERATURE_SENSOR_H_
20
20
21
21
/* *****************************************************************************
22
22
INCLUDE
23
23
******************************************************************************/
24
24
25
- #include < Arduino.h>
26
25
#include " ../CloudFloat.h"
27
26
28
27
/* *****************************************************************************
29
28
CLASS DECLARATION
30
29
******************************************************************************/
31
30
32
-
33
-
34
- class CloudTemperature : public CloudFloat {
35
- private:
31
+ class CloudTemperatureSensor : public CloudFloat
32
+ {
36
33
public:
37
- CloudTemperature& operator =(float v) {
34
+
35
+ CloudTemperatureSensor & operator = (float v)
36
+ {
38
37
CloudFloat::operator =(v);
39
38
return *this ;
40
39
}
41
40
};
42
41
43
-
44
- #endif /* CLOUDTEMPERATURE_H_ */
42
+ #endif /* CLOUD_TEMPERATURE_SENSOR_H_ */
You can’t perform that action at this time.
0 commit comments