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 77011ca commit 4738d9aCopy full SHA for 4738d9a
emulator/brainflow_emulator/galea_manual_v4.py
@@ -88,7 +88,10 @@ def run(self):
88
if (self.debug_mode):
89
print(t, i, channel)
90
if (self.channel_on_off[channel - 1] == 1):
91
- single_package.append(random.randint(0, 80))
+ if (sample % 3 == 2):
92
+ single_package.append(random.randint(0, 8 + (channel * 2)))
93
+ else:
94
+ single_package.append(0)
95
else:
96
single_package.append(0)
97
0 commit comments