当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Processing SoftwareServo用法及代码示例


Processing, 类SoftwareServo用法介绍。

构造函数

  • SoftwareServo(parent)

参数

  • parent 通常使用"this"

说明

打开连接到 GPIO 引脚的 RC 伺服电机


该库使用定时器通过脉冲宽度调制 (PWM) 来控制 RC 伺服电机。虽然不如专用 PWM 硬件准确,但它已被证明足以满足许多应用。



将信号线(通常为黄色)连接到任何可用的 GPIO 引脚并控制伺服的角度,如示例草图所示。

例子

import processing.io.*;
SoftwareServo servo;

void setup() {
  servo = new SoftwareServo(this);
  servo.attach(4);

  // On the Raspberry Pi, GPIO 4 is pin 7 on the pin header,
  // located on the fourth row, above one of the ground pins
}

void draw() {
  // we don't go right to the edge to prevent
  // making the servo unhappy
  float angle = 90 + sin(frameCount / 100.0)*85;
  servo.write(angle);
}

方法

  • SoftwareServo.attach()将伺服电机连接到 GPIO 引脚
  • SoftwareServo.attach()将伺服电机连接到 GPIO 引脚

    您必须在调用之前调用此函数write().请注意,伺服电机只会在第一次之后被指示移动write()叫做。

    可选参数 minPulse 和 maxPulse 控制最小和最大脉冲宽度持续时间。默认值,与 Arduino 的 Servo 类相同,应该与大多数伺服电机兼容。
  • SoftwareServo.write()将伺服电机移动到给定方向
  • SoftwareServo.attached()返回伺服电机是否连接到引脚
  • SoftwareServo.detach()从 GPIO 引脚分离伺服电机

相关用法


注:本文由纯净天空筛选整理自processing.org大神的英文原创作品 SoftwareServo。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。