Skip to content

Commit ebc5d3c

Browse files
committed
Update modules
1 parent 285161a commit ebc5d3c

File tree

16 files changed

+121
-60
lines changed

16 files changed

+121
-60
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()

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/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: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@ speechinput:
22
enabled: false
33
path: modules.audio.speechinput.SpeechInput
44
config:
5-
device_index: 'lp'
5+
device_name: lp

config/telegram.yml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,14 @@
11
telegram:
2-
path: modules.network.telegram.Telegram
2+
path: modules.network.telegrambot.TelegramBot
33
enabled: false
4+
config:
5+
user_whitelist: []
6+
topics:
7+
publish_received: "telegram/received"
8+
subscribe_respond: "telegram/respond"
49
dependencies:
510
python:
11+
- pypubsub
612
- python-telegram-bot
713
additional:
814
- https://core.telegram.org/bots/tutorial#obtain-your-bot-token

config/translator.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
translator:
2-
enabled: true
2+
enabled: false
33
path: modules.translator.Translator
44
config:
55
default:

config/viam.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,4 +16,6 @@ viamobjectdetection:
1616
timelapse_location: '/home/archie/modular-biped/data/viamobjects'
1717
dependencies:
1818
python:
19-
- viam-sdk
19+
- viam-sdk
20+
additional:
21+
- https://docs.viam.com/installation/viam-server-setup/

0 commit comments

Comments
 (0)