Skip to content

Commit

Permalink
Update CLI to use new dirty sensor value
Browse files Browse the repository at this point in the history
  • Loading branch information
bbbenji authored Nov 17, 2017
1 parent c50a454 commit 0466dd8
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion miio/vacuum_cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,8 @@ def consumables(vac: miio.Vacuum):
res.side_brush_left))
click.echo("Filter: %s (left %s)" % (res.filter,
res.filter_left))
click.echo("Sensor dirty: %s" % res.sensor_dirty)
click.echo("Sensor dirty: %s (left %s)" % (res.sensor_dirty,
res.sensor_dirty_left))


@cli.command()
Expand Down

0 comments on commit 0466dd8

Please sign in to comment.