Unfornately, OpenStreetMap doesn’t own/supply any satellite images. You can use a Google Maps camera card as described in the project documentation if you want satellite. That does require a few steps to get your own API key and you need to enable billing in Google, but I’ve never been charged.
Neat. I had considered that, looks like it doesn’t do the history/heatmap portion of it, or do you know otherwise? Wonder if one can use a screenshot/static image with the heatmap projected on it… hmmm
is there anyway at all to force an auto-mower to go to one specific zone?
to be fair I have two guide wires but even with Husqvarna app I don’t think its possible
secondary question, is there a way to use a drone pictures instead of a map?
although saying that, I don’t see how we could calibrate the coordinate with the picture?
perhaps setup with google map first, copy the picture and try to crop the picture?
To your first question: yes, the app can do it. Menu > Settings > Installation > Lawn Coverage
GPS is sexy and all but if you turn it off you can direct your mower so many meters along such and such guide wire x% of the time. I found it better than GPS in the end.
Has anyone ever tried to connect the automower via Bluetooth through an esp32? I would like to start-pause-dock my 315 (which is without sim/wifi connection)
Since today I am getting the following error and Automower Plugin is not starting.
Traceback (most recent call last):
File "/usr/src/homeassistant/homeassistant/setup.py", line 255, in _async_setup_component
result = await task
File "/usr/local/lib/python3.9/concurrent/futures/thread.py", line 52, in run
result = self.fn(*self.args, **self.kwargs)
File "/config/custom_components/automower/__init__.py", line 223, in setup
hass.data[DOMAIN]['devices'].append(AutomowerDevice(robot, api))
File "/config/custom_components/automower/__init__.py", line 239, in __init__
self._model = meta['model']
KeyError: 'model'
Me too
I thought I screwed something up in my setup and restored a two day old full backup with no luck.
It seems the problem began when I restarted HA today for other reasons. Until then it worked perfectly.
Any ideas what causes this?
I have checked the code and it seems that Husqvarna API does not reply with ‘model’ field anymore (I have not found it in the response). I have simply changed the code to self._model = 'G' # meta['model']
to avoid the problem. See MODELS list above for a code that corresponds to your model.