Perhaps I’m being a bit greedy and asking too much but is there anyway I can include a switch in a fuel stream and have it indicate whether it’s on or off? I’m trying to chart temperature data and would like to show on the chart whether my air conditioners were on or not.
How to include switch in fuel stream
WCmore
#2
You have to convert it to a number first. Something like this:
If AC is on
Set variable 'acOn' to 1
Else
Set variable 'acOn' to 0
End IF
Write data point 'acOn' to fuel stream zz \ AC On
Although, for ease of reading, I often make those numbers 0 & 100.
(especially if you want to see that data at the same time as the temp in your pic above)
Also keep in mind that any piston can write to any fuel stream.
Here is an example of me monitoring the temperature as well as the sun up time:
(I am tempted to make 50 the ‘off’ number instead of 0, so the graph zooms in better)