Lightweight IOS version (for IOS 9.3.5

That is a great idea, I will try it!

it work for me

I can indeed download a Home Assistant app on the old iPad.
Great workaround, however custom cards do not work

Same with me for custom cards. So glad it’s back and working to some level.

How can I default HA home page on a specific device ? I’m going to need to create a page with no custom cards :confused:

Also,

  • some entities just don’t display, do people have this on a standard entity card?
  • some badges aren’t displaying, i tried reordering but same as entity card… only some work

Mine won’t login. iPad 2 with 9.3.5, tells me wrong username/password every time when I can login just fine on my phone. Anybody has this working for them?

Hi, I downloaded Home Assistant app to my parents Ipad 2 like in you’r post - but the app keeps crashing when I try to open it. Anybody alse with this problem?

I have the same it always says that I typed the wrong password.

1 Like

Any solution to use HA in IOS 9.3.5?

I use Chrome-VNC:

https://community.home-assistant.io/t/wall-mount-with-ipad-2/223520/14?u=dominikw

Same here. I was able to install it through the family sharing, but now it’s always saying there is an error with the password. Did you find a solution?

I just found one
give auth on config for ipad ip

homeassistant:
  auth_providers:
    - type: trusted_networks
      trusted_networks:
        - 192.168.x.xxx
        - ::1
      allow_bypass_login: true
    - type: homeassistant

Works for me!

3 Likes

I set this up exactly like this, but it seems not to work for me and it works for me (had a configuration error). While reading the explanation in the on-line help here: Authentication providers - Home Assistant
I see that this only works if your setup meets this requirement:

Assuming you have only the owner created though onboarding process, no other users ever created.

I have several users created in Home Assistant, so this will never work for me.
An alternative would be this, but I have not got this working yet, which now works for me:

1 Like

Hey, can you explain it how did you do?

I’m trying to do the same and I’m lost

Hi, is it still working for you? I get stuck on “Initializing”, never logs in on iPad2 9.3.5

Does it still work for you?

Also, n00b question, what does the ::1 mean?

Where I can find family section on my ipad3 9.3.6?

1 Like

Here is the solution that worked for me:

Lovelace UI is incompatible with iOS 9.3.5 the latest version for old iPads.

Behavior: you can connect to the homeassistant but after login you see “initializing” and wait forever.

Reason: Lovelace UI uses Polymere Javascript framework which needs newer browsers like Safari 11

Updating to the last 2 supported Browsers (Dolphin (tested), iCab (not tested €€€)) do not work because Dolphin uses iOS builtin Webkit Browserengine.

What works for some people: install homeassistant app on an iphone of a family member and then on the old ipad in appstore under family sharing (de: Familienfreigabe) you can download the latest compatible version of that app.

Solution: 2 steps

  1. the last version of homeassistant docker container that kind of works with workaround is: 2021.12
    Next version 2022.1 does not, even with workaround. 2021.12 has working knx integration

  2. login token does still not work with 2021.12 so you need to switch to an alternatin authentication method, like trusted networks


Here is what you need to do (in this order !!!)

sudo docker pull homeassistant/home-assistant:2021.12

 sudo docker run -d \
  --restart unless-stopped \
  --name=homeassistant \
  -h homeassistant \
  -e PUID=1001 \
  -e PGID=1001 \
  -e TZ=CET \
  --net=host \
  -v homeassistant:/config \
     homeassistant/home-assistant:2021.12
  1. connect on a PC and configure a user (doesn’t work with trusted networks)

http://homeassistant.local:8123

  1. enable trusted networks in configuration.yaml (insert first 5 rows end change to your net adress)

sudo nano /var/lib/docker/volumes/homeassistant/_data/configuration.yaml

homeassistant:
  auth_providers:
    - type: trusted_networks
      trusted_networks:
        - 192.168.8.0/24

# Configure a default setup of Home Assistant (frontend, api, etc)
default_config:

# Text to speech
tts:
  - platform: google_translate

group: !include groups.yaml
automation: !include automations.yaml
script: !include scripts.yaml
scene: !include scenes.yaml
knx: !include knx.yaml      # if you need knx integration

  1. (optional) add your knx configuration (no need for configuring IP interface or IP router)
    this is my knx.yaml:


---
#knx:

  light:
  - name: Deckenlicht_Glastüre
    address: 0/0/4
  - name: Bar_Licht1
    address: 0/0/10
  - name: Wandlicht_Glastüre_Stiege
    address: 0/0/11

  cover:
  - name: Raffstore_Küche_Hoch_Tief
    move_long_address: 1/0/12
  - name: Raffstore_Küche_Stop
    move_long_address: 1/0/13
  - name: Raffstore Küche Pos1
    position_address: 1/0/27
  - name: Raffstore Küche Pos2
    position_address: 1/0/28

  switch:
  - name: Sofa_Stehlampe_steckdose_rechts
    address: 0/0/3
  - name: Alles_Aus1
    address: 0/5/1
  - name: Stiege_Steckdose_Christbaum
    address: 2/0/11

  sensor:
  - name: Strommessung_all_abfragen
    state_address: 5/0/0
    type: "active_energy"
    state_class: "total_increasing"

  1. restart homeassistant
    (ether via web browser on PC or via:

docker restart homeassistant

)

  1. open safari on your iPad2 (iOS 9.3.5) and open the url:

http://homeassistant.local:8123

select your user and have fun!

What is the current way to access HA on old iPad?

I see that it is possible to use with via Firefox.

Is there any way to connect old Home Assistant iOS app (1.5.1) with the server? I tried different options to login (auth legacy etc.), but it doesn’t work. I tried to use auth_providers with trusted_networks - still it tries to login thru the browser.