-
-
Notifications
You must be signed in to change notification settings - Fork 41
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
led's only lite up when simutainuesly running (python ~/pixel_ring/examples/respeaker_v2_pixel_ring.py) #125
Comments
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
|
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 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 In order for the LEDs to turn on, you need to run them as In order not to run the LEDs through root, but through the user View User groups
Add the user
Allow the 'respeaker` user to run python scripts with sudo without entering a password Let's create our
Let's add the user
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
You can run the python version 2 script. The password will not be requested when entering
or
Next, stop hermesledcontrol
Edit the file HermesLedControl.py
Add Let's go to the HermesLedControl folder
Let's run it in debug mode
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 |
The solution to the problem has been foundI 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. What needs to be done so that HermesLedControl can control ReSpeaker Core v2 LEDs?Download the archive file leds_ring.zip
Unpack the archive file leds_ring.zip
Launch
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
This is how the
You can open configuration.yml like this
If you changed the
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
Adding ledsring.service to the created file
Restarting the daemon
Activating the startup of the ledsring.service
Let's start the ledsring.service service
For the test, we reboot the system and if everything is done correctly, then when accessing Rhasspy, the LEDs will start flashing
For reference
|
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 |
Another thing, in your logs, it shows
where it should be using it... Try installing it with |
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
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
|
What I can see from your logs is that: 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... |
Yes, I installed python-mraa via sudo as specified in documentation
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 It is impossible to install apt install -y python-mraa without sudo, it does not give In the file apa102.py, which is located 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... 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: First: 4240412 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 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 Moved to the HermesLedControl folder
and started debugging
|
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 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 |
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
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? |
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 |
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/.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,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='
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/.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,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='
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.
The text was updated successfully, but these errors were encountered: