index
:
docs/presentazione_espruino
master
Slides e codice per una presentazione di espruino
valhalla
about
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
code
/
001-blink.js
blob: 408aeb4618781cbdaf014cce5fdf6530cf05ff31 (
plain
)
1
2
3
4
5
var
on
=
false
;
setInterval
(
function
()
{
on
=
!
on
;
LED1
.
write
(
on
);
},
500
);