Openhab 3 binding Automower DateTime

Hi

System Openhab 3 on Windows 10

I would read the items from the Automower binding.
It workswith Battery state, Activity state but I can’t read the DateTime state from NextAutoStart.

I have changed the item State Discription with “%1$tA %1$tH:%1$tM Uhr”, so I the there
the weekday and time.

Thanks for reading.

- component: f7-row
      config:
        style:
          position: absolute
          top: 5px
          left: 10px
      slots:
        default:
          - component: f7-chip
            config:
              iconF7: status
              text: = "Status :" + items[props.Automower_Activity].state
              iconSize: 30
              iconColor: green
              textColor: black
              style:
                --f7-chip-bg-color: rgba(25, 255, 255, 0)
                font-weight: 700
              visible: = items[props.Automower_Activity]
    - component: f7-row
      config:
        style:
          position: absolute
          top: 50px
          left: 10px
      slots:
        default:
          - component: f7-chip
            config:
              iconF7: alarm
              text: = "Nächster Start :" + items[props.Automower_NextAutoStart].state
              iconSize: 30
              iconColor: green
              textColor: black
              style:
                --f7-chip-bg-color: rgba(25, 255, 255, 0)
                font-weight: 700
              visible: = items[props.Automower_NextAutoStart]

1 Like