mirror of
https://github.com/ByteWelder/Tactility.git
synced 2026-02-18 10:53:17 +00:00
To avoid keeping track of a list that maps board project names to board ids. Because of this change, we don't have to manually edit `boards.cmake` anymore when adding a new board.
12 lines
371 B
C++
12 lines
371 B
C++
#include "Power.h"
|
|
|
|
#include <ChargeFromAdcVoltage.h>
|
|
#include <EstimatedPower.h>
|
|
|
|
std::shared_ptr<tt::hal::power::PowerDevice> createPower() {
|
|
ChargeFromAdcVoltage::Configuration configuration;
|
|
// 2.0 ratio, but +.11 added as display voltage sag compensation.
|
|
configuration.adcMultiplier = 2.11;
|
|
|
|
return std::make_shared<EstimatedPower>(configuration);
|
|
} |