Open rooferdave opened 1 year ago
I join, a similar problem with Raspeaker Core V2. Pixel Ring it works fine for me, but HermesLedControl can't control the LEDs
OS Debian 10 Python 3.7.3
./venv/bin/python3 main.py --debug=True --engine=rhasspy --hardware=respeakerCoreV2 --mqttServer=localhost --mqttPort=1883 --clientId=respeaker --leds=12 --pattern=google --gpioPin=12 --pathToConfig=/home/respeaker/.config/rhasspy/profiles/ru/profile.json
2023-03-28 02:33:22,594 [MainThread] - [INFO] - Initializing HermesLedControl
2023-03-28 02:33:22,601 [MainThread] - [INFO] - Initializing Rhasspy settings
2023-03-28 02:33:22,603 [MainThread] - [INFO] - Loading configurations
2023-03-28 02:33:22,606 [MainThread] - [INFO] - Loaded 14 hardware references
2023-03-28 02:33:22,608 [MainThread] - [INFO] - - Mqtt server set to localhost
2023-03-28 02:33:22,609 [MainThread] - [INFO] - - Mqtt port set to 1883
2023-03-28 02:33:22,611 [MainThread] - [INFO] - - Client id set to respeaker
2023-03-28 02:33:22,612 [MainThread] - [INFO] - - Hardware set to Respeaker Core v2
2023-03-28 02:33:22,613 [MainThread] - [INFO] - - Using google as pattern with 12 leds
2023-03-28 02:33:22,615 [MainThread] - [INFO] - Initializing leds controller
/home/respeaker/HermesLedControl/venv/lib/python3.7/site-packages/gpiozero/devices.py:290: PinFactoryFallback: Falling back from rpigpio: This module can only be run on a Raspberry Pi!
'Falling back from %s: %s' % (name, str(e))))
/home/respeaker/HermesLedControl/venv/lib/python3.7/site-packages/gpiozero/devices.py:290: PinFactoryFallback: Falling back from lgpio: No module named 'lgpio'
'Falling back from %s: %s' % (name, str(e))))
/home/respeaker/HermesLedControl/venv/lib/python3.7/site-packages/gpiozero/devices.py:290: PinFactoryFallback: Falling back from rpio: No module named 'RPIO'
'Falling back from %s: %s' % (name, str(e))))
/home/respeaker/HermesLedControl/venv/lib/python3.7/site-packages/gpiozero/devices.py:290: PinFactoryFallback: Falling back from pigpio: No module named 'pigpio'
'Falling back from %s: %s' % (name, str(e))))
/home/respeaker/HermesLedControl/venv/lib/python3.7/site-packages/gpiozero/devices.py:290: PinFactoryFallback: Falling back from native: unknown old-style revision "0"
'Falling back from %s: %s' % (name, str(e))))
2023-03-28 02:33:22,839 [MainThread] - [INFO] - Device not using gpiozero or mraa, ignore power: name 'mraa' is not defined
2023-03-28 02:33:22,866 [MainThread] - [INFO] - Hermes Led Control started
2023-03-28 02:33:23,367 [Thread-3] - [DEBUG] - New animation "wakeup" has id c50bf5c7-ca64-4c82-984b-7fefb92830e0
2023-03-28 02:33:23,370 [Thread-3] - [DEBUG] - Timeout is setting duration from 0 to 120
2023-03-28 02:33:23,377 [Thread-3] - [DEBUG] - New animation "idle" has id 32e8dfaa-b5a2-4401-a24b-a2c5c45bda2b
^C2023-03-28 02:33:30,086 [MainThread] - [INFO] - Shutting down Hermes Led Control
I managed to start the LEDs through hermesledcontrol, but for some reason it works through debugging mode, and if you run it through the service, it doesn't work and there is clearly something with rights and with launching from a virtual environment. How to make LEDs work? Interestingly, if you run the python file to turn on the LEDs via the console and simultaneously access the column, the hermesledcontrol color effects will work. It's as if hermesledcontrol lacks permissions or access to spidev0.0
and `spidev0.1'. What are your thoughts on this? What are the possible solutions to the issue?
How do I start the LEDs?
There are 12 LEDs on the Raspeaker Core v2 board and they can be turned on. These LEDs are controlled via the files spidev0.0
and spidev0.1
which are located in `/dev'.
In order for the LEDs to turn on, you need to run them as root
or via sudo
, since there are two files spidev0.0
and spidev0.1
have a user
:group
root
:spi
In order not to run the LEDs through root, but through the user respeaker
, you can do the following
View User groups
groups respeaker
Add the user respeaker
to the group spi
and sudo
sudo useradd respeaker -G spi,sudo
Allow the 'respeaker` user to run python scripts with sudo without entering a password
Let's create our sudoers.d
with the name respeaker
sudo visudo -f /etc/sudoers.d/respeaker
Let's add the user respeaker
and indicate that only python scripts can be run without a password
respeaker ALL=NOPASSWD: /usr/bin/python, /usr/bin/python2, /usr/bin/python3
Download python scripts for turning on LEDs
Now let's check the launch of the python script c sudo without input to turn on the LEDs
If we have Debian 11 installed and the python script needs to be run with python version 2, then we need to install python version 2 and we will run with python version 2
sudo apt install python
You can run the python version 2 script. The password will not be requested when entering sudo
sudo python /home/respeaker/led_wakeup.py
or
sudo python2 /home/respeaker/led_wakeup.py
Next, stop hermesledcontrol
sudo systemctl stop hermesledcontrol
Edit the file HermesLedControl.py
nano /home/respeaker/HermesLedControl/models/HermesLedControl.py
Add import subprocess
and subprocess.call("sudo python2 /home/respeaker/leds/led_wakeup.py", shell=True)
Let's go to the HermesLedControl folder
cd /home/respeaker/HermesLedControl
Let's run it in debug mode
./venv/bin/python main.py --debug=True --engine=rhasspy --hardware=respeakerCoreV2 --mqttServer=localhost --mqttPort=1883 --clientId=respeakerv2 --leds=12 --pattern=google --pathToConfig=/home/respeaker/.config/rhasspy/profiles/ru/profile.json
And the LEDs light up. I can't understand why the LEDs don't light up without these manipulations and how can they be started normally?
For reference, I have compiled new images from debian 10 and 11 for raspeaker core v2, you can download here
I found the cause of the problem and understood why HermesLedControl could not control the LEDs. After I fixed it, HermesLedControl worked perfectly and the LEDs glow as they should. HermesLedControl cannot turn on the LEDs itself.
To turn on the LEDs, I used this template respeaker_v2_pixel_ring.py and the LEDs lit up and this pattern was the culprit that HermesLedControl could not control the LEDs. I discovered this purely by chance when I was creating several files with different effects to turn the LEDs on and off, and here I discovered that if I turn on the LEDs, HermesLedControl will be able to control the LEDs. I double-checked and my accidental detection confirmed it.
Download the archive file leds_ring.zip
wget https://github.com/DivanX10/ReSpeaker-Core-v2-Rus/raw/main/files/leds_ring.zip
Unpack the archive file leds_ring.zip
unzip leds_ring.zip
Launch turn_on_leds.py
you can use the command. Specify the path to the file
sudo /home/respeaker/leds_ring/python2 turn_on_leds.py
The LEDs should turn on for 3 seconds and go out.
In the HermesLedControl settings, we do not touch anything, we leave it as it is, even if you specify a different host and port in the rhasspy settings, all settings are pulled from rhasspy automatically thanks to this line of code
pathToConfig: "/home/respeaker/.config/rhasspy/profiles/ru/profile.json"
This is how the configuration' settings should look like.yml
and they do not need to be changed, we do not prescribe anything there, except for pattern. You can specify:
engine: "rhasspy"
pathToConfig: "/home/respeaker/.config/rhasspy/profiles/ru/profile.json"
hardware: "respeakerCoreV2"
pattern: "google"
enableDoA: false
You can open configuration.yml like this
nano /home/respeaker/.config/HermesLedControl/configuration.yml
If you changed the pattern
, then you definitely need to restart HermesLedControl
sudo systemctl restart hermesledcontrol
Running the script turn_on_leds.py turns on the LEDs and they will work until the OS is restarted, but once the OS is restarted, HermesLedControl will not be able to control the LEDs, so we will create an autoload of the python script turn_on_leds.py
Creating the ledsring.service
nano /etc/systemd/system/ledsring.service
Adding ledsring.service to the created file
[Unit]
Description=Leds Ring
After=multi-user.target
[Service]
Type=simple
ExecStart=/usr/bin/python2 /home/respeaker/leds_ring/turn_on_leds.py
[Install]
WantedBy=multi-user.target
Restarting the daemon
sudo systemctl daemon-reload
Activating the startup of the ledsring.service
sudo systemctl enable ledsring.service
Let's start the ledsring.service service
sudo systemctl start ledsring.service
For the test, we reboot the system and if everything is done correctly, then when accessing Rhasspy, the LEDs will start flashing
reboot
For reference
1) Created an assembly for ReSpeaker с Debian 11 + Rhasspy + HermesLedControl 2) I created a 3d model of the case for Raspeaker for a speaker with a phase inverter that amplifies the sound and creates a surround sound
What I don't get is that you use pixel_ring, which is apa102, what respeakerCoreV2 uses so basically it's the same
I think Respeaker Core v2 mraa uses gpio 12 to power instead of gpio 5. Can you check in interfaces\apa102.py
, line 26 and change mraa.Gpio(5)
to mraa.Gpio(12)
and restart HLC
Another thing, in your logs, it shows
2023-03-28 02:33:22,839 [MainThread] - [INFO] - Device not using gpiozero or mraa, ignore power: name 'mraa' is not defined
where it should be using it... Try installing it with apt-get install python-mraa
but it should be done by the respeaker installer
I think Respeaker Core v2 mraa uses gpio 12 to power instead of gpio 5. Can you check in
interfaces\apa102.py
, line 26 and changemraa.Gpio(5)
tomraa.Gpio(12)
and restart HLC
Thank you for responding. I tried to do as you said, but it didn't work out.
I have python-mraa installed и я использую mraa according to this instruction. If you enter the command `mraa-gpio list', the pins are displayed
where it should be using it... Try installing it with apt-get install python-mraa but it should be done by the respeaker installer
as I understood, the LEDs need to be turned on every time after a debian reboot. For some reason, if you turn on the LEDs through the pixel ring script, then HermesLedControl can control the LEDs
import time
from pixel_ring import pixel_ring
import mraa
import os
en = mraa.Gpio(12)
if os.geteuid() != 0 :
time.sleep(0)
en.dir(mraa.DIR_OUT)
en.write(0)
pixel_ring.set_brightness(50)
if __name__ == '__main__':
pixel_ring.on()
time.sleep(3)
en.write(1)
What I can see from your logs is that: 2023-03-28 02:33:22,839 [MainThread] - [INFO] - Device not using gpiozero or mraa, ignore power: name 'mraa' is not defined
which means power is ignored. So the interface doesn't write the leds as on in interfaces\Interface.py
on line 58 and/or 61
Now, it's not using "power" because apa102.py, on line 29 spits that log, which means mraa import failed, which means it's not accessible to python. Did you by any chances install mraa with sudo? Or install anything python related using sudo? If yes, that's the issue, never use sudo to install pip deps
After thinking a little, it might also be because HLC is running in a venv, the venv is created before python-mraa is installed, so it's not available for it...
Or install anything python related using sudo?
Yes, I installed python-mraa via sudo as specified in documentation
sudo apt install -y python-mraa python-upm libmraa1 libupm1 mraa-tools
I will try to install python-mraa without sudo, and in interfaces\apa102.py, line 26 and change mraa.Gpio(5)to mraa.Gpio(12) and restart HLC and I will unsubscribe as I check
It didn't help. I installed debian from 0, installed Rhasspy, HermesLedControl, python-mraa did not install from root, but did it through sudo, as a result I can run python examples/respeaker_v2_pixel_ring.py without sudo. Running the template python examples/respeaker_v2_pixel_ring.py
the LEDs light up.
It is impossible to install apt install -y python-mraa without sudo, it does not give
In the file apa102.py, which is located /home/respeaker/HermesLedControl/interfaces/apa102.py
, I specified in the line mara.Gpio(12)
Launched HermesLedControl, there is still "Device not using gpiozero or mraa, ignore power: name 'mraa' is not defined`"
you run pixel-ring from outside HLC venv, which gives it access to the global mraa package. HLC tries to load it but fails as it runs in its own virtual environment. The solution is simple, get HLC to be able to load mraa, in other words, make it available in HLC venv. Pixel-ring is just a wrapper around the apa102.py driver, and does the same HLC does. I'll try to find a solution to get mraa in you venv
Ok, I tried something... https://github.com/project-alice-assistant/HermesLedControl/tree/fix-respeakerCoreV2
Installing mraa before venv creation and making the venv creation inherit from system packages to confirm my theory. You'll have to fresh install HLC to try it. It's not optimal as it forces pythn-mraa install for every users even those not needing it, but well, give it a shot.
If not working, do change the GPIO pin from 5 to 12 and try again
So, here 2 things for you to try:
This tries to install python-mraa and then create the virtual-environement, with the global packages flag, which should take it with into HLC venv. I don't like it, because it forces everybody to install mraa which is only used by respeaker Core
Second: https://github.com/project-alice-assistant/HermesLedControl/commit/0ae9cfda2123d323045edf2fdbcc8d8ba0fca020 and https://github.com/project-alice-assistant/HermesLedControl/commit/39c0d23a95486298aaff0a63183b34e00e687adf
This doesn't install mraa on HLC install, but only when respeaker core v2 is selected. It is then copied from system packages into the venv itself before activating it. As I'm not home and don't have access to any debian os, I cannot confirm the copy command to work as I don't know if it's installed there
It didn't work. I repeated the installation, put it from scratch and did everything as usual. I still can't get HLC to work with your method, and by running the script, the LEDs work. I even deleted pixel_ring as indicated by your command pip3 uninstall -y pixel_ring
Moved to the HermesLedControl folder
cd /home/respeaker/HermesLedControl
and started debugging
./venv/bin/python main.py --debug=True --engine=rhasspy --hardware=respeakerCoreV2 --mqttServer=localhost --mqttPort=1883 --clientId=respeakerv2 --leds=12 --pattern=google --pathToConfig=/home/respeaker/.config/rhasspy/profiles/ru/profile.json
Have you tried to copy python-mraa to the HLC venv?
Have you tried to copy python-mraa to the HLC venv?
I couldn't stand it, I didn't understand what needed to be done. You can describe the detailed steps, I will repeat.
Perhaps you mean to install python-mraa python-upm libmraa1 libupm1 mraa-tools
in a python virtual environment? I don't know how to work with the python virtual environment and I don't know how to work properly there.
Or maybe you mean move the pixel_ring folder to venv?
I don't know if this information will help you
It was found out experimentally that GPIOs will be available if you install the packages python-mraa python-upm libmraa1 libupm1 mraa-tools
on debian 9, and if you put it on debian 10, GPIOs will be unavailable, so before upgrading to Debian 10 or 11, you must install the packages python-mraa python-upm libmraa1 libupm1 mraa-tools
on debian 9 and as soon as GPIOs are active and they will be visible through the mraa-gpio list
command, then you can safely upgrade to Debian 10 or 11. Rhasspy only works on Debian 10, you can install it on Debian 11, but then you need to rebuild the package because of the libgfortran5 package, since libgfortran4 is in the build, and libgfortran5 is needed. Therefore, in order for Rhasspy Debian to work, you need to upgrade to version 10 or 11. This is where the problem arises that for the LEDs to work, the packages python-mraa python-upm libmraa1 libupm1 mraa-tools
must be installed on debian 9, and after upgrading to Debian 10 or 11, we install Rhasspy and HLC.
Check my second solution I gave earlier. Locate where python-mraa is installed and make a copy of it in your HLC venv
I tried, this option does not work, I even copied to different places, tried with respeaker and root rights. There is no python-mraa folder, there are only files mraa.py, mraa.pyc, _mraa.arm-linux-gnueabihf.so
But this option worked, but on the condition that you need to run a python script to turn on the sudo python turn_on_leds.py , but it works until you reboot Debian
cd /home/respeaker/HermesLedControl
source ./venv/bin/activate
git clone --depth 1 https://github.com/respeaker/pixel_ring.git
cd pixel_ring
pip install setuptools-scm
pip install -U -e .
cd
cd leds_ring/
sudo python turn_on_leds.py
File apa102.py which is located /home/respeaker/HermesLedControl/interfaces/apa102.py, no need to edit, works with mara.Gpio(5)
Ok, so if you have mraa.py in your HLC venv, HLC should not make an error or tell you the device is not using mraa anymore when starting?
Ok, so if you have mraa.py in your HLC venv, HLC should not make an error or tell you the device is not using mraa anymore when starting?
There are errors about mraa, but the LEDs work
I'll get a respeaker core v2 back and will try. The solution is simple, have mraa in your HLC venv. I don't have any devices that use mraa, can't check now
Where will I get ready-made python-mraa? I use the one offered by respeaker, and installing python-mraa from respeaker, it is not in HLC venv.
Link to respeaker repositories, from where this python-mraa is put http://respeaker.seeed.io/deb/dists/stretch/
I'll get a respeaker core v2 back and will try. The solution is simple, have mraa in your HLC venv. I don't have any devices that use mraa, can't check now
Any Luck? You were on to somthing.
Do not remove fields, answer them, otherwise your bug will be reported as invalid and closed
How I did start SLC, with what arguments ./venv/bin/python3 main.py --debug=True --engine=rhasspy --hardware=respeakerCoreV2 --mqttServer=10.0.2.108 --mqttPort=1883 --mqttUsername=homefix --mqttPassword=Flash1 --clientId=corev2 --leds=12 --pattern=google --defaultState=on
Led device name
ReSpeaker Core V2 boot from sdcard...also tried with booting from mmc(using updated corev2 linux respeaker-debian-9-iot-flasher-20180801-4gb.img.xz and also used:respeaker-debian-9-iot-sd-20180801-4gb.img
The bug
Obviously not a bug I cannot find anyone else with this problem, Sure somthing i, not doing right. The patterns work if i use "screen -S pixelring" and execute "python ~/pixel_ring/examples/respeaker_v2_pixel_ring.py" then "cntrl a-d" to exit screen then "./venv/bin/python3 main.py --debug=True --engine=rhasspy --hardware=respeakerCoreV2 --mqttServer=10.0.2.108 --mqttPort=1883 --mqttUsername=homefix --mqttPassword=Flash1 --clientId=corev2 --leds=12 --pattern=google --defaultState=on". The Lights Dance and Shine (with the interferance of the python script running at the same time messing up the google pattern)
If I skip the "python ~/pixel_ring/examples/respeaker_v2_pixel_ring.py" step.....No Lights
Debug output
This is with respeaker_v2_pixel_ring.py running in the background:................
~/HermesLedControl$ ./venv/bin/python3 main.py --debug=True --engine=rhasspy --hardware=respeakerCoreV2 --mqttServer=10.0.2.108 --mqttPort=1883 --mqttUsername=homefix --mqttPassword=Flash1 --clientId=corev2 --leds=12 --pattern=google --defaultState=on 2023-02-10 13:56:48,508 [MainThread] - [INFO] - Starting Hermes Led Control version 3.0.4 2023-02-10 13:56:48,510 [MainThread] - [INFO] - Reading command line arguments 2023-02-10 13:56:48,534 [MainThread] - [DEBUG] - Applying configuration file 2023-02-10 13:56:48,537 [MainThread] - [INFO] - Trying to load configuration from '/home/respeaker/.config/HermesLedControl/configuration.yml' 2023-02-10 13:56:48,549 [MainThread] - [INFO] - Configuration file read successfully 2023-02-10 13:56:48,550 [MainThread] - [DEBUG] - 'engine' was provided as command line argument. Ignoring config file. 2023-02-10 13:56:48,552 [MainThread] - [DEBUG] - 'hardware' was provided as command line argument. Ignoring config file. 2023-02-10 13:56:48,554 [MainThread] - [DEBUG] - 'pattern' was provided as command line argument. Ignoring config file. 2023-02-10 13:56:48,555 [MainThread] - [DEBUG] - Applying default values 2023-02-10 13:56:48,557 [MainThread] - [DEBUG] - Namespace(activeHigh=True, callPattern=None, clientId='corev2', conErrorPattern=None, debug=True, defaultBrightness=50, defaultState='on', dndPattern=None, enableDoA=False, endFrame=None, engine='rhasspy', errorPattern=None, everloopPort=20021, gpioPin=None, hardware='respeakerCoreV2', hermesLedControlConfig='~/.config/HermesLedControl/configuration.yml', idlePattern=None, leds=12, listenPattern=None, matrixIp='127.0.0.1', messagePattern=None, mqttPassword='Flash1', mqttPort='1883', mqttServer='10.0.2.108', mqttUsername='homefix', offListener='hermes/hotword/toggleOn', offPattern=None, pathToConfig='', pattern='google', pid=None, pureGpioPinout=[], setupModePattern=None, speakPattern=None, startPattern=None, stopPattern=None, successPattern=None, thinkPattern=None, timeout=120, updatingPattern=None, vid=None, wakeupPattern=None) 2023-02-10 13:56:48,560 [MainThread] - [INFO] - Initializing HermesLedControl 2023-02-10 13:56:48,568 [MainThread] - [INFO] - Initializing Rhasspy settings 2023-02-10 13:56:48,570 [MainThread] - [INFO] - Loading configurations 2023-02-10 13:56:48,573 [MainThread] - [INFO] - Loaded 14 hardware references 2023-02-10 13:56:48,575 [MainThread] - [INFO] - - Mqtt server set to 10.0.2.108 2023-02-10 13:56:48,577 [MainThread] - [INFO] - - Mqtt port set to 1883 2023-02-10 13:56:48,578 [MainThread] - [INFO] - - Mqtt username set to homefix 2023-02-10 13:56:48,580 [MainThread] - [INFO] - - Mqtt password set! 2023-02-10 13:56:48,581 [MainThread] - [INFO] - - Client id set to corev2 2023-02-10 13:56:48,583 [MainThread] - [INFO] - - Hardware set to Respeaker Core v2 2023-02-10 13:56:48,584 [MainThread] - [INFO] - - Using google as pattern with 12 leds 2023-02-10 13:56:48,586 [MainThread] - [INFO] - Initializing leds controller /home/respeaker/HermesLedControl/venv/lib/python3.7/site-packages/gpiozero/devices.py:290: PinFactoryFallback: Falling back from rpigpio: This module can only be run on a Raspberry Pi! 'Falling back from %s: %s' % (name, str(e)))) /home/respeaker/HermesLedControl/venv/lib/python3.7/site-packages/gpiozero/devices.py:290: PinFactoryFallback: Falling back from lgpio: No module named 'lgpio' 'Falling back from %s: %s' % (name, str(e)))) /home/respeaker/HermesLedControl/venv/lib/python3.7/site-packages/gpiozero/devices.py:290: PinFactoryFallback: Falling back from rpio: No module named 'RPIO' 'Falling back from %s: %s' % (name, str(e)))) /home/respeaker/HermesLedControl/venv/lib/python3.7/site-packages/gpiozero/devices.py:290: PinFactoryFallback: Falling back from pigpio: No module named 'pigpio' 'Falling back from %s: %s' % (name, str(e)))) /home/respeaker/HermesLedControl/venv/lib/python3.7/site-packages/gpiozero/devices.py:290: PinFactoryFallback: Falling back from native: unknown old-style revision "0" 'Falling back from %s: %s' % (name, str(e)))) 2023-02-10 13:56:48,855 [MainThread] - [INFO] - Device not using gpiozero or mraa, ignore power: name 'mraa' is not defined 2023-02-10 13:56:48,890 [MainThread] - [INFO] - Hermes Led Control started 2023-02-10 13:56:49,391 [Thread-3] - [DEBUG] - New animation "wakeup" has id 52077286-12dd-4ea7-8a98-c22e3b9ca5e9 2023-02-10 13:56:49,395 [Thread-3] - [DEBUG] - Timeout is setting duration from 0 to 120 2023-02-10 13:56:49,404 [Thread-3] - [DEBUG] - New animation "idle" has id 07cfdedd-21bf-457c-8b1b-4dd68fff2b04 2023-02-10 13:57:32,079 [Thread-2] - [DEBUG] - On hotword triggered 2023-02-10 13:57:32,084 [Thread-2] - [DEBUG] - New animation "wakeup" has id 90867f42-6b90-465e-996a-22ff30a8c570 2023-02-10 13:57:32,094 [Thread-2] - [DEBUG] - Timeout is setting duration from 0 to 120 2023-02-10 13:57:32,233 [Thread-2] - [DEBUG] - On play finished received but it wasn't for me 2023-02-10 13:57:32,238 [Thread-2] - [DEBUG] - On hotword toggle on triggered 2023-02-10 13:57:32,241 [Thread-2] - [DEBUG] - New animation "idle" has id 7e2f1b15-4ba3-4004-8b2c-851789d6ccf2 2023-02-10 13:57:32,282 [Thread-2] - [DEBUG] - On listen triggered 2023-02-10 13:57:32,286 [Thread-2] - [DEBUG] - New animation "listen" has id 56316273-af2e-4123-9490-f0356656b3c8 2023-02-10 13:57:32,290 [Thread-2] - [DEBUG] - Timeout is setting duration from 0 to 120 2023-02-10 13:57:34,550 [Thread-2] - [DEBUG] - On think triggered 2023-02-10 13:57:34,555 [Thread-2] - [DEBUG] - New animation "think" has id f5fd5e77-1c85-460d-b5bb-ce79b16195b2 2023-02-10 13:57:34,559 [Thread-2] - [DEBUG] - Timeout is setting duration from 0 to 120 2023-02-10 13:57:34,673 [Thread-2] - [DEBUG] - On play finished received but it wasn't for me 2023-02-10 13:57:34,678 [Thread-2] - [DEBUG] - On hotword toggle on triggered 2023-02-10 13:57:34,681 [Thread-2] - [DEBUG] - New animation "idle" has id ae0bfe00-8d52-432b-ab1e-0fa9688fbbb8 2023-02-10 13:57:34,687 [Thread-2] - [DEBUG] - On hotword toggle on triggered 2023-02-10 13:57:34,692 [Thread-2] - [DEBUG] - New animation "idle" has id 68ecc463-aadf-4bcf-9de2-f65c1ef073b2 2023-02-10 13:57:34,696 [Thread-2] - [DEBUG] - On success triggered 2023-02-10 13:57:34,699 [Thread-2] - [DEBUG] - New animation "onSuccess" has id 1c23cbb0-de7e-4d12-b45f-0f9e0b791145 2023-02-10 13:57:34,701 [Thread-2] - [DEBUG] - Timeout is setting duration from 0 to 120 2023-02-10 13:57:34,761 [Thread-2] - [DEBUG] - On say received but it wasn't for me 2023-02-10 13:57:36,217 [Thread-2] - [DEBUG] - On tts finished received but it wasn't for me
This is with WITHOUT respeaker_v2_pixel_ring.py running in the background:................
~/HermesLedControl$ ./venv/bin/python3 main.py --debug=True --engine=rhasspy --hardware=respeakerCoreV2 --mqttServer=10.0.2.108 --mqttPort=1883 --mqttUsername=homefix --mqttPassword=Flash1 --clientId=corev2 --leds=12 --pattern=google --defaultState=on 2023-02-10 13:58:58,851 [MainThread] - [INFO] - Starting Hermes Led Control version 3.0.4 2023-02-10 13:58:58,854 [MainThread] - [INFO] - Reading command line arguments 2023-02-10 13:58:58,879 [MainThread] - [DEBUG] - Applying configuration file 2023-02-10 13:58:58,882 [MainThread] - [INFO] - Trying to load configuration from '/home/respeaker/.config/HermesLedControl/configuration.yml' 2023-02-10 13:58:58,896 [MainThread] - [INFO] - Configuration file read successfully 2023-02-10 13:58:58,898 [MainThread] - [DEBUG] - 'engine' was provided as command line argument. Ignoring config file. 2023-02-10 13:58:58,899 [MainThread] - [DEBUG] - 'hardware' was provided as command line argument. Ignoring config file. 2023-02-10 13:58:58,901 [MainThread] - [DEBUG] - 'pattern' was provided as command line argument. Ignoring config file. 2023-02-10 13:58:58,903 [MainThread] - [DEBUG] - Applying default values 2023-02-10 13:58:58,905 [MainThread] - [DEBUG] - Namespace(activeHigh=True, callPattern=None, clientId='corev2', conErrorPattern=None, debug=True, defaultBrightness=50, defaultState='on', dndPattern=None, enableDoA=False, endFrame=None, engine='rhasspy', errorPattern=None, everloopPort=20021, gpioPin=None, hardware='respeakerCoreV2', hermesLedControlConfig='~/.config/HermesLedControl/configuration.yml', idlePattern=None, leds=12, listenPattern=None, matrixIp='127.0.0.1', messagePattern=None, mqttPassword='Flash1', mqttPort='1883', mqttServer='10.0.2.108', mqttUsername='homefix', offListener='hermes/hotword/toggleOn', offPattern=None, pathToConfig='', pattern='google', pid=None, pureGpioPinout=[], setupModePattern=None, speakPattern=None, startPattern=None, stopPattern=None, successPattern=None, thinkPattern=None, timeout=120, updatingPattern=None, vid=None, wakeupPattern=None) 2023-02-10 13:58:58,908 [MainThread] - [INFO] - Initializing HermesLedControl 2023-02-10 13:58:58,917 [MainThread] - [INFO] - Initializing Rhasspy settings 2023-02-10 13:58:58,919 [MainThread] - [INFO] - Loading configurations 2023-02-10 13:58:58,923 [MainThread] - [INFO] - Loaded 14 hardware references 2023-02-10 13:58:58,925 [MainThread] - [INFO] - - Mqtt server set to 10.0.2.108 2023-02-10 13:58:58,926 [MainThread] - [INFO] - - Mqtt port set to 1883 2023-02-10 13:58:58,928 [MainThread] - [INFO] - - Mqtt username set to homefix 2023-02-10 13:58:58,929 [MainThread] - [INFO] - - Mqtt password set! 2023-02-10 13:58:58,931 [MainThread] - [INFO] - - Client id set to corev2 2023-02-10 13:58:58,933 [MainThread] - [INFO] - - Hardware set to Respeaker Core v2 2023-02-10 13:58:58,934 [MainThread] - [INFO] - - Using google as pattern with 12 leds 2023-02-10 13:58:58,936 [MainThread] - [INFO] - Initializing leds controller /home/respeaker/HermesLedControl/venv/lib/python3.7/site-packages/gpiozero/devices.py:290: PinFactoryFallback: Falling back from rpigpio: This module can only be run on a Raspberry Pi! 'Falling back from %s: %s' % (name, str(e)))) /home/respeaker/HermesLedControl/venv/lib/python3.7/site-packages/gpiozero/devices.py:290: PinFactoryFallback: Falling back from lgpio: No module named 'lgpio' 'Falling back from %s: %s' % (name, str(e)))) /home/respeaker/HermesLedControl/venv/lib/python3.7/site-packages/gpiozero/devices.py:290: PinFactoryFallback: Falling back from rpio: No module named 'RPIO' 'Falling back from %s: %s' % (name, str(e)))) /home/respeaker/HermesLedControl/venv/lib/python3.7/site-packages/gpiozero/devices.py:290: PinFactoryFallback: Falling back from pigpio: No module named 'pigpio' 'Falling back from %s: %s' % (name, str(e)))) /home/respeaker/HermesLedControl/venv/lib/python3.7/site-packages/gpiozero/devices.py:290: PinFactoryFallback: Falling back from native: unknown old-style revision "0" 'Falling back from %s: %s' % (name, str(e)))) 2023-02-10 13:58:59,220 [MainThread] - [INFO] - Device not using gpiozero or mraa, ignore power: name 'mraa' is not defined 2023-02-10 13:58:59,262 [MainThread] - [INFO] - Hermes Led Control started 2023-02-10 13:58:59,763 [Thread-3] - [DEBUG] - New animation "wakeup" has id a411239e-c380-418c-8ecc-889f1f74a6fd 2023-02-10 13:58:59,765 [Thread-3] - [DEBUG] - Timeout is setting duration from 0 to 120 2023-02-10 13:58:59,772 [Thread-3] - [DEBUG] - New animation "idle" has id 69b0abc4-c4d8-4544-a6d6-84a160a86b3c 2023-02-10 13:59:03,083 [Thread-2] - [DEBUG] - On hotword triggered 2023-02-10 13:59:03,087 [Thread-2] - [DEBUG] - New animation "wakeup" has id b0ba9794-dec8-4854-9f56-02d41e508996 2023-02-10 13:59:03,090 [Thread-2] - [DEBUG] - Timeout is setting duration from 0 to 120 2023-02-10 13:59:03,235 [Thread-2] - [DEBUG] - On play finished received but it wasn't for me 2023-02-10 13:59:03,238 [Thread-2] - [DEBUG] - On hotword toggle on triggered 2023-02-10 13:59:03,240 [Thread-2] - [DEBUG] - New animation "idle" has id e0977eee-a74d-4028-9a69-7cfd51d4df8d 2023-02-10 13:59:03,279 [Thread-2] - [DEBUG] - On listen triggered 2023-02-10 13:59:03,283 [Thread-2] - [DEBUG] - New animation "listen" has id a417b92a-5814-48bc-8967-3ee96fa11503 2023-02-10 13:59:03,287 [Thread-2] - [DEBUG] - Timeout is setting duration from 0 to 120 2023-02-10 13:59:05,550 [Thread-2] - [DEBUG] - On think triggered 2023-02-10 13:59:05,553 [Thread-2] - [DEBUG] - New animation "think" has id c0f2dbad-518b-48bd-a829-938c59af0103 2023-02-10 13:59:05,556 [Thread-2] - [DEBUG] - Timeout is setting duration from 0 to 120 2023-02-10 13:59:05,676 [Thread-2] - [DEBUG] - On play finished received but it wasn't for me 2023-02-10 13:59:05,680 [Thread-2] - [DEBUG] - On hotword toggle on triggered 2023-02-10 13:59:05,684 [Thread-2] - [DEBUG] - New animation "idle" has id 67cf44e8-cadd-46b7-b493-60d865abefb5 2023-02-10 13:59:05,692 [Thread-2] - [DEBUG] - On hotword toggle on triggered 2023-02-10 13:59:05,699 [Thread-2] - [DEBUG] - New animation "idle" has id ce345abb-e954-4646-88dc-8db848e38e46 2023-02-10 13:59:05,702 [Thread-2] - [DEBUG] - On success triggered 2023-02-10 13:59:05,705 [Thread-2] - [DEBUG] - New animation "onSuccess" has id 8d836636-ed99-4858-b97b-a36d68e15db1 2023-02-10 13:59:05,708 [Thread-2] - [DEBUG] - Timeout is setting duration from 0 to 120 2023-02-10 13:59:05,767 [Thread-2] - [DEBUG] - On say received but it wasn't for me 2023-02-10 13:59:07,222 [Thread-2] - [DEBUG] - On tts finished received but it wasn't for me
NOTE: This is not my first attempt at this. I just cant get the light to work unless i Jump-Start with the pixelring python script.
To Reproduce Followed the wiki answered all questions correctly
Engine: rhasspy Path: Kept default also tried full path /home/respeaker/.config/rhasspy/profiles/en/profile.json path to assistant: default also tried full path /home/respeaker/.config/HermesLedControl Device: respeakerCoreV2 Pattern: google DOA tried all options on different install retries Forgot to mention: I have a circular mic array 6 and a mic array 6 v2 they both work flawlessly. Than you.