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
b25a691f
Commit
b25a691f
authored
3 years ago
by
fxk8y
Browse files
Options
Downloads
Patches
Plain Diff
Adding global getters and setters
parent
69c5f7cf
No related branches found
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
+60
-27
60 additions, 27 deletions
CLC-qthing/Controller.cpp
CLC-qthing/CyanLightControl.hpp
+4
-0
4 additions, 0 deletions
CLC-qthing/CyanLightControl.hpp
with
64 additions
and
27 deletions
CLC-qthing/Controller.cpp
+
60
−
27
View file @
b25a691f
...
...
@@ -6,6 +6,7 @@
#include
<string>
#include
<cstdio>
#include
<cstdlib>
#include
<function>
#include
<algorithm>
#include
"esp_err.h"
...
...
@@ -61,18 +62,17 @@ CyanLight::Controller::Controller(uint8_t networkChannel, uint8_t channelsConfig
}
add_message_callback
(
DEVICE_NAMESPACE
"CyanLight/frequency/set"
,
[
&
](
std
::
string
message
)
{
std
::
function
<
void
(
std
::
string
)
>
setFrq
=
[
&
](
std
::
string
message
)
{
long
int
frq
=
strtol
(
message
.
c_str
(),
NULL
,
0
);
this
->
setFrequency
(
frq
);
}
)
;
};
add_message_callback
(
DEVICE_NAMESPACE
"CyanLight/resolution/set"
,
[
&
](
std
::
string
message
)
{
std
::
function
<
void
(
std
::
string
)
>
setRes
=
[
&
](
std
::
string
message
)
{
long
int
res
=
strtol
(
message
.
c_str
(),
NULL
,
0
);
this
->
setResolution
(
res
);
}
)
;
};
// atomic setter for both values
add_message_callback
(
DEVICE_NAMESPACE
"CyanLight/frqres/set"
,
[
&
](
std
::
string
message
)
{
std
::
function
<
void
(
std
::
string
)
>
setFrqRes
=
[
&
](
std
::
string
message
)
{
std
::
string
::
size_type
found
=
message
.
find
(
delimiter
);
if
(
found
==
std
::
string
::
npos
)
{
...
...
@@ -92,27 +92,41 @@ CyanLight::Controller::Controller(uint8_t networkChannel, uint8_t channelsConfig
}
this
->
setFrqRes
(
frq
,
res
);
});
add_message_callback
(
DEVICE_NAMESPACE
"CyanLight/frequency/get"
,
[
&
](
std
::
string
ignored
)
{
char
tmp
[
16
];
snprintf
(
tmp
,
sizeof
(
tmp
),
"%i"
,
this
->
getFrequency
());
publish_message
(
DEVICE_NAMESPACE
"CyanLight/frequency"
,
tmp
);
});
add_message_callback
(
DEVICE_NAMESPACE
"CyanLight/resolution/get"
,
[
&
](
std
::
string
ignored
)
{
char
tmp
[
16
];
snprintf
(
tmp
,
sizeof
(
tmp
),
"%i"
,
this
->
getResolution
());
publish_message
(
DEVICE_NAMESPACE
"CyanLight/resolution"
,
tmp
);
});
// and for symmetric reasons: here comes the counterpart to the atomic frq-res-setter
add_message_callback
(
DEVICE_NAMESPACE
"CyanLight/frqres/get"
,
[
&
](
std
::
string
ignored
)
{
char
tmp
[
32
];
snprintf
(
tmp
,
sizeof
(
tmp
),
"%i%s%i"
,
this
->
getFrequency
(),
delimiter
.
c_str
(),
this
->
getResolution
());
publish_message
(
DEVICE_NAMESPACE
"CyanLight/frqres"
,
tmp
);
});
};
std
::
function
<
void
(
std
::
string
)
>
getFrq
=
[
&
](
std
::
string
ignored
)
{
this
->
publishFrequency
();
};
std
::
function
<
void
(
std
::
string
)
>
getRes
=
[
&
](
std
::
string
ignored
)
{
this
->
publishResolution
();
};
std
::
function
<
void
(
std
::
string
)
>
getFrqRes
=
[
&
](
std
::
string
ignored
)
{
this
->
publishFrqRes
();
};
// device-local setters
add_message_callback
(
DEVICE_NAMESPACE
"CyanLight/frqres/set"
,
setFrqRes
);
add_message_callback
(
DEVICE_NAMESPACE
"CyanLight/frequency/set"
,
setFrq
);
add_message_callback
(
DEVICE_NAMESPACE
"CyanLight/resolution/set"
,
setRes
);
// device-lokal getters
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
);
// global setters
add_message_callback
(
"service/CyanLight/frqres/set"
,
setFrqRes
);
add_message_callback
(
"service/CyanLight/frequency/set"
,
setFrq
);
add_message_callback
(
"service/CyanLight/resolution/set"
,
setRes
);
// global getters
add_message_callback
(
"service/CyanLight/frequency/get"
,
getFrq
);
add_message_callback
(
"service/CyanLight/resolution/get"
,
getRes
);
add_message_callback
(
"service/CyanLight/frqres/get"
,
getFrqRes
);
}
...
...
@@ -168,3 +182,22 @@ bool CyanLight::Controller::setResolution(uint8_t res_bits) {
uint8_t
CyanLight
::
Controller
::
getResolution
()
{
return
this
->
resolution
;
}
void
CyanLight
::
Controller
::
publishFrequency
()
{
char
tmp
[
16
];
snprintf
(
tmp
,
sizeof
(
tmp
),
"%i"
,
this
->
getFrequency
());
publish_message
(
DEVICE_NAMESPACE
"CyanLight/frequency"
,
tmp
);
}
void
CyanLight
::
Controller
::
publishResolution
()
{
char
tmp
[
16
];
snprintf
(
tmp
,
sizeof
(
tmp
),
"%i"
,
this
->
getResolution
());
publish_message
(
DEVICE_NAMESPACE
"CyanLight/resolution"
,
tmp
);
}
void
CyanLight
::
Controller
::
publishFrqRes
()
{
char
tmp
[
32
];
snprintf
(
tmp
,
sizeof
(
tmp
),
"%i%s%i"
,
this
->
getFrequency
(),
delimiter
.
c_str
(),
this
->
getResolution
());
publish_message
(
DEVICE_NAMESPACE
"CyanLight/frqres"
,
tmp
);
}
This diff is collapsed.
Click to expand it.
CLC-qthing/CyanLightControl.hpp
+
4
−
0
View file @
b25a691f
...
...
@@ -28,6 +28,10 @@ namespace CyanLight {
uint8_t
getResolution
();
bool
setFrqRes
(
uint32_t
frq_hz
,
uint8_t
res_bits
);
void
publishFrqRes
();
void
publishFrequency
();
void
publishResolution
();
private:
uint32_t
frequency
=
1000
;
// Hz
uint8_t
resolution
=
10
;
// bits
...
...
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