LG webOS Smart TV doesn't work after update to 2021.12.3

Hi all,
I have this code in configuration.yaml:

#integrazione oled
wake_on_lan: # enables `wake_on_lan` domain

webostv:
  host: 192.168.0.11
  name : Tv sala
  turn_on_action:
    service: wake_on_lan.send_magic_packet
    data:
      mac: xx-xx-xx-xx-xx-xx

it worked like a charm until I updated HA core to 21.12.3…
what could I check?

Mine works ok. Just tested and everything works as before.

my 3 lg tv’s also work fine

One update my LG tv entity changed from: media_player.lg_webos_livingroom_tv to media_player.lg_webos_livingroom_tv_2 (extra _2 end on name). Check if you have maybe same problem?


I have media_player-oled_lg grayed…

image

Seems there is a problem with them webos integration, but I nothing changed after the HA update

2021-12-20 08:02:15 ERROR (MainThread) [homeassistant.setup] Setup failed for webostv: Unable to import component:
IMPORTANT: PLEASE READ THIS FOR ADVICE ON HOW TO SOLVE THIS ISSUE!
Importing the numpy C-extensions failed. This error can happen for
many reasons, often due to issues with your setup or how NumPy was
installed.
We have compiled some common reasons and troubleshooting tips at:
https://numpy.org/devdocs/user/troubleshooting-importerror.html
Please note and check the following:
* The Python version is: Python3.9 from "/srv/homeassistant/bin/python3"
* The NumPy version is: "1.21.4"
and make sure that they are the versions you expect.
Please carefully study the documentation linked above for further help.
Original error was: libcblas.so.3: cannot open shared object file: No such file or directory

Solved…

Before the error was:

libf77blas.so.3: cannot open shared object file: No such file or directory

I solved by:

sudo apt-get install libatlas-base-dev

At second the error was:

/lib/arm-linux-gnueabihf/libm.so.6: version `GLIBC_2.27' not found (required by /srv/homeassistant/lib/python3.7/site-packages/numpy/core/_multiarray_umath.cpython-37m-arm-linux-gnueabihf.so)

And solved running the following command inside the VENV:

pip3 install numpy --no-cache-dir --force-reinstall --no-binary :all:

And deleting the webos.conf and rebooting raspberry…

Hope this help someone…