Skip to content

Commit

Permalink
Updates
Browse files Browse the repository at this point in the history
  • Loading branch information
jinglemansweep committed Nov 22, 2023
1 parent 233f680 commit 3a383ba
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion wideboy/scenes/default/tile_grid.py
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,8 @@ def label(self):
return format_watts(self.value)

class CellBatteryChargeRemainingTime(GridCell):
icon_codepoint = FontAwesomeIcons.ICON_FA_PLUG_CIRCLE_MINUS
icon_codepoint = FontAwesomeIcons.ICON_FA_PLUG_CIRCLE_PLUS
icon_color_background = CommonColors.COLOR_GREEN_DARK

@property
def value(self):
Expand All @@ -173,6 +174,7 @@ def label(self):

class CellBatteryDischargeRemainingTime(GridCell):
icon_codepoint = FontAwesomeIcons.ICON_FA_PLUG_CIRCLE_MINUS
icon_color_background = CommonColors.COLOR_RED_DARK

@property
def value(self):
Expand Down

0 comments on commit 3a383ba

Please sign in to comment.