Make LEDOutput responsible for inverting output

This commit is contained in:
Robert Marshall 2021-07-30 08:48:45 +01:00
parent 8c50498c7d
commit 0432071759
3 changed files with 10 additions and 6 deletions

View file

@ -54,7 +54,6 @@ public:
}
void loop() {
float multiplier = getOutputMultiplier();
_output->writeFraction(1 - multiplier);
_output->writeFraction(getOutputMultiplier());
}
};