---
tag: m0430
title: Power Monitor
brief: Read and display current (A), voltage (V), and power (W)
author: shitcreek

requires: either POWER_MONITOR_CURRENT or POWER_MONITOR_VOLTAGE
group: thermal

codes: [ M430 ]

notes:
  - Requires either `POWER_MONITOR_CURRENT` or `POWER_MONITOR_VOLTAGE`

parameters:
  -
    tag: I
    optional: true
    description: display current (A) on LCD
    values:
      -
        type: bool
  -
    tag: V
    optional: true
    description: toggle display voltage (V) on LCD
    values:
      -
        type: bool
  -
    tag: W
    optional: true
    description: display power/watts (W) on LCD
    values:
      -
        type: bool


examples:
  -
    pre: report current LCD display power draw
    code: M430

  -
    pre: Display all power monitor on LCD
    code: M430 I1 V1 W1

---
Enable/disable power monitor on LCD display. Report current/amps (A), voltage (V) and watts (W) if no parameters.

