Members
analogReadAdvanced
Bloq name: analogReadAdvanced
Bloq type: Output
Description: It returns the read of an analog pin.
Return type: float
- Source:
analogWrite
Bloq name: analogWrite
Bloq type: Statement
Description: It sets a specific analog pin with a given value.
Return type: none
argument
Bloq name: argument
Bloq type: Output
Description: It declares a variable with a specific type,
selectable from a drop-down, and with a given name
to be used as argument in functions.
Return type: var
- Source:
arrayClassVariable
Bloq name: arrayClassVariable
Bloq type: Output
Description: It returns an specific element of an array-type variable,
selectable from a first drop-down, of an object, selectable
from a second drop-down.
Return type: element's type of the array variable
arrayVariableAdvanced
Bloq name: arrayVariableAdvanced
Bloq type: Output
Description: It returns the element of a specific array
variable, selectable from a drop-down, of
the given position.
Return type: array's element type
basicOperations
Bloq name: basicOperations
Bloq type: Output
Description: It returns the result of the math operation between two given numbers.
Return type: float
- Source:
bloq
Bloq name: stringArrayAdvanced
Bloq type: Output
Description: It returns the element of a specific array
variable, selectable from a drop-down, of
the given position.
Return type: array's element type
- Source:
bloqArguments
Bloq name: arguments
Bloq type: Output
Description: It allows to declare two arguments instead of one.
Return type: var
- Source:
bloqBreak
Bloq name: break
Bloq type: Statement
Description: It skips the rest of the current loop.
Return type: none
- Source:
bloqCase
Bloq name: case
Bloq type: Statement-Input
Description: It executes the following code only if the variable
compared in the switch bloq is equal to the given value.
Return type: none
- Source:
bloqChar
Bloq name: char
Bloq type: Output
Description: It returns the written char.
Return type: char
- Source:
bloqClass
Bloq name: class
Bloq type: Statement-Input
Description: It defines a class which could be later instanced into
an object to use its public variables or functions.
Return type: none
- Source:
bloqContinue
Bloq name: continue
Bloq type: Statement
Description: It skips the rest of the current iteration of a loop.
Return type: none
- Source:
bloqElse
Bloq name: else
Bloq type: Statement-Input
Description: It executes the following code only if no one of the previous
conditions are met.
Return type: none
- Source:
bloqFor
Bloq name: for
Bloq type: Statement-Input
Description: It repeats the following code, iterating a specific variable,
selectable from a drop-down, from and until two given values,
adding or subtracting one in each iteration.
Return type: none
- Source:
bloqIf
Bloq name: if
Bloq type: Statement-Input
Description: It executes the following code only if the condition
is met.
Return type: none
- Source:
bloqLength
Bloq name: length
Bloq type: Output
Description: It returns the length of the given string.
Return type: float
- Source:
bloqPrivate
Bloq name: bloqPrivate
Bloq type: Statement-Input
Description: It defines the private variables and functions of a class,
which would not be accessible or visible from outside the class.
Return type: none
- Source:
bloqProtected
Bloq name: bloqProtected
Bloq type: Statement-Input
Description: It defines the protected variables and functions of a class,
which would not be accessible or visible from outside the class,
excepting derived classes.
Return type: none
- Source:
bloqPublic
Bloq name: bloqPublic
Bloq type: Statement-Input
Description: It defines the public variables and functions of a class,
which would be accessible or visible anywhere outside the class.
Return type: none
- Source:
bloqReturn
Bloq name: return
Bloq type: statement
Description: It terminates the function making the function
to return what is given.
Return type: none
- Source:
bloqSwitch
Bloq name: switch
Bloq type: Statement-Input
Description: It establishes the variable with which compare,
selectable from a drop-down.
Return type: none
- Source:
bloqWhile
Bloq name: while
Bloq type: Statement-Input
Description: It repeats the following code until the condition is met.
Return type: none
- Source:
boolArray
Bloq name: boolArray
Bloq type: Output
Description: It returns a boolean pointer to an array of the given size.
Return type: bool pointer
- Source:
boolArrayAdvanced
Bloq name: boolArrayAdvanced
Bloq type: Output
Description: It returns a boolean pointer to an array of the given size.
Return type: bool pointer
boolean
Bloq name: boolean
Bloq type: Output
Description: It returns true os false, selectable from a drop-down.
Return type: bool
- Source:
buzzer
Bloq name: buzzer
Bloq type: Statement
Description: It turns on a specific buzzer, selectable
from a first drop-down, with a basic note,
selectable from a second drop-down, during
a given period of time.
Return type: none
- Source:
buzzerAdvanced
Bloq name: buzzerAdvanced
Bloq type: Statement
Description: It turns on a specific buzzer with a given note
during a determined period of time.
Return type: none
- Source:
caseDefault
Bloq name: caseDefault
Bloq type: Statement-Input
Description: It executes the following code only if the variable
compared in the switch bloq is not equal to any of
the previous given values.
Return type: none
- Source:
classChildren
Bloq name: classChildren
Bloq type: Statement-Input
Description: It defines a class which inherits, in a public, protected
or private way, selectable from a first drop-down, the
variables and functions from another class, selectable from
a second drop-down.
Return type: none
- Source:
clockRTC
Bloq name: clockRTC
Bloq type: Output
Description: It returns the date or the time, selectable
from a first drop-down, of a specific RTC,
selectable from a second drop-down.
Return type: string
- Source:
clockRTCAdvanced
Bloq name: clockRTCAdvanced
Bloq type: Output
Description: It returns a determined data of the date or the time,
selectable from a first drop-down, of a specific RTC,
selectable from a second drop-down.
Return type: int
- Source:
clockRTCInit
Bloq name: clockRTCInit
Bloq type: Statement
Description: It synchronizes a specific RTC, selectable
from a second drop-down, with the time and date
of the computer.
Return type: none
- Source:
code
Bloq name: code
Bloq type: Statement
Description: It gives the space to write Arduino code.
Return type: none
- Source:
comment
Bloq name: code
Bloq type: Statement
Description: It gives the space to write a comment in the code.
Return type: none
- Source:
constructorClass
Bloq name: constructorClass
Bloq type: Statement-Input
Description: It defines de constructor of a class, which would be executed
when the class was instanced into an object. It is used to
initialize the variables of the class.
Return type: none
- Source:
constructorClassArguments
Bloq name: constructorClassArguments
Bloq type: Statement-Input
Description: It defines de constructor with arguments of a class, which
would be executed when the class was instanced into an object.
It is used to initialize the variables of the class.
Return type: none
continuousServoStart
Bloq name: continuousServoStart
Bloq type: Statement
Description: It turns on a specific continuous servo, selectable
from a first drop-down, in one of the two directions,
selectable from a second drop-down.
Return type: none
continuousServoStartAdvanced
Bloq name: continuousServoStartAdvanced
Bloq type: Statement
Description: It turns on a specific continuous servo in one of the two directions,
selectable from a drop-down.
Return type: none
continuousServoStartAdvancedV1
Bloq name: continuousServoStartAdvanced-v1
Bloq type: Statement
Description: It turns on a specific continuous servo to a determined direction.
Return type: none
continuousServoStop
Bloq name: continuousServoStop
Bloq type: Statement
Description: It stops a specific continuous servo, selectable
from a drop-down.
Return type: none
- Source:
continuousServoStopAdvanced
Bloq name: continuousServoStopAdvanced
Bloq type: Statement
Description: It stops a specific continuous servo.
Return type: none
convert
Bloq name: convert
Bloq type: Output
Description: It converts a number in decimal base to
binary, octal or hexadecimal.
Return type: float
- Source:
declareVariable
Bloq name: declareVariable
Bloq type: Statement
Description: It declares a new variable called with the given
name and initializes it with the given value.
Return type: none
- Source:
declareVariableAdvanced
Bloq name: declareVariableAdvanced
Bloq type: Statement
Description: It declares a new variable called with the given
name with a specific type, selectable from a drop-down,
and initializes it with the given value.
Return type: none
digitalReadAdvanced
Bloq name: digitalReadAdvanced
Bloq type: Output
Description: It returns the read of a digital pin.
Return type: float
digitalWrite
Bloq name: digitalWrite
Bloq type: Statement
Description: It sets a specific digital pin with a given value.
Return type: none
elseif
Bloq name: elseif
Bloq type: Statement-Input
Description: It executes the following code only if the previous conditions
are not met and the new one does.
Return type: none
- Source:
elseifAdvanced
Bloq name: elseifAdvanced
Bloq type: Statement-Input
Description: It executes the following code only if the previous conditions
are not true and the new one does.
Return type: none
- Source:
enableInterrupt
Bloq name: enableInterrupt
Bloq type: Statement
Description: It enables the hardware interrupt of the board
for rising, falling or both changes, assigning
it a given function which would be executed when
it happened.
Return type: none
- Source:
equalityOperations
Bloq name: equalityOperations
Bloq type: Output
Description: It returns the result of a math comparison between two given values.
Return type: bool
- Source:
forAdvanced
Bloq name: forAdvanced
Bloq type: Statement-Input
Description: It repeats the following code, iterating a specific variable,
from and until two given values, adding or subtracting one in
each iteration.
Return type: none
- Source:
forAdvancedV1
Bloq name: forAdvanced-v1
Bloq type: Statement-Input
Description: It repeats the following code, iterating a specific variable
from and until two given values, adding or subtracting a
determined quantity in each iteration.
Return type: none
- Source:
forV1
Bloq name: for-v1
Bloq type: Statement-Input
Description: It repeats the following code, iterating a specific variable,
selectable from a drop-down, from and until two given values,
adding or subtracting a determined quantity in each iteration.
Return type: none
- Source:
group
Bloq name: group
Description: It is the group bloq's structure.
It has only one root type connector
that only accepts top type connectors.
- Source:
hts221Humidity
Bloq name: hts221Humidity
Bloq type: Output
Description: It returns the humidity measurement from a
specific humidity & temperature sensor, selectable
from a drop-down.
Return type: float
- Source:
hts221Temperature
Bloq name: hts221Temperature
Bloq type: Output
Description: It returns the temperature measurement from a
specific humidity & temperature sensor, selectable
from a drop-down.
Return type: float
- Source:
hwVariable
Bloq name: hwVariable
Bloq type: Output
Description: It returns the pin where a specific component,
selectable from a drop down, is connected.
Return type: selected component's type
- Source:
ifAdvanced
Bloq name: ifAdvanced
Bloq type: Statement-Input
Description: It executes the following code only if the condition
is true.
Return type: none
- Source:
includeLib
Bloq name: includeLib
Bloq type: Statement
Description: It includes a library to use its classes, constants,
variables or functions.
Return type: none
- Source:
int2floatV1
Bloq name: int2float-v1
Bloq type: Output
Description: It converts the given int type value to float type.
Return type: float
- Source:
invokeArgumentsClass
Bloq name: invokeArgumentsClass
Bloq type: Statement
Description: It instance an object of a specific class, selectable
from a drop-down, with a given name and arguments.
Return type: none
invokeClass
Bloq name: invokeClass
Bloq type: Statement
Description: It instance an object of a specific class, selectable
from a drop-down, with a given name.
Return type: none
- Source:
invokeClassFunction
Bloq name: invokeClassFunction
Bloq type: Statement
Description: It execute a function, selectable from a first drop-down,
which doesn't return any argument, of an specific object,
selectable from a second drop-down.
Return type: none
- Source:
invokeClassFunctionWithArguments
Bloq name: invokeClassFunctionWithArguments
Bloq type: Statement
Description: It execute a function, selectable from a first drop-down,
which doesn't return any argument, of an specific object,
selectable from a second drop-down, with the given arguments.
Return type: none
invokeClassReturnFunction
Bloq name: invokeClassReturnFunction
Bloq type: Output
Description: It execute a function, selectable from a first drop-down,
which does return an argument, of an specific object,
selectable from a second drop-down.
Return type: same type as the function's return
invokeClassReturnFunctionWithArguments
Bloq name: invokeClassReturnFunctionWithArguments
Bloq type: Output
Description: It execute a function, selectable from a first drop-down,
which does return an argument, of an specific object,
selectable from a second drop-down, with the given arguments.
Return type: same type as the function's return
invokeFunction
Bloq name: invokeFunction
Bloq type: Statement
Description: It executes a function, selectable from a drop-down,
which does not return any value.
Return type: none
- Source:
invokeFunctionWithArguments
Bloq name: invokeFunctionWithArguments
Bloq type: Statement
Description: It executes a function, selectable from a drop-down,
which does not return any value with the given arguments.
Return type: none
invokeReturnFunction
Bloq name: invokeReturnFunction
Bloq type: Output
Description: It executes a function, selectable from a drop-down,
which does return a value.
Return type: function's return type
- Source:
invokeReturnFunctionWithArguments
Bloq name: invokeReturnFunctionWithArguments
Bloq type: Output
Description: It executes a function, selectable from a drop-down,
which does return a value with the given arguments.
Return type: function's return type
lcdClear
Bloq name: lcdClear
Bloq type: Statement
Description: It clears the screen of a specific LCD,
selectable from a drop-down.
Return type: none
- Source:
lcdTurnOnOff
Bloq name: lcdTurnOnOff
Bloq type: Statement
Description: It switches on or off the background light of a
specific LCD, selectable from a drop-down.
Return type: none
- Source:
lcdTurnOnOffAdvanced
Bloq name: lcdTurnOnOffAdvanced
Bloq type: Statement
Description: It switches on or off the background light of a
specific LCD.
Return type: none
lcdWrite
Bloq name: lcdWrite
Bloq type: Statement
Description: It writes the given string on a specific LCD,
selectable from a drop-down.
Return type: none
- Source:
lcdWriteAdvanced
Bloq name: lcdWriteAdvanced
Bloq type: Statement
Description: It writes the given input on a specific LCD.
Return type: none
- Source:
lcdWritePosition
Bloq name: lcdWritePosition
Bloq type: Statement
Description: It writes the given string on a specific LCD,
selectable from a drop-down, in a particular position.
Return type: none
- Source:
lcdWritePositionAdvanced
Bloq name: lcdWritePositionAdvanced
Bloq type: Statement
Description: It writes the given string on a specific LCD in a particular
position.
Return type: none
lcdWritePositionAdvancedV1
Bloq name: lcdWritePositionAdvanced-v1
Bloq type: Statement
Description: It writes the given string on a specific LCD in a particular position.
Return type: none
led
Bloq name: led
Bloq type: Statement
Description: It switches on or off aspecific led,
selectable from a drop-down.
Return type: none
- Source:
ledAdvanced
Bloq name: ledAdvanced
Bloq type: Statement
Description: It switches on or off aspecific led.
Return type: none
- Source:
logicOperations
Bloq name: logicOperations
Bloq type: Output
Description: It returns the result of a logic comparison between two given values.
Return type: bool
- Source:
loopBloq
Bloq name: loopBloq
Bloq type: group
Description: It is used to storage the bloqs wanted
to be executed repeatedly infinitely.
Return type: none
- Source:
map
Bloq name: map
Bloq type: Output
Description: It returns the given value between 0 and 1023,
mapped between 0 and a given second value.
Return type: float
- Source:
mapAdvanced
Bloq name: mapAdvanced
Bloq type: Output
Description: It returns the given value between two determined limits,
mapped between other two different limits.
Return type: float
mathOperations
Bloq name: mathOperations
Bloq type: Output
Description: It returns the result of the math operation over a single number.
Return type: float
- Source:
millis
Bloq name: millis
Bloq type: Output
Description: It returns the time since the program began.
Return type: float
- Source:
not
Bloq name: not
Bloq type: Output
Description: It returns the opposite of the boolean given.
Return type: bool
- Source:
number
Bloq name: number
Bloq type: Output
Description: It returns the number given.
Return type: float
- Source:
numberArray
Bloq name: numberArray
Bloq type: Output
Description: It returns a float pointer to an array of the given size.
Return type: float pointer
- Source:
numberArrayAdvanced
Bloq name: numberArrayAdvanced
Bloq type: Output
Description: It returns a float pointer or an int pointer, selectable
from a dorp-down, to an array of the given size.
Return type: selected type pointer
oscillator
Bloq name: oscillator
Bloq type: Statement
Description: It sets a specific servo, selectable from a
drop-down, to oscillate around a given point
with a certain amplitude and velocity.
Return type: none
- Source:
oscillatorAdvanced
Bloq name: oscillatorAdvanced
Bloq type: Statement
Description: It sets a specific servo to oscillate around a given
point with a certain amplitude and velocity.
Return type: none
- Source:
oscillatorStart
Bloq name: oscillatorStart
Bloq type: Statement
Description: It makes a specific servo, selectable from a
drop-down, oscillate as it has been set.
Return type: none
- Source:
oscillatorStartAdvanced
Bloq name: oscillatorStartAdvanced
Bloq type: Statement
Description: It makes a specific servo oscillate as it has been set.
Return type: none
oscillatorStop
Bloq name: oscillatorStop
Bloq type: Statement
Description: It stops a specific servo, selectable from a
drop-down.
Return type: none
- Source:
oscillatorStopAdvanced
Bloq name: oscillatorStopAdvanced
Bloq type: Statement
Description: It stops a specific servo.
Return type: none
oscillatorTimes
Bloq name: oscillatorTimes
Bloq type: Statement
Description: It sets a specific servo, selectable from a
drop-down, to oscillate around a given point
with a certain amplitude and velocity, a defined
number of times.
Return type: none
- Source:
output
Bloq name: output
Description: It is the output bloq's structure.
It has only one output type connector that accepts
only input type connectors.
- Source:
pinReadAdvanced
Bloq name: pinReadAdvanced
Bloq type: Output
Description: It returns the read of a pin.
Return type: bool
- Source:
pinWriteAdvanced
Bloq name: pinWriteAdvanced
Bloq type: Statement
Description: It writes in a specific pin the given data.
Return type: none
- Source:
random
Bloq name: random
Bloq type: Output
Description: It returns a random value between two given values.
Return type: float
- Source:
randomSeed
Bloq name: randomSeed
Bloq type: Statement
Description: It inizializes the random number generator.
Return type: none
- Source:
readSensor
Bloq name: readSensor
Bloq type: Output
Description: It returns the measurement of a specific
sensor, selectable from a drop-down.
Return type: sensor's return type
- Source:
readSensorAdvanced
Bloq name: readSensorAdvanced
Bloq type: Output
Description: It returns the measurement of a specific sensor.
Return type: sensor's return type
- Source:
returnFunction
Bloq name: returnFunction
Bloq type: Statement-Input
Description: It defines a function that could be later used and
which does return a value.
Return type: none
- Source:
returnFunctionWithArguments
Bloq name: returnFunctionWithArguments
Bloq type: Statement-Input
Description: It defines a function with the given arguments that could be later
used and which does return a value.
Return type: none
rgbLed
Bloq name: rgbLed
Bloq type: Statement
Description: It switches on a specific rgb led, selectable
from a drop-down, with the given combination
of each basic colour.
Return type: none
- Source:
rgbLedAdvanced
Bloq name: rgbLedAdvanced
Bloq type: Statement
Description: It switches on a specific rgb led, selectable
from a drop-down, with the given combination
of each basic colour.
Return type: none
rgbLedFade
Bloq name: rgbLedFade
Bloq type: Statement
Description: It fades a specific rgb led, selectable from
a drop-down, from the previous state to a given
combination of each basic colour.
Return type: none
- Source:
rgbLedSimple
Bloq name: rgbLedSimple
Bloq type: Statement
Description: It switches on a specific rgb led, selectable
from a first drop-down, with the selectable colour
from a second drop-down.
Return type: none
- Source:
selectClassVariable
Bloq name: selectClassVariable
Bloq type: Output
Description: It returns a variable, selectable from a first drop-down,
of an specific object, selectable from a second drop-down.
Return type: variable's type
- Source:
selectVariable
Bloq name: selectVariable
Bloq type: Output
Description: It returns a specific variable, selectable from a drop-down.
Return type: selected variable's type
- Source:
serialReceive
Bloq name: serialReceive
Bloq type: Output
Description: It returns what is received by the serial port.
Return type: String
- Source:
serialSend
Bloq name: serialSend
Bloq type: Statement
Description: It sends by the serial port what is input with
or without newline end.
Return type: none
serialSendV1
Bloq name: serialSend-v1
Bloq type: Statement
Description: It sends by the serial port what is input with
or without newline end.
Return type: none
- Source:
servoNormal
Bloq name: servoNormal
Bloq type: Statement
Description: It sets a specific servo, selectable from a
drop-down, in a given position.
Return type: none
- Source:
servoNormalAdvanced
Bloq name: servoNormalAdvanced
Bloq type: Statement
Description: It sets a specific servo in a given position.
Return type: none
- Source:
setArrayVariable
Bloq name: setArrayVariable
Bloq type: Statement
Description: It assigns the given value to the element in the given
position of a specific array variable, selectable from
a drop-down.
Return type: none
- Source:
setArrayVariableAdvanced
Bloq name: setArrayVariableAdvanced
Bloq type: Statement
Description: It assigns the given value to the element in the given
position of a specific array variable, selectable from
a drop-down.
Return type: none
setClassArrayVariable
Bloq name: setClassArrayVariable
Bloq type: Statement
Description: It sets an specific element of an array-type variable,
selectable from a first drop-down, of an object, selectable
from a second drop-down.
Return type: none
setClassVariable
Bloq name: setClassVariable
Bloq type: Statement
Description: It sets a variable, selectable from a first drop-down,
of an specific object, selectable from a second drop-down,
with a given input.
Return type: none
- Source:
setupBloq
Bloq name: setupBloq
Bloq type: group
Description: It is used to storage the bloqs wanted
to be executed only once at the beginning
of the program.
Return type: none
- Source:
setVariable
Bloq name: setVariable
Bloq type: Statement
Description: It assigns the given value to a specific variable,
selectable from a drop-down.
Return type: none
- Source:
statement
Bloq name: statement
Description: It is the statement bloq's structure.
It has two connectors, one on top that accepts
only bottom type connectors, and other
connector on the bottom that only accepts
elements of top type.
- Source:
statementInput
Bloq name: statement-input
Description: It is the statement-input bloq's structure.
It has three connectors, one on top that accepts
only bottom type connectors, other
connector on the bottom that only accepts
elements of top type and one root type
connector that only accepts top type connectors.
- Source:
string
Bloq name: string
Bloq type: Output
Description: It returns the written string.
Return type: string
- Source:
stringArray
Bloq name: string
Bloq type: Output
Description: It returns a string pointer to an array of the given size.
Return type: string pointer
- Source:
stringArrayAdvanced
Bloq name: stringArrayAdvanced
Bloq type: Output
Description: It returns a string pointer or a char pointer, selectable
from a drop-down, to an array of the given size.
Return type: string pointer
stringCreate
Bloq name: stringCreate
Bloq type: Output
Description: It returns the given input converted into string.
Return type: string
- Source:
stringSum
Bloq name: stringSum
Bloq type: Output
Description: It returns a single string formed by two given inputs.
Return type: string
- Source:
stringToInt
Bloq name: stringToInt
Bloq type: Output
Description: It converts the given string type value to int type.
Return type: int
- Source:
switchAdvanced
Bloq name: switchAdvanced
Bloq type: Statement-Input
Description: It establishes the variable with which compare.
Return type: none
- Source:
swVariable
Bloq name: swVariable
Bloq type: Output
Description: It returns a specific variable, selectable from a drop-down.
Return type: selected variable's type
varsBloq
Bloq name: varsBloq
Bloq type: group
Description: It is used to declare and initialize variables,
functions, classes, etc. which would be used on
the other two mainBloqs.
Return type: none
- Source:
voidFunction
Bloq name: voidFunction
Bloq type: Statement-Input
Description: It defines a function that could be later used and
which does not return any value.
Return type: none
- Source:
voidFunctionWithArguments
Bloq name: voidFunctionWithArguments
Bloq type: Statement-Input
Description: It defines a function with the given arguments that could be
later used and which does not return any value.
Return type: none
wait
Bloq name: wait
Bloq type: Statement
Description: It delays the progression of the program
the given time.
Return type: none
- Source:
waitAdvanced
Bloq name: waitAdvanced
Bloq type: Statement
Description: It delays the progression of the program
the given time.
Return type: none
- Source:
whileAdvanced
Bloq name: whileAdvanced
Bloq type: Statement-Input
Description: It repeats the following code until the condition is true.
Return type: none
- Source:
zowiDistance
Bloq name: zowiDistance
Bloq type: Output
Description: It returns the distance measurement that Zowi sees.
Return type: float
- Source:
zowiGestures
Bloq name: zowiGestures
Bloq type: statement
Description: It makes Zowi express a specific emotion,
selectable from a drop-down.
Return type: none
- Source:
zowiHome
Bloq name: zowiHome
Bloq type: statement
Description: It makes Zowi rest in the defect position.
Return type: none
- Source:
zowiMouth
Bloq name: zowiMouth
Bloq type: statement
Description: It makes Zowi draw a specific expression,
selectable from a drop-down, on his mouth.
Return type: none
- Source:
zowiMovements
Bloq name: zowiMovements
Bloq type: statement
Description: It makes Zowi execute a specific movement, selectable
from a first drop-down, in a concrete direction,
selectable from a second drop-down, the given number
of times at a determined velocity, selectable from a
third drop-down.
Return type: none
- Source:
zowiMovementsAdvanced
Bloq name: zowiMovementsAdvanced
Bloq type: statement
Description: It makes Zowi execute a specific movement, selectable
from a first drop-down, in a concrete direction,
selectable from a second drop-down, the given number
of times at a determined velocity.
Return type: none
zowiMovementsHeight
Bloq name: zowiMovementsHeight
Bloq type: statement
Description: It makes Zowi execute a specific movement, selectable
from a first drop-down, in a concrete direction,
selectable from a second drop-down, the given number
of times at a determined velocity, selectable from a
third drop-down, until a limit height, selectable
from a fourth drop-down.
Return type: none
zowiMovementsHeightAdvanced
Bloq name: zowiMovementsHeightAdvanced
Bloq type: statement
Description: It makes Zowi execute a specific movement, selectable
from a first drop-down, in a concrete direction,
selectable from a second drop-down, the given number
of times at a determined velocity until a limit height.
Return type: none
zowiMovementsNoDir
Bloq name: zowiMovementsNoDir
Bloq type: statement
Description: It makes Zowi execute a specific movement, selectable
from a first drop-down, the given number of times at
a determined velocity, selectable from a second drop-down,
until a limit height, selectable from a third drop-down.
Return type: none
zowiMovementsSimple
Bloq name: zowiMovementsSimple
Bloq type: statement
Description: It makes Zowi execute a specific movement,
selectable from a drop-down, the given number of times.
Return type: none
- Source:
zowiSound
Bloq name: zowiSound
Bloq type: Output
Description: It returns the noise that Zowi hears.
Return type: float
- Source:
zowiSounds
Bloq name: zowiSounds
Bloq type: statement
Description: It makes Zowi reproduce a specific sound,
selectable from a drop-down.
Return type: none
- Source: