Search results

  1. 3

    Multi-IO 8-Layer Stackable HAT digital inputs with Home assistant

    Hi! configuration.yaml: SMmultiio: - stack: 0 uin: channels: "1,2" update_interval: 5 # <- (OPTIONAL) set the update interval to 5 seconds uout: channels: "1,2" This is a simple setup, uin (number 1) (on the left) reads from uout (number 1) (on the right). You may...
  2. 3

    Multi-IO 8-Layer Stackable HAT digital inputs with Home assistant

    Hi James, Thanks for reaching out! The digital inputs are indeed supported in HA. They’re implemented under the entity name `opto_in` since they are based on opto coupling. There were missing from the README.md, but they are now added in here too. Depending on your use case, you may also want...
  3. 3

    8 thermocouple / Pi5 power supply and home assistant integration

    Hi, The Home Assistant integration for the 8-channel thermocouple HAT is now implemented and available at https://github.com/SequentMicrosystems/SMtc-ha. This integration includes: Select entities: Easy selection of all supported sensor types. Sensor entities: Temperature readings for each...
  4. 3

    Eight MOSFETS Home Assistant Integration pi 4b

    I am glad you got it working! I will create a troubleshooting section in the documentation that covers common issues, including yours.
  5. 3

    Eight MOSFETS Home Assistant Integration pi 4b

    Hi James, I looked into the issue and couldn't find anything, for me it works fine on any platform. Make sure the integration is installed correctly(maybe redownload). After that, could you share your configuration.yaml and a screenshot with the overview? For me they look like this on pi 4b with...
  6. 3

    Weird 8 relay hat results on a Raspberry Pi 4b

    Yes, just remove everything, only SM8relind should remain, which provides the lib8relind for import. You can never go wrong by uninstalling more, you can always install SM8relind with a simple pip install(i.e when in venv `pip install SM8relind` or `sudo python setup.py install` inside...
  7. 3

    Weird 8 relay hat results on a Raspberry Pi 4b

    It seems there is a redundant package called lib8relind which has priority over the SM8relind. To uninstall it, run the following command ```bash sudo pip uninstall lib8relind # or, if that doesn't work sudo rm -rf /home/b2400/lib/python3.11/site-packages/lib8relind sudo rm -rf...
  8. 3

    Weird 8 relay hat results on a Raspberry Pi 4b

    It has some debug printing for further investigation (marked with comments). These are the key things i am watching for: print(lib8relind.__file__) # Check if lib8relind is the correct one print("DEBUG: ", relay, lib8relind.get(0, relay), lib8relind.get_all(0)) # Debug print Could you please try...
  9. 3

    Weird 8 relay hat results on a Raspberry Pi 4b

    Hi everyone! For me, gwfami's python code is working fine. Could you try the following script and share your full output? ```python #!/usr/bin/env python3 import time import lib8relind print(lib8relind.__file__) # Check if lib8relind is the correct one from getkey import getkey relay = 0...
Top