Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Proof of Concept
SensorNodeESP8266
Commits
fcb28669
Commit
fcb28669
authored
Nov 27, 2015
by
PhiBo
🚀
Browse files
Fix substring align
parent
694de1ad
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/http_api.cpp
View file @
fcb28669
...
...
@@ -166,7 +166,7 @@ void handleNotFound()
return
;
}
if
(
uri
.
startsWith
(
"/config/sensor/"
))
{
tmp
=
uri
.
substring
(
15
,
4
);
tmp
=
uri
.
substring
(
15
,
19
);
sensor_id
=
tmp
.
toInt
();
handleConfigSensor
(
sensor_id
);
return
;
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a 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