Current News

Moderator: Mmiscool

User avatar
By Electroguard
#43944 Thanks Mmiscool for turning your BASIC concept into a well-thought-out reality, and thanks cicciocb and anyone else involved in making it better.
It's not everyone that gets a chance to be part of making history like you guys are doing... ESP Basic is already here to stay, and as it matures and becomes more capable it will become more useful and more used.
Kudos to you guys.
User avatar
By Mmiscool
#43983 Just uploaded a new build that fixes a significant bug in execution of lines that only have a function on them.

Code: Select allio(po,d4,0)


Note also with the new build that comments in code could cause parsing errors.

Code: Select allio(po,d4,0) 'turn the LED on

Will cause an error at the moment. Just some thing to note.
User avatar
By forlotto
#44120 Maybe it is syntax error but I am having trouble with my latest project:

2.0 alpha 2

Code: Select allcls
pwda = "cool"
passwordbox pwdb
Button "ON" [check]
wait
[check]
if pwdb == pwda then [goforit] else wprint "wrong!!!"
wait
[goforit]
po D4 0
po D5 0
delay 1000
po D4 1
po D4 1
pwdb = ""
wait



Can you tell me what I am missing why this code is wrong or will not work correctly?
Is it the current version being buggy or is it syntax?

Pretty cool project done with all the hardware pretty much just stuck at the code...

Anyhow thanks for any help seems the only thing I can get working right is a button.
Last edited by forlotto on Sun Mar 27, 2016 2:05 pm, edited 3 times in total.