Skip to content

Commit f0973ab

Browse files
committed
Update Galea emulator to include recent channel additions
1 parent 698fe51 commit f0973ab

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

emulator/brainflow_emulator/galea_manual_v4.py

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,12 @@ def __init__(self):
4040
self.start_streaming_time = 0
4141
self.debug_mode = False
4242
self.channel_on_off = [1] * 24
43-
self.channel_identifiers = array('u', ['1', '2', '3', '4', '5', '6', '7', '8', 'Q', 'W', 'E', 'R', 'T', 'Y', 'U', 'I'])
43+
self.channel_identifiers = array('u', [
44+
'1', '2', '3', '4', '5', '6', '7', '8',
45+
'Q', 'W', 'E', 'R', 'T', 'Y', 'U', 'I',
46+
'A', 'S', 'D', 'G', 'H', 'J', 'K', 'L'
47+
]
48+
)
4449

4550
def run(self):
4651
start_time = time.time()

0 commit comments

Comments
 (0)