Arduino_EMBRYO_2 - checkInputs()

Verifies and print the current boolean values of the inputs.

Syntax

axis.checkInputs()

Example

#include <Arduino_EMBRYO_2.h>

StepMotor axis(1, A5, 5, 6, 3, 4, A2, A1, 2, 12);

void setup() {
  Serial.begin(9600);
  while (!Serial) {};
  axis.begin();
  axis.checkInputs();
}
void loop() {}

See also