Just an idea for educational purposes

coparu67

Senior Member
Suggestion to improve a bit PE6.
This is an idea just for educational purposes.

Many times I write programs to be completed by students like
...
high B.0 ;Turn on B.0
pause 200
;WRITE CODE ;Turn off B.0
pause 200
...

I'm thinking something like (3rd line)
#EDIT_BOX ;Turn off B.0

When you try to run or try to simulate the program, a floating edit box appears to complete de code.


Just an nice and simple idea (I think) !!!
 

hippy

Ex-Staff (retired)
Using the #ERROR directive is one way to mark where students should add code, will stop it compiling until they do ...

#Picaxe 08M2
High C.0
#Error "Add your code here"
Low C.0
 

coparu67

Senior Member
Using the #ERROR directive is one way to mark where students should add code, will stop it compiling until they do ...

#Picaxe 08M2
High C.0
#Error "Add your code here"
Low C.0
Actually I was using
"Add your code here"
I think they are very similar
 
Top