Skip to content

Home assistant as tracking app #77

Answered by drlobo
geekscrapy asked this question in Q&A
Jun 22, 2024 · 10 comments · 19 replies
Discussion options

You must be logged in to vote

hey, I was able to push Home assistant device location to Darawich with the RESTful Command integration. It could probably be improved, but it's a first working step.

Here is how I configured it:

# configuration.yaml
rest_command:
    push_position_to_dawarich:
      url: http://dawarich_dns:3000/api/v1/overland/batches?api_key={{ api_key }}
      method: POST
      content_type: 'application/json'
      payload: >
        {
          "locations": [
          {
           "type": "Feature",
           "geometry":{
             "type": "Point",
             "coordinates":[
               {{ longitude }},
               {{ latitude }}
              ]
           },
           "properties":{

Replies: 10 comments 19 replies

Comment options

You must be logged in to vote
0 replies
Comment options

You must be logged in to vote
8 replies
@TheDoor
Comment options

@estevez-dev
Comment options

@bklaesener
Comment options

@hockey6611
Comment options

@bklaesener
Comment options

Answer selected by Freika
Comment options

You must be logged in to vote
1 reply
@drlobo
Comment options

Comment options

You must be logged in to vote
0 replies
Comment options

You must be logged in to vote
4 replies
@drlobo
Comment options

@Carunga
Comment options

@pmatis
Comment options

@Carunga
Comment options

Comment options

You must be logged in to vote
1 reply
@lspeltie
Comment options

Comment options

You must be logged in to vote
1 reply
@lspeltie
Comment options

Comment options

You must be logged in to vote
1 reply
@redge76
Comment options

Comment options

You must be logged in to vote
2 replies
@bklaesener
Comment options

@BeastleeUK
Comment options

Comment options

You must be logged in to vote
1 reply
@FoxxMD
Comment options

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment