OpenZWave Library
1.6.1914
Toggle main menu visibility
Loading...
Searching...
No Matches
cpp
src
value_classes
ValueByte.h
Go to the documentation of this file.
1
//-----------------------------------------------------------------------------
2
//
3
// ValueByte.h
4
//
5
// Represents an 8-bit value
6
//
7
// Copyright (c) 2010 Mal Lansell <openzwave@lansell.org>
8
//
9
// SOFTWARE NOTICE AND LICENSE
10
//
11
// This file is part of OpenZWave.
12
//
13
// OpenZWave is free software: you can redistribute it and/or modify
14
// it under the terms of the GNU Lesser General Public License as published
15
// by the Free Software Foundation, either version 3 of the License,
16
// or (at your option) any later version.
17
//
18
// OpenZWave is distributed in the hope that it will be useful,
19
// but WITHOUT ANY WARRANTY; without even the implied warranty of
20
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21
// GNU Lesser General Public License for more details.
22
//
23
// You should have received a copy of the GNU Lesser General Public License
24
// along with OpenZWave. If not, see <http://www.gnu.org/licenses/>.
25
//
26
//-----------------------------------------------------------------------------
27
28
#ifndef _ValueByte_H
29
#define _ValueByte_H
30
31
#include <string>
32
#include "
Defs.h
"
33
#include "
value_classes/Value.h
"
34
35
class
TiXmlElement;
36
37
namespace
OpenZWave
38
{
39
namespace
Internal
40
{
41
namespace
VC
42
{
43
47
class
ValueByte
:
public
Value
48
{
49
public
:
50
ValueByte
(
uint32
const
_homeId,
uint8
const
_nodeId,
ValueID::ValueGenre
const
_genre,
uint8
const
_commandClassId,
uint8
const
_instance,
uint16
const
_index,
string
const
& _label,
string
const
& _units,
bool
const
_readOnly,
bool
const
_writeOnly,
uint8
const
_value,
uint8
const
_pollIntensity);
51
ValueByte
();
52
virtual
~ValueByte
()
53
{
54
}
55
56
bool
Set
(
uint8
const
_value);
57
void
OnValueRefreshed
(
uint8
const
_value);
58
void
SetTargetValue
(
uint8
const
_target,
uint32
_duration = 0);
59
60
// From Value
61
virtual
string
const
GetAsString
()
const
;
62
virtual
bool
SetFromString
(
string
const
& _value);
63
virtual
void
ReadXML
(
uint32
const
_homeId,
uint8
const
_nodeId,
uint8
const
_commandClassId, TiXmlElement
const
* _valueElement);
64
virtual
void
WriteXML
(TiXmlElement* _valueElement);
65
66
uint8
GetValue
()
const
67
{
68
return
m_value;
69
}
70
71
private
:
72
uint8
m_value;
// the current value
73
uint8
m_valueCheck;
// the previous value (used for double-checking spurious value reads)
74
uint8
m_targetValue;
// the Target Value, if the CC support it
75
};
76
}
// namespace VC
77
}
// namespace Internal
78
}
// namespace OpenZWave
79
80
#endif
81
Defs.h
uint16
unsigned short uint16
Definition
Defs.h:88
uint32
unsigned int uint32
Definition
Defs.h:91
uint8
unsigned char uint8
Definition
Defs.h:85
Value.h
OpenZWave::Internal::VC::ValueByte::WriteXML
virtual void WriteXML(TiXmlElement *_valueElement)
Definition
ValueByte.cpp:104
OpenZWave::Internal::VC::ValueByte::ValueByte
ValueByte()
Definition
ValueByte.cpp:58
OpenZWave::Internal::VC::ValueByte::ValueByte
ValueByte(uint32 const _homeId, uint8 const _nodeId, ValueID::ValueGenre const _genre, uint8 const _commandClassId, uint8 const _instance, uint16 const _index, string const &_label, string const &_units, bool const _readOnly, bool const _writeOnly, uint8 const _value, uint8 const _pollIntensity)
Definition
ValueByte.cpp:47
OpenZWave::Internal::VC::ValueByte::GetValue
uint8 GetValue() const
Definition
ValueByte.h:66
OpenZWave::Internal::VC::ValueByte::GetAsString
virtual string const GetAsString() const
Definition
ValueByte.cpp:64
OpenZWave::Internal::VC::ValueByte::~ValueByte
virtual ~ValueByte()
Definition
ValueByte.h:52
OpenZWave::Internal::VC::ValueByte::ReadXML
virtual void ReadXML(uint32 const _homeId, uint8 const _nodeId, uint8 const _commandClassId, TiXmlElement const *_valueElement)
Definition
ValueByte.cpp:85
OpenZWave::Internal::VC::ValueByte::SetTargetValue
void SetTargetValue(uint8 const _target, uint32 _duration=0)
Definition
ValueByte.cpp:136
OpenZWave::Internal::VC::ValueByte::SetFromString
virtual bool SetFromString(string const &_value)
Definition
ValueByte.cpp:71
OpenZWave::Internal::VC::Value::Value
Value(uint32 const _homeId, uint8 const _nodeId, ValueID::ValueGenre const _genre, uint8 const _commandClassId, uint8 const _instance, uint16 const _index, ValueID::ValueType const _type, string const &_label, string const &_units, bool const _readOnly, bool const _writeOnly, bool const _isset, uint8 const _pollIntensity)
Definition
Value.cpp:59
OpenZWave::Internal::VC::Value::Set
bool Set()
Definition
Value.cpp:289
OpenZWave::Internal::VC::Value::OnValueRefreshed
void OnValueRefreshed()
Definition
Value.cpp:351
OpenZWave::ValueID::ValueGenre
ValueGenre
Definition
ValueID.h:85
OpenZWave::Internal::VC
Definition
Driver.h:64
OpenZWave::Internal
Definition
Bitfield.cpp:33
OpenZWave
Definition
Bitfield.cpp:31
Generated on
for OpenZWave Library by
1.17.0