scheduler-component icon indicating copy to clipboard operation
scheduler-component copied to clipboard

MQTT Valve

Open shadowofgod opened this issue 10 months ago • 4 comments

Checklist

  • [X] I checked for similar existing issues (both open and closed) before posting.
  • [X] I am running the latest version.

Expected behavior

I include valve in entity but it dont appear

Actual behavior

MQTT valve doesnt appear to selection

shadowofgod avatar May 27 '25 06:05 shadowofgod

why is it unclear? it's about the valve entity domain not being available in schedules

meks007 avatar Jun 04 '25 07:06 meks007

Dear,

I include this: type: custom:scheduler-card include:

  • climate
  • cover
  • valve exclude: [] title: Agenda

But the valve entities do not appear in the frontend to be selected.

Best regards

On Wed, 4 Jun 2025 at 08:51, meks007 @.***> wrote:

meks007 left a comment (nielsfaber/scheduler-component#446) https://github.com/nielsfaber/scheduler-component/issues/446#issuecomment-2938987431

why is it unclear? it's about the valve entity domain not being available in schedules

— Reply to this email directly, view it on GitHub https://github.com/nielsfaber/scheduler-component/issues/446#issuecomment-2938987431, or unsubscribe https://github.com/notifications/unsubscribe-auth/ACYRAEGC6NW5Q5FSHZEV4IL3B2QPNAVCNFSM6AAAAAB57CST6GVHI2DSMVQWIX3LMV43OSLTON2WKQ3PNVWWK3TUHMZDSMZYHE4DONBTGE . You are receiving this because you authored the thread.Message ID: @.***>

-- Jorge Matias

Contacts @.***

shadowofgod avatar Jun 04 '25 08:06 shadowofgod

This issue is stale because it has been open 30 days with no activity. Remove stale label or comment or this will be closed in 7 days

github-actions[bot] avatar Jul 11 '25 01:07 github-actions[bot]

It's not our fault there has been no activity. Keep this open.

meks007 avatar Jul 11 '25 10:07 meks007

This issue is stale because it has been open 30 days with no activity. Remove stale label or comment or this will be closed in 7 days

github-actions[bot] avatar Aug 11 '25 01:08 github-actions[bot]

It's not our fault there has been no activity. Keep this open.

meks007 avatar Aug 19 '25 05:08 meks007

@meks007 @shadowofgod This bug report is ignored because it there is no valid bug reported. Perhaps it was intended as a feature request?

As per documentation:

If you are missing an action, you can add it yourself using the customize configuration.

Something like this should work (didn't test it):

customize:
  valve:
    icon: 'mdi:valve'
    actions:
      - action: valve.close_valve
        name: Close
        icon: 'mdi:valve-closed'
      - action: valve.open_valve
        name: Open
        icon: 'mdi:valve-open'

I could include support for this in the new V4 version of the card.

nielsfaber avatar Aug 19 '25 19:08 nielsfaber

Please consider including it in V4. Meanwhile, I tested your suggestion and all in all it appears to be working, although with a little correction:

customize:
  valve:
    icon: mdi:valve
    actions:
      - service: valve.close_valve
        name: Close
        icon: mdi:valve-closed
      - service: valve.open_valve
        name: Open
        icon: mdi:valve-open

meks007 avatar Aug 19 '25 19:08 meks007