I used to install fully kiosk on amazon fire tablet (10) and it was working flawlessly however for a couple of days amazon fire tablet started to disconnect from internet by itself (which I understand after looking for the issue on the internet, it is a common problem with amazon fire tablets).
Everytime I open the screen, wifi connection needs to be refreshed. My question is that is there anyone suffering from this problem? How do you use fire tablet and home assistant while it disconnects itself constantly?
I found a solution, in a nutshell you should ping amazon fire tablet for being awake all the time.
you can do this via cronjob or with using nodered like below flow
https://flows.nodered.org/flow/2a4ee34d62c1fc890e87e536cd34897f
or
* * * * * ping -c2 192.168.0.102
* * * * * ( sleep 5 ; ping -c2 192.168.0.102 )
* * * * * ( sleep 10 ; ping -c2 192.168.0.102 )
* * * * * ( sleep 15 ; ping -c2 192.168.0.102 )
* * * * * ( sleep 20 ; ping -c2 192.168.0.102 )
* * * * * ( sleep 25 ; ping -c2 192.168.0.102 )
* * * * * ( sleep 30 ; ping -c2 192.168.0.102 )
* * * * * ( sleep 35 ; ping -c2 192.168.0.102 )
* * * * * ( sleep 40 ; ping -c2 192.168.0.102 )
* * * * * ( sleep 45 ; ping -c2 192.168.0.102 )
* * * * * ( sleep 50 ; ping -c2 192.168.0.102 )
* * * * * ( sleep 55 ; ping -c2 192.168.0.102 )