You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hello, reporting this here since the cf modules appear to be abandoned. At any rate, the Funktion module uses int rather than floor at line 82. This is incorrect for negative voltages.
82: if (OP_STATE==3) {val = int(inputs[IN1_INPUT].getVoltage());fctDesc="floor";}
where it should be: if (OP_STATE==3) {val = floor(inputs[IN1_INPUT].getVoltage());fctDesc="floor";}
Thanks
The text was updated successfully, but these errors were encountered:
Hello, reporting this here since the cf modules appear to be abandoned. At any rate, the Funktion module uses
int
rather thanfloor
at line 82. This is incorrect for negative voltages.82:
if (OP_STATE==3) {val = int(inputs[IN1_INPUT].getVoltage());fctDesc="floor";}
where it should be:
if (OP_STATE==3) {val = floor(inputs[IN1_INPUT].getVoltage());fctDesc="floor";}
Thanks
The text was updated successfully, but these errors were encountered: