Kincony A8 initial setup

I am slowly bringing floor heating to some rooms, and decided I would use a kincony a8 board to pilot the valves for the different circuits.

So I got this board and was not sure where to start. I found this link which was simple enough to give it a try.

It worked nicely, although this was actually aimed at esphome integration, which is not (yet) what I want. I would rather see how far I can get with an isolated solution, not depending on my homeassistant setup.

3 minutes to read

Mikrotik CAP setup

Setting up a minimal configuration on a Mikrotik device sometime requires a subtle sequence where access method changes so as to avoid cutting the branch you’re sitting on.

Layer 2 connection

I’ve often found mactelnet to work when winbox would not, so don’t forget to give it a try.

sudo mactelnet AA::BB:CC:DD:EE  -n  -u admin -p ""

Wifi connection

Sometime a wifi setup can give a more stable connection when changing vland and bridge settings :

2 minutes to read

EFR32MG21 Zigbee Adapter

Context

  • cheap noname adapter with EFR32MG21 chip

  • comes with a deprecated (from zigbee2mqtt’s pov) firmware that works with this setup :

serial:
  port: /dev/zigbee2mqtt      # Use the correct serial port (or create a udev rule for a persistent symlink)
  adapter: ezsp               # Specify the new EFR32MG21 adapter (EZSP protocol)

However, zigbee2mqtt logs about deprecation and missing features. Was this a waster of money on a doomed electronic crap ? Maybe not…

One minute to read

2024 09 15 Pigallery

  • pigallery2
  • used the source
  • set node version with asdf

/opt/pigallery2 :

asdf local nodejs 18.20.0

And edited the systemd service to load asdf

ExecStart=/bin/bash -c '. /home/mikael/.asdf/asdf.sh && npm start'
WorkingDirectory=/opt/pigallery2

But also do like this:

python -m venv .
source bin/activate

change shebang towards #!/opt/phockup/bin/python3

One minute to read

Home Assistant update notes

read the docs : https://www.home-assistant.io/installation/linux

  • stop service

  • with same python version

1cd homeassistant
2source bin/activate
3pip install --upgrade homeassistant
  • with new python version
1mv homeassistant homeassistant-oldpython
2
3mkdir homeassistant & cd homeassistant
4asdf install python 3.12.5
5asdf local python 3.12.5
6
7python -m venv .
8source bin/activate
9pip install homeassistant
One minute to read

2024 08 24 Update Zwave Js Server

  • stop services (systemctl | grep zwave)

  • do the update

1cd zwave-js-server
2
3git pull origin master
4
5npm install
  • restart services
One minute to read

2024 08 24 Update Monica

  • go to /var/www/monica and read the doc at docs/installation/update.md

  • open a shell a www-data

1sudo su www-data -s /bin/bash
  • fetch latest branches
1git fetch -a 
  • follow the rest of the documentation…
One minute to read