Skip to content

Commit

Permalink
Update Galea emulator to include recent channel additions
Browse files Browse the repository at this point in the history
  • Loading branch information
retiutut committed Nov 6, 2023
1 parent 698fe51 commit f0973ab
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion emulator/brainflow_emulator/galea_manual_v4.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,12 @@ def __init__(self):
self.start_streaming_time = 0
self.debug_mode = False
self.channel_on_off = [1] * 24
self.channel_identifiers = array('u', ['1', '2', '3', '4', '5', '6', '7', '8', 'Q', 'W', 'E', 'R', 'T', 'Y', 'U', 'I'])
self.channel_identifiers = array('u', [
'1', '2', '3', '4', '5', '6', '7', '8',
'Q', 'W', 'E', 'R', 'T', 'Y', 'U', 'I',
'A', 'S', 'D', 'G', 'H', 'J', 'K', 'L'
]
)

def run(self):
start_time = time.time()
Expand Down

0 comments on commit f0973ab

Please sign in to comment.