Home assistant component

It would be great to have a home assistant component so that one can have a card in home assistant with current status of Piaware. Ie is feed up, links are up and whatever.

For FR24 there is custom sensors created from json. Maybe this is possible?
FlightRadar24 as an Add-On? - #2 by exxamalte - Home Assistant OS - Home Assistant Community?

3 Likes
1 Like

Here’s a page I worked up in a few minutes.

The card code is as follows:

type: custom:stack-in-card
mode: vertical
cards:
  - type: markdown
    content: |
      <center>

      [SkyAware](http://192.168.nnn.nnn/skyaware/)
      [FlightAware Site Page]({{ states('sensor.piaware_site_url') }})
      Serial Number:  {{ states('sensor.piaware_serial_number') }}
      Software Version:  {{ states('sensor.piaware_dump1090_version') }}
  - type: entities
    entities:
      - entity: sensor.piaware_temperature
      - entity: sensor.piaware_cpu_load
  - type: sensor
    entity: sensor.piaware_nearby_aircraft
    icon: mdi:airplane-search
    graph: line
    hours_to_show: 72```
4 Likes

Hello,

could You tell how did You get sensor.piaware_nearby_aircraft ?

It is also possible to get how many aircraft was spotted today ?

Aircraft PiAware

Thanks !

In flightaware unit right path is:

command: “curl -s http://192.168.0.80/dump1090-fa/data/aircraft.json | grep hex | wc -l”

Working fine :slight_smile: