Skip to content

Commit b3c5344

Browse files
authored
Merge pull request #98 from makerforgetech/feature/module_config
Enabling missed modules
2 parents 772eb91 + ebc5d3c commit b3c5344

File tree

19 files changed

+187
-19
lines changed

19 files changed

+187
-19
lines changed

arduino_sketch/Config.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -80,10 +80,10 @@ int PosLookDown[SERVO_COUNT] = {NOVAL, NOVAL, NOVAL, NOVAL, NOVAL, NOVAL, 120, 9
8080
// Array of poses except PosRest and PosSleep (which are used for initialization and reset of position)
8181
int *Poses[] = {PosStand, PosLookLeft, PosLookRight, PosLookUp, PosLookDown, PosLookRandom};
8282

83-
int backpackPin = 12;
83+
int backpackPin = PIN_A1;
8484
bool backpack = false;
8585

86-
int restrainPin = PIN_A1;
86+
int restrainPin = 12;
8787
bool restrainingBolt = false;
8888

8989
void blinkLED()
Binary file not shown.
Binary file not shown.

config/braillespeak.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
braillespeak:
2-
enabled: true
2+
enabled: false
33
path: modules.audio.braillespeak.BrailleSpeak
44
config:
55
pin: 27

config/buzzer.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
buzzer:
2-
enabled: true
2+
enabled: false
33
path: "modules.audio.buzzer.Buzzer"
44
config:
55
pin: 27

config/chatgpt.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,6 @@ chatgpt:
66
dependencies:
77
python:
88
- openai
9-
- pypubsub
9+
- pypubsub
10+
additional:
11+
- https://platform.openai.com/api-keys

config/neopixel.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
neopixel:
2-
32
enabled: true
43
path: 'modules.neopixel.neopx.NeoPx'
54
config:

config/personality.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
personality:
2+
enabled: false
3+
path: modules.personality.Personality
4+
config:
5+
mode: 6 # Config.MODE_LIVE

config/rtlsdr.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
rtl_sdr:
2-
enabled: true
2+
enabled: false
33
path: modules.network.rtlsdr.RTLSDR
44
config:
55
udp_host: "127.0.0.1"

config/speechinput.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
speechinput:
2+
enabled: false
3+
path: modules.audio.speechinput.SpeechInput
4+
config:
5+
device_name: lp

0 commit comments

Comments
 (0)