Output digital pins are writable as high
or low
.
#include "out.ceu"
Sets the state of an individual output pin.
output high/low OUT_XX; // `XX` is a number, e.g., `OUT_13`
Parameters:
high/low
: new state of the pin
Sets the state of a parameterized output pin.
output (int, high/low) OUT;
Parameters:
int
: pin to changehigh/low
: new state of the pin
The individual pins to use must also be declared with OUT_XX
for
proper configuration.
Writes high
to pin 13:
#include "out.ceu"
output high/low OUT_13;
emit OUT_13(high);
await FOREVER;
Writes high
to pins 10-13:
#include "out.ceu"
output high/low OUT_10;
output high/low OUT_11;
output high/low OUT_12;
output high/low OUT_13;
var int i;
loop i in [10 -> 13] do
emit OUT(i, high);
end
await FOREVER;