agen judi bola , sportbook, casino, togel, number game, singapore, tangkas, basket, slot, poker, dominoqq,
agen bola. Semua permainan bisa dimainkan hanya dengan 1 ID. minimal deposit 50.000 ,- bonus cashback hingga 10% , diskon togel hingga 66% bisa bermain di android dan IOS kapanpun dan dimana pun. poker , bandarq , aduq, domino qq ,
dominobet. Semua permainan bisa dimainkan hanya dengan 1 ID. minimal deposit 10.000 ,- bonus turnover 0.5% dan bonus referral 20%. Bonus - bonus yang dihadirkan bisa terbilang cukup tinggi dan memuaskan, anda hanya perlu memasang pada situs yang memberikan bursa pasaran terbaik yaitu
http://45.77.173.118/ Bola168. Situs penyedia segala jenis permainan poker online kini semakin banyak ditemukan di Internet, salah satunya TahunQQ merupakan situs Agen Judi Domino66 Dan
BandarQ Terpercaya yang mampu memberikan banyak provit bagi bettornya. Permainan Yang Di Sediakan Dewi365 Juga sangat banyak Dan menarik dan Peluang untuk memenangkan Taruhan Judi online ini juga sangat mudah . Mainkan Segera Taruhan Sportbook anda bersama
Agen Judi Bola Bersama Dewi365 Kemenangan Anda Berapa pun akan Terbayarkan. Tersedia 9 macam permainan seru yang bisa kamu mainkan hanya di dalam 1 ID saja. Permainan seru yang tersedia seperti Poker, Domino QQ Dan juga
BandarQ Online. Semuanya tersedia lengkap hanya di ABGQQ. Situs ABGQQ sangat mudah dimenangkan, kamu juga akan mendapatkan mega bonus dan setiap pemain berhak mendapatkan cashback mingguan. ABGQQ juga telah diakui sebagai
Bandar Domino Online yang menjamin sistem FAIR PLAY disetiap permainan yang bisa dimainkan dengan deposit minimal hanya Rp.25.000. DEWI365 adalah
Bandar Judi Bola Terpercaya & resmi dan terpercaya di indonesia. Situs judi bola ini menyediakan fasilitas bagi anda untuk dapat bermain memainkan permainan judi bola. Didalam situs ini memiliki berbagai permainan taruhan bola terlengkap seperti Sbobet, yang membuat DEWI365 menjadi situs judi bola terbaik dan terpercaya di Indonesia. Tentunya sebagai situs yang bertugas sebagai
Bandar Poker Online pastinya akan berusaha untuk menjaga semua informasi dan keamanan yang terdapat di POKERQQ13. Kotakqq adalah situs
Judi Poker Online Terpercayayang menyediakan 9 jenis permainan sakong online, dominoqq, domino99, bandarq, bandar ceme, aduq, poker online, bandar poker, balak66, perang baccarat, dan capsa susun. Dengan minimal deposit withdraw 15.000 Anda sudah bisa memainkan semua permaina pkv games di situs kami. Jackpot besar,Win rate tinggi, Fair play, PKV Games
Comments
Hi,
If a timeout occurred, the
response
variable will be set to None. So for thesketchpad
with the text "Wrong!" you would use the following run-if statement:Whereas for the "Too slow!"
sketchpad
you would use the following run-if statement:Additionally, I want to use a custom keyboard, is there an easy way to implement this?
What do you mean with a 'custom keyboard'?
Cheers!
Sebastiaan
Check out SigmundAI.eu for our OpenSesame AI assistant!
Hi, thanks for the help.
With 'custom keyboard' I mean a response pad with 4 buttons, which can be accessed via ports, so I can't just use the normal keyboard response, but had to write an inline script where I access the port. I tried the following code, but I get an 'invalid syntax' (I think for the if condition), do you know why, and if the code would be working as intended?
Hi,
There are a few things wrong with this line:
First, it should end with a
:
. So that's where theSyntaxError
comes from. (Without the colon it's not valid Python).Then, the expression
(4 or 5 or 6 or 7)
means something different from what you intend. Specifically,x or y
evaluates tox
ifx
isTrue
, and toy
otherwise. To Python, any number that is not 0 isTrue
, and thus(4 or 5 or 6 or 7)
evaluates to 4. And thus you're asking whether the response is 4! (This is admittedly not a very intuitive property of Python.)What you mean instead is whether the response is
in
atuple
of values:In general, I would recommend walking through a basic Python tutorial first. This will take a little bit of time (but not much), and it will save a lot of frustration in the medium-to-long term because you will have a better grasp on the code that you're writing!
Cheers!
Sebastiaan
Check out SigmundAI.eu for our OpenSesame AI assistant!
Thank you for your help, my experiment is working now.
Only one thing is bothering me, I tried the following line in an inline script to determine how long it takes and it takes more than 400 ms, is this normal? Is there anything I can do?
DlPortWritePortUchar(port,trigger)
I don't understand why writing to a port takes that much time. Maybe Opensesame waits until the EEG received the value?
Hi,
Are you sure the delay doesn't come from code before or after that line? How did you measure the delay? Normally sending things via the port is not taking a lot of time.
Eduard
Hi Eduard,
I used the measurements from the keylogger. In the picture you can see the structure of the experiment, I just subtracted the times from script 8 and 11.
Script 11 Only contains the line: "DlPortWritePortUchar(port,trigger)".
Edit:
Regarding your suggestion with codes before or after, I deleted everything, except the inline scripts for the ports, and the result is even worse:
Hi,
You better test it directly like this:
Otherwise there might be other processes that run in the background or things that also occur in these two inline_scripts that will cause the delay. If you try it like that, does the delay still occur?
Eduard
Hi, thanks for the suggestion. With your code, the resulting duration for the write operation is just about 0.03 ms. Though that doesn't make it any clearer to me. I don't know if your additional lines made a difference, but on average a trial now needs 150 ms (with the two inline scripts and the logger). So what is causing this huge duration, if its not the port write operation? Does Opensesame need time to go to the next trial?
Additionally here is a picture of the tasks running in the background, if that helps.
I suppose the reason is the run/prepare strategy of Opensesame: https://osdoc.cogsci.nl/3.2/manual/prepare-run/
I don't know what your code does, but some things take time, such as drawing onto a canvas. The more you draw the longer it takes. To find out you can do what I did. Measuring the duration of a piece of your code one at a time, until you find the process that causes the delay. If you are lucky, you'll be able to fix it by programming more efficiently.
Good luck,
Eudard
Hi, thanks for the quick response.
I did another test with my initial experiment and on average it takes 372 ms longer, than expected with 290 ms of that coming from the logger at the end of the trial and 65 ms from the inline script reading the port for the response and consequently sending the value to the EEG. I suppose I can disregard the logger time, as its not a time critical part. I read through the run-prepare documentation, but don't really understand what exactly I can put in prepare, so could you take a look at the critical code and tell me if there is a part I could put in the prepare section?
If there isn't anything to improve the duration I suppose I would subtract the duration of the duration of the successive object. (Edit: Why does "~~~" not work to post code?)
~~~
io.DlPortWritePortUchar(port+2,1)
clock.sleep(1)
io.DlPortWritePortUchar(port+2,0)
clock.sleep(1)
timeout_start = clock.time()
timeout = 2000
while clock.time() < timeout_start + timeout:
var.response = io.DlPortReadPortUchar(port+1)
if var.response == 64 or var.response == 160 or var.response == 136 or var.response == 144:
if var.response == 160:
io.DlPortWritePortUchar(port,1)
elif var.response == 64:
io.DlPortWritePortUchar(port,2)
elif var.response == 136:
io.DlPortWritePortUchar(port,3)
elif var.response == 144:
io.DlPortWritePortUchar(port,4)
timeout = clock.time() - timeout_start
break
var.star_dur = 2500 - timeout
~~~