Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
co2ampel
ampel-firmware
Commits
84aa2075
Commit
84aa2075
authored
Feb 16, 2022
by
Eric Duminil
Browse files
F-String
parent
45932075
Changes
1
Hide whitespace changes
Inline
Side-by-side
ampel-firmware/lorawan.cpp
View file @
84aa2075
...
...
@@ -80,9 +80,9 @@ namespace lorawan {
void
onEvent
(
ev_t
ev
)
{
char
current_time
[
23
];
ntp
::
getLocalTime
(
current_time
);
Serial
.
print
(
"LoRa - "
);
Serial
.
print
(
F
(
"LoRa - "
)
)
;
Serial
.
print
(
current_time
);
Serial
.
print
(
" - "
);
Serial
.
print
(
F
(
" - "
)
)
;
switch
(
ev
)
{
case
EV_JOINING
:
Serial
.
println
(
F
(
"EV_JOINING"
));
...
...
Write
Preview
Supports
Markdown
0%
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!
Cancel
Please
register
or
sign in
to comment