Search found 7 matches

by safrizal
Wed Jan 11, 2023 11:06 am
Forum: Mind Monitor
Topic: identical timestamp with different data
Replies: 7
Views: 1720

Re: identical timestamp with different data

is there a way I got timestamps from MindMonitor apps?
by safrizal
Wed Jan 11, 2023 10:58 am
Forum: Mind Monitor
Topic: identical timestamp with different data
Replies: 7
Views: 1720

Re: identical timestamp with different data

here it is : def eeg_handler(self, address, *args): self.data=[] eegRecord.tp9, eegRecord.af7, eegRecord.af8, eegRecord.tp10, eegRecord.au = args self.timeStamps=time.time() self.labelValueTP9.config(text=":"+str(eegRecord.tp9)) self.labelValueTP10.config(text=":"+str(eegRecord.t...
by safrizal
Wed Jan 11, 2023 10:53 am
Forum: Mind Monitor
Topic: identical timestamp with different data
Replies: 7
Views: 1720

Re: identical timestamp with different data

I used the number of seconds as timestamps, and I get this on my record. Sometimes I get 10 rows of data with identical timestamps like this, sometimes it is just two rows with identical timestamps. 1673289749.0507035,799.8168334960938,773.6264038085938,887.2527465820312,817.5457763671875,817.545776...
by safrizal
Wed Jan 11, 2023 10:31 am
Forum: Mind Monitor
Topic: identical timestamp with different data
Replies: 7
Views: 1720

identical timestamp with different data

Hi James,
When I record the EEG data with python
I get identical timestamps with different raw data.
is it okay?
by safrizal
Wed Dec 28, 2022 11:27 am
Forum: Mind Monitor
Topic: How To Run osc streaming in Python GUI ?
Replies: 4
Views: 1335

Re: How To Run osc streaming in Python GUI ?

thankyou...
by safrizal
Wed Dec 28, 2022 6:26 am
Forum: Mind Monitor
Topic: How To Run osc streaming in Python GUI ?
Replies: 4
Views: 1335

Re: How To Run osc streaming in Python GUI ?

is it posible to run OSC Server from tkinter window.mainloop ? and then display the data to window.mainloop ?
Thank's
by safrizal
Tue Dec 27, 2022 6:57 pm
Forum: Mind Monitor
Topic: How To Run osc streaming in Python GUI ?
Replies: 4
Views: 1335

How To Run osc streaming in Python GUI ?

Hi James, Thank's alot for created Mind Monitor, I want to create simple GUI Python to display OSC Steaming Data as waves. But I don't have any clue, how to get data from OSC server and display it in GUI python in realtime. I tried before but I have to wait server stop to run window. What I have to ...