Commit 409f3040 authored by Don Gagne's avatar Don Gagne Committed by GitHub

Merge pull request #3738 from DonLakeFlyer/PowerSetup

Power: Fix trigger list
parents 6f7ec666 f1b93fc0
......@@ -51,7 +51,10 @@ bool PowerComponent::setupComplete(void) const
QStringList PowerComponent::setupCompleteChangedTriggerList(void) const
{
return QStringList();
QStringList triggerList;
triggerList << "BAT_V_CHARGED" << "BAT_V_EMPTY" << "BAT_N_CELLS";
return triggerList;
}
QUrl PowerComponent::setupSource(void) const
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment