當前位置: 首頁>>編程示例 >>用法及示例精選 >>正文


Arduino Arduino_EMBRYO_2 - drawLine()用法及代碼示例

用 EMBRYO 2 的兩個軸繪製一條線。

用法

robot.drawline(initialPositionX,
               initialPositionY,
               finalPositionX,
               finalPositionY)

參數

  • initialPositionX : 直線初始 X 軸位置。
  • initialPositionY:直線初始 Y 軸位置。
  • finalPositionX:線最終 X 軸位置。
  • finalPositionY:直線最終 Y 軸位置。

示例

#include <Arduino_EMBRYO_2.h>

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

StepMotor axisY(2, A5, 10, 11, 8, 9, A3, A4, 2, 12);

Embryo robot(axisX, axisY, 2, 12);

void setup() {
  Serial.begin(115200);
  while (!Serial) {};

  robot.begin();

  robot.setLengthXY(45, 38);
  
  Serial.println("Press the Start Button to start the machine");
  while(!robot.ready());
  
  Serial.println("Moving the robot to the initial XY position ...");
  
  robot.toPositionXY(5, 5);

  Serial.println("Press the forward button to continue ...");
}
void loop() {
  if(axisX.readBtnForward()){
    robot.drawLine(5,5,5,10);
  }
}

相關用法


注:本文由純淨天空篩選整理自arduino.cc大神的英文原創作品 Arduino_EMBRYO_2 - drawLine()。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。