UNPKG
nanoleaf-client-multi
Version:
latest (4.0.0)
4.0.0
3.0.1
3.0.0
2.0.1
2.0.0
1.0.1
1.0.0
Client library for Nanoleaf smart home devices
gitlab.com/manganese/home/nanoleaf-client-multi
nanoleaf-client-multi
/
src
/
models
/
saturation.js
15 lines
(13 loc)
•
238 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
/** *
@property
{number} value *
@property
{number} min *
@property
{number} max */
class
Saturation
{
constructor
(obj) {
this
.value = obj.value;
this
.min = obj.min;
this
.max = obj.max; } } export default Saturation;