Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/Duet3D/RepRapFirmware.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/src/Fans
diff options
context:
space:
mode:
authorChristian Hammacher <bmasterc@gmail.com>2020-03-28 04:19:00 +0300
committerChristian Hammacher <bmasterc@gmail.com>2020-03-28 04:19:00 +0300
commit28bd97b7567219f432c0727dcb8b3ddc87a94eb5 (patch)
tree01c64da5776341b4abe1cc9ee0fa50453419938e /src/Fans
parent290b53209255b728a0c2635234d81a8c76bce800 (diff)
SPI and OM changes for DWC and DSF 1.3.0
Diffstat (limited to 'src/Fans')
-rw-r--r--src/Fans/Fan.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/Fans/Fan.cpp b/src/Fans/Fan.cpp
index 2660862e..33f8dae9 100644
--- a/src/Fans/Fan.cpp
+++ b/src/Fans/Fan.cpp
@@ -25,6 +25,7 @@ constexpr ObjectModelTableEntry Fan::objectModelTable[] =
// 0. Fan members
{ "actualValue", OBJECT_MODEL_FUNC(self->lastVal, 2), ObjectModelEntryFlags::live },
{ "blip", OBJECT_MODEL_FUNC(0.001f * (float)self->blipTime, 2), ObjectModelEntryFlags::none },
+ // TODO add frequency here
{ "max", OBJECT_MODEL_FUNC(self->maxVal, 2), ObjectModelEntryFlags::none },
{ "min", OBJECT_MODEL_FUNC(self->minVal, 2), ObjectModelEntryFlags::none },
{ "name", OBJECT_MODEL_FUNC(self->name.c_str()), ObjectModelEntryFlags::none },