We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ee113a1 commit 568e552Copy full SHA for 568e552
config/neopixel.yml
@@ -64,5 +64,5 @@ neopixel:
64
pub:
65
- log:
66
description: "Send messages to logger."
67
-emotion_analysis:
68
- enable: false
+ emotion_analysis:
+ enable: false
main.py
@@ -112,7 +112,7 @@ def main():
112
113
114
neopx = NeoPx(Config.get('neopixel','count'))
115
- if Config.get('neopixel', 'emotion_analysis', 'enabled'):
+ if Config.get('neopixel', 'emotion_analysis')['enable'] is True:
116
from modules.emotion_analysis import EmotionAnalysis
117
emotion_analysis = EmotionAnalysis()
118
0 commit comments