Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
A
Arduino Sketches
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package registry
Container registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
NLOQO
Arduino Sketches
Commits
89eac910
Commit
89eac910
authored
1 year ago
by
Pico3
Browse files
Options
Downloads
Patches
Plain Diff
Send duty_cycle with the data and the setpoint.
parent
79b28269
No related branches found
No related tags found
No related merge requests found
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
TemperatureController/TemperatureController.ino
+3
-1
3 additions, 1 deletion
TemperatureController/TemperatureController.ino
with
3 additions
and
1 deletion
TemperatureController/TemperatureController.ino
+
3
−
1
View file @
89eac910
...
...
@@ -9,7 +9,7 @@
*/
//** CONSTANTS PARAMETERS change for your application **//
const
String
version
=
"1.3.
0
"
;
// Version of this script. Filename is added before, date of compilation afterwards.
const
String
version
=
"1.3.
1
"
;
// Version of this script. Filename is added before, date of compilation afterwards.
const
int
cyclePeriod
=
1
;
//program cycle period in s
const
int
controlPin
=
11
;
//Pin by which the control unit is controlled (11 or 12)
...
...
@@ -287,6 +287,8 @@ void sendSensorDataLast(){
Serial
.
print
(
sensor5Value
,
precision
);
Serial
.
print
(
"
\t
"
);
Serial
.
print
(
setpoint
,
precision
);
Serial
.
print
(
"
\t
"
);
Serial
.
print
(
duty_cycle
,
precision
);
Serial
.
println
();
}
...
...
This diff is collapsed.
Click to expand it.
Benedikt Burger
@benedikt.burger
mentioned in commit
a790af93
·
1 year ago
mentioned in commit
a790af93
mentioned in commit a790af9313410be20b60e80d837b5e3b422d48f9
Toggle commit list
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