I've been trying to use this:
j1=GET 0,10
to read a character but I get this error message from the compiler:
4-bit LCD mik.txt <49>: Error: Invalid variable name: GET,10
which looks a bit odd to me.
Mick
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
I've been trying to use this:
j1=GET 0,10
to read a character but I get this error message from the compiler:
4-bit LCD mik.txt <49>: Error: Invalid variable name: GET,10
which looks a bit odd to me.
Mick
When you call a function, you need to put brackets around its parameters. Try this line, it should work:
j1=GET (0,10)
Cheers Hugh - that fixed it. :-)
Mick