Current News

Moderator: Mmiscool

User avatar
By Mmiscool
#46221 This incorperates bug fixes from cicciocb and makes the set up functions for dht and neopixels work with the node mcu pin numbers also.

If you have not seen the new help file yet it has many improvements and seems to o ly be getting better.
User avatar
By Electroguard
#46234 A18 'for to' loops no longer accepting variables:

Code: Select alllet max = 5
for count = 1 to max               ' doesn't work
'for count = 1 to val(max)         ' doesn't work
'for count = 1 to 5                ' works
print count
next count
wait
User avatar
By cicciocb
#46240 Interesting bug.

I'll check later.

edit:
checked and found the cause.
A fix has been sent to Mike that will, probably, publish a new load.
With this fix each argument can be an expression.
Example
let a = 10
let b = 20
let c = 30
for i = a/2 to b+c step c/30
print i
next i

CiccioCB