package_name: monitorcontrolskill
class_name: MonitorControlSkill
requires_tts: True
intents:
  - intent: MonitorSelectBrightness
    action: |
      {%
      skill.monitor_select_brightness(intent.monitorBrightness)
      %}
  - intent: MonitorSelectVolume
    action: |
      {%
      skill.monitor_select_volume(intent.monitorVolume)
      %}
  - intent: MonitorOn
    action: |
      {%
      skill.monitor_power_on()
      %}
  - intent: MonitorOff
    action: |
      {%
      skill.monitor_power_off()
      %}
  - intent: MonitorSelectInput
    action: |
      {%
      skill.monitor_select_input(intent.monitorInputNumber)
      %}
