Seeking functionality info on vibration sensor use on a stacked washer/dryer unit

I’m trying to find the lowest effort solution to get notifications when my washing and drying cycles are finished. I have seen many people use a vibration sensor, but I haven’t seen anyone use it on a stacked washer/dryer, they’re always both on the ground next to each other. My plan is to use a smartplug to monitor the washer and a vibration sensor for the dryer since its a 220v/60a circuit. My concern is the washer will register false positives for the dryer.

Has anyone tried a vibration sensor for a stacked washer/dryer combo unit? How did it go?

If anyone in a similar situation is looking for a solution, I put a shelly EM in my circuit breaker and monitor the consumption of each machine as the foundation to this solution. It was the simplest and cheapest solution that also works.

I use a zigbee smart plug with power monitoring in my setup to detect the current changes on my 2 in one washer dryer combo at the moment and I have a door sensor on it to turn it on (since it auto sets the last mode set all I have to do is just press start for a new cycle) when I open it then when the current drops for x time and the door is still closed it reminds me to take out the washing.

Very nice QOL setups.

Here is the automation I have setup for it (adjust the current levels for your specific model after a few cycles so you know the numbers to set)

alias: Washing Machine Automations
description: ""
trigger:
  - type: current
    platform: device
    device_id: 
    entity_id: 
    domain: sensor
    above: 0.5
    below: 1.8
    for:
      hours: 0
      minutes: 1
      seconds: 0
    id: Washing Machine Idle
  - type: current
    platform: device
    device_id: 
    entity_id: 
    domain: sensor
    above: 2.1
    below: 7
    for:
      hours: 0
      minutes: 1
      seconds: 0
    id: Washing Machine Running
  - type: current
    platform: device
    device_id: 
    entity_id: 
    domain: sensor
    above: 0
    below: 0.1
    for:
      hours: 0
      minutes: 10
      seconds: 0
    id: Washing Machine Off
  - type: opened
    platform: device
    device_id: 
    entity_id: 
    domain: binary_sensor
    id: Washing Machine Door - Opened
  - type: not_opened
    platform: device
    device_id: 
    entity_id: 
    domain: binary_sensor
    id: Washing Machine Door - Closed
condition: []
action:
  - choose:
      - conditions:
          - condition: trigger
            id:
              - Washing Machine Idle
        sequence:
          - service: notify.mobile_app
            data:
              title: Washing Machine
              message: Washing is done.
              data:
                notification_icon: mdi:washing-machine
      - conditions:
          - condition: trigger
            id:
              - Washing Machine Running
        sequence:
          - service: notify.mobile_app
            data:
              title: Washing Machine
              message: Washing is is running.
              data:
                notification_icon: mdi:washing-machine
      - conditions:
          - condition: trigger
            id:
              - Washing Machine Off
          - condition: and
            conditions:
              - condition: trigger
                id:
                  - Washing Machine Door - Closed
        sequence:
          - service: notify.mobile_app
            data:
              title: Washing Machine
              message: Washing Needs to be taken out.
              data:
                notification_icon: mdi:washing-machine
      - conditions:
          - condition: trigger
            id:
              - Washing Machine Door - Opened
        sequence:
          - type: turn_on
            device_id: 
            entity_id:
            domain: switch
mode: single