This website works better with JavaScript.
Home
Explore
Help
Sign In
mh
/
mhsw-espurna
Watch
1
Star
0
Fork
0
Code
Releases
0
Activity
Browse Source
Fix bug in current calibration parameter from the web interface casting to int instead of float
fastled
Xose Pérez
7 years ago
parent
f18cdeaae8
commit
efa8553bbf
1 changed files
with
1 additions
and
1 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-1
code/espurna/web.ino
+ 1
- 1
code/espurna/web.ino
View File
@ -188,7 +188,7 @@ void _wsParse(uint32_t client_id, uint8_t * payload, size_t length) {
}
if
(
key
=
=
"
powExpectedCurrent
"
)
{
powSetExpectedCurrent
(
value
.
toIn
t
(
)
)
;
powSetExpectedCurrent
(
value
.
toFloa
t
(
)
)
;
changed
=
true
;
}
Write
Preview
Loading…
Cancel
Save