AIServoOffset constructor

[AIServo86]

説明

Initializes the AIServoOffset class.

構文

AIServoOffset myoffset
AIServoOffset myoffset(filename)

媒介変数

filename: The file name.
When a file name is specified, the specified servo trim value file will be loaded during the initialization of the ServoOffset category. Please note that currently, only files from the root directory of the SD card are supported. If your 86Duino is not equipped with an SD card, or if the SD card does not contain the specified file, loading will fail.

#include <AIServo86.h>
 
AIServoPort(ROBOTIS, AX12) bus;
AIServo myservo1;
AIServo myservo2;
AIServo myservo3;
AIServoOffset myoffset("offset.txt"); // Load the servo offset value file named offset.txt from the SD card
 
void setup()
{
   bus.begin(Serial1, 1000000);
   myservo1. attach(bus, 1);
   myservo2. attach(bus, 3);
   myservo3. attach(bus, 5);
 
   myoffset. setOffsets();
   myservo1. setPosition(100);
   myservo2.setPosition(150);
   myservo3.setPosition(200);
   aiservoMultiRun();
}
 
void loop() {}

参照


ライブラリリファレンスホーム

86Duinoリファレンスのテキストは、Arduinoリファレンスを改変したもので、Creative Commons Attribution-ShareAlike 3.0ライセンスに基づいてライセンスされています。リファレンス内のコードサンプルはパブリックドメインとして公開されています。

上部へスクロール