
PicoBlocks - Reference
2
and
waits until this and that are both true...
waituntil
and
loud?
touch?
chirp
then, this will happen
and
reports true if the result of the first condition (
touch?
) and the second condition (
loud?
)
are both true.
or
if this or that is true...
or
if
then
chirp
forever
loud?
touch?
this will happen
or
reports true if the result of the first condition (
touch?
) or the second
condition (
loud?
) is true.
not
waituntil
touch?
motor
on
motor
off
waituntil
touch?
not
waits until the touch sensor
is not pressed
not
reports true if the condition is false. not reports false if the condition is true.