Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
CyanLight
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
fxk8y
CyanLight
Commits
9c3627d6
Commit
9c3627d6
authored
3 years ago
by
fxk8y
Browse files
Options
Downloads
Patches
Plain Diff
Adding more getters and setters…
parent
b25a691f
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
CLC-qthing/Controller.cpp
+49
-4
49 additions, 4 deletions
CLC-qthing/Controller.cpp
CLC-qthing/CyanLightControl.hpp
+11
-3
11 additions, 3 deletions
CLC-qthing/CyanLightControl.hpp
with
60 additions
and
7 deletions
CLC-qthing/Controller.cpp
+
49
−
4
View file @
9c3627d6
...
...
@@ -6,8 +6,8 @@
#include
<string>
#include
<cstdio>
#include
<cstdlib>
#include
<function>
#include
<algorithm>
#include
<functional>
#include
"esp_err.h"
#include
"esp_log.h"
...
...
@@ -28,7 +28,7 @@ float CyanLight::bytes2float(uint8_t *bytes) {
}
CyanLight
::
Controller
::
Controller
(
uint
8
_t
network
Channel
,
uint8_t
channelsConfigured
)
:
network
Channel
{
network
Channel
}
{
CyanLight
::
Controller
::
Controller
(
uint
16
_t
base
Channel
,
uint8_t
channelsConfigured
)
:
base
Channel
{
base
Channel
}
{
this
->
channelsConfigured
=
std
::
max
(
channelsConfigured
,
CyanLight
::
MAX_CHANNELS
);
...
...
@@ -54,7 +54,7 @@ CyanLight::Controller::Controller(uint8_t networkChannel, uint8_t channelsConfig
add_message_callback
(
topic
,
[
&
,
i
](
std
::
string
message
)
{
this
->
set
Channel
(
i
,
strtof
(
message
.
c_str
(),
NULL
));
this
->
set
PWM
(
i
,
strtof
(
message
.
c_str
(),
NULL
));
// float f = strtof(message.c_str(), NULL);
// ESP_LOGW(TAG, "i: %d msg: %s f: %f", i, message.c_str(), f);
...
...
@@ -62,6 +62,11 @@ CyanLight::Controller::Controller(uint8_t networkChannel, uint8_t channelsConfig
}
std
::
function
<
void
(
std
::
string
)
>
setCh
=
[
&
](
std
::
string
message
)
{
long
int
ch
=
strtol
(
message
.
c_str
(),
NULL
,
0
);
this
->
setBaseChannel
(
ch
);
};
std
::
function
<
void
(
std
::
string
)
>
setFrq
=
[
&
](
std
::
string
message
)
{
long
int
frq
=
strtol
(
message
.
c_str
(),
NULL
,
0
);
this
->
setFrequency
(
frq
);
...
...
@@ -95,6 +100,14 @@ CyanLight::Controller::Controller(uint8_t networkChannel, uint8_t channelsConfig
};
std
::
function
<
void
(
std
::
string
)
>
getBCh
=
[
&
](
std
::
string
ignored
)
{
this
->
publishBaseChannel
();
};
std
::
function
<
void
(
std
::
string
)
>
getChs
=
[
&
](
std
::
string
ignored
)
{
this
->
publishChannelCount
();
};
std
::
function
<
void
(
std
::
string
)
>
getFrq
=
[
&
](
std
::
string
ignored
)
{
this
->
publishFrequency
();
};
...
...
@@ -110,6 +123,7 @@ CyanLight::Controller::Controller(uint8_t networkChannel, uint8_t channelsConfig
// device-local setters
add_message_callback
(
DEVICE_NAMESPACE
"CyanLight/frqres/set"
,
setFrqRes
);
add_message_callback
(
DEVICE_NAMESPACE
"CyanLight/channel/set"
,
setCh
);
add_message_callback
(
DEVICE_NAMESPACE
"CyanLight/frequency/set"
,
setFrq
);
add_message_callback
(
DEVICE_NAMESPACE
"CyanLight/resolution/set"
,
setRes
);
...
...
@@ -117,9 +131,12 @@ CyanLight::Controller::Controller(uint8_t networkChannel, uint8_t channelsConfig
add_message_callback
(
DEVICE_NAMESPACE
"CyanLight/frequency/get"
,
getFrq
);
add_message_callback
(
DEVICE_NAMESPACE
"CyanLight/resolution/get"
,
getRes
);
add_message_callback
(
DEVICE_NAMESPACE
"CyanLight/frqres/get"
,
getFrqRes
);
add_message_callback
(
DEVICE_NAMESPACE
"CyanLight/channel/get"
,
getBCh
);
add_message_callback
(
DEVICE_NAMESPACE
"CyanLight/channels/get"
,
getChs
);
// global setters
add_message_callback
(
"service/CyanLight/frqres/set"
,
setFrqRes
);
add_message_callback
(
"service/CyanLight/channel/set"
,
setCh
);
add_message_callback
(
"service/CyanLight/frequency/set"
,
setFrq
);
add_message_callback
(
"service/CyanLight/resolution/set"
,
setRes
);
...
...
@@ -127,10 +144,12 @@ CyanLight::Controller::Controller(uint8_t networkChannel, uint8_t channelsConfig
add_message_callback
(
"service/CyanLight/frequency/get"
,
getFrq
);
add_message_callback
(
"service/CyanLight/resolution/get"
,
getRes
);
add_message_callback
(
"service/CyanLight/frqres/get"
,
getFrqRes
);
add_message_callback
(
"service/CyanLight/channel/get"
,
getBCh
);
add_message_callback
(
"service/CyanLight/channels/get"
,
getChs
);
}
void
CyanLight
::
Controller
::
set
Channel
(
uint8_t
channel
,
float
value
)
{
void
CyanLight
::
Controller
::
set
PWM
(
uint8_t
channel
,
float
value
)
{
if
(
channel
>=
this
->
channelsConfigured
)
{
ESP_LOGW
(
TAG
,
"ChannelID out of range: channel[ %i ]"
,
channel
);
...
...
@@ -167,6 +186,19 @@ bool CyanLight::Controller::setFrqRes(uint32_t frq_hz, uint8_t res_bits) {
}
}
void
CyanLight
::
Controller
::
setBaseChannel
(
uint16_t
baseChannel
)
{
this
->
baseChannel
=
baseChannel
;
}
uint16_t
CyanLight
::
Controller
::
getBaseChannel
()
{
return
this
->
baseChannel
;
}
uint8_t
CyanLight
::
Controller
::
getChannelCount
()
{
return
this
->
channelsConfigured
;
}
bool
CyanLight
::
Controller
::
setFrequency
(
uint32_t
frq_hz
)
{
return
this
->
setFrqRes
(
frq_hz
,
this
->
resolution
);
}
...
...
@@ -183,6 +215,19 @@ uint8_t CyanLight::Controller::getResolution() {
return
this
->
resolution
;
}
void
CyanLight
::
Controller
::
publishBaseChannel
()
{
char
tmp
[
16
];
snprintf
(
tmp
,
sizeof
(
tmp
),
"%i"
,
this
->
getBaseChannel
());
publish_message
(
DEVICE_NAMESPACE
"CyanLight/channel"
,
tmp
);
}
void
CyanLight
::
Controller
::
publishChannelCount
()
{
char
tmp
[
16
];
snprintf
(
tmp
,
sizeof
(
tmp
),
"%i"
,
this
->
getChannelCount
());
publish_message
(
DEVICE_NAMESPACE
"CyanLight/channelCnt"
,
tmp
);
}
void
CyanLight
::
Controller
::
publishFrequency
()
{
char
tmp
[
16
];
snprintf
(
tmp
,
sizeof
(
tmp
),
"%i"
,
this
->
getFrequency
());
...
...
This diff is collapsed.
Click to expand it.
CLC-qthing/CyanLightControl.hpp
+
11
−
3
View file @
9c3627d6
...
...
@@ -17,9 +17,15 @@ namespace CyanLight {
class
Controller
{
public:
Controller
(
uint
8
_t
network
Channel
,
uint8_t
channelsConfigured
=
1
);
Controller
(
uint
16
_t
base
Channel
,
uint8_t
channelsConfigured
=
1
);
void
setChannel
(
uint8_t
channel
,
float
value
);
void
setPWM
(
uint8_t
channel
,
float
value
);
uint8_t
getChannelCount
();
void
setBaseChannel
(
uint16_t
baseChannel
);
uint16_t
getBaseChannel
();
bool
setFrequency
(
uint32_t
frq_hz
);
uint32_t
getFrequency
();
...
...
@@ -32,11 +38,13 @@ namespace CyanLight {
void
publishFrqRes
();
void
publishFrequency
();
void
publishResolution
();
void
publishBaseChannel
();
void
publishChannelCount
();
private:
uint32_t
frequency
=
1000
;
// Hz
uint8_t
resolution
=
10
;
// bits
uint
8
_t
network
Channel
;
uint
16
_t
base
Channel
;
uint8_t
channelsConfigured
;
PWMChannel
**
channels
;
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment