Fresh update to 88.1 and a couple of notifications, not sure what to do to fix them

I am not a coder, I did read the release notes multiple times. None of the breaking changes seem to cover what I am seeing in the notifications.

image

The first one seems to be triggered here:

  - platform: wake_on_lan    
    mac_address: "e0:3f:49:xx:xx:xx"
    name: "Desktop"
    host: 192.168.1.117
    turn_off:
      service: hassio.addon_stdin
      data:
        addon: core_rpc_shutdown
        input: Desktop
    turn_on:
      service: send_magic_packet
      data:
        mac_address: "e0:3f:49:xx:xx:xx"
        host: "192.168.1.117"

The second seems to be triggered by Dark Sky:

- platform: darksky
  api_key: xxxxxx
  mode: daily
  forecast:
      - 0
      - 1
      - 2
      - 3
      - 4
      - 5

I am not sure how to adjust either as they have worked for ages and are still covered in the current documentation.

Guidance would be appreciated.

Thanks Matt

It really helps to state what component your platform configuration belongs to, since often there is more than one possibility. (I.e., is it a switch, a sensor, a binary_sensor, …???)

For the first one, though, I’m guessing it’s a Wake on LAN Switch. If so, that does not have a turn_on configuration variable, so you need to remove it.

For the second one, you seem to have mixed options from the Dark Sky Weather and Dark Sky Sensor components. I’m guessing you mean to use the latter, and that does not have a mode option, so remove it.

Yes, I did not think to include that the first is indeed switch platform.

I am testing the reconfig now and will look at the dark sky stuff soon. Will post back if I get stuck!

Thanks

1 Like

dark sky - need to use scan_interval instead of update_interval

So, I attempted the following change to update the switch for the following platform.

  - platform: wake_on_lan    
    mac_address: "e0:3f:49:e7:b9:14"
    name: "Desktop"
    host: 192.168.1.117
    service: send_magic_packet
    data:
      mac_address: "e0:3f:49:e7:b9:14"
      host: "192.168.1.117"
    turn_off:
      service: hassio.addon_stdin
      data:
        addon: core_rpc_shutdown
        input: Desktop

Error now in the notification windows…
image

This is how it should be change the info for yours.

  - platform: wake_on_lan
    mac_address: "00-19-D1-25-34-66"
    name: Plex Server
    host: 192.168.50.210
    broadcast_address: 192.168.50.255
    turn_off:
        service: hassio.addon_stdin
        data:
            addon: core_rpc_shutdown
            input: DEV-PC

Thanks a whole bunch, that does work… The system will shut down and power on!

1 Like

I didn’t mean just remove the line with turn_on, but that whole section. Are you following the directions here: Wake on LAN Switch?