[AIServo86]
説明
Load the .mtn Frame file generated by RoboPlus Motion Editor.
構文
aiservoframerobotis.load(filename, motionname, step)
媒介変数
aiservoframerobotis: Variant of the AIServoFrameRobotis type.filename: The name of the .mtn file generated by the RoboPlus Motion editor. Please note that currently only downloading files from the root of the SD card is supported. If your 86Duino does not have an SD card on it, or if the SD card does not contain the specified file, loading will fail.motionname: the name of the Motion you want to load into the .mtn file.framename: the Step number of the Motion you want to read.
戻り値
- true: File loading successfully.
- false: File loading failed.
例
#include <AIServo86.h>
AIServoPort(ROBOTIS, AX12) bus;
AIServo myservo0;
AIServo myservo1;
AIServo myservo2;
AIServoFrameRobotis myframe;
void setup()
{
bus.begin(Serial1, 1000000);
myservo0. attach(bus, 9);
myservo1. attach(bus, 11);
myservo2. attach(bus, 5);
// Read Frame 0 of Sequence 0 in the Pololu Frame file
myframe.load("test.mtn", "abc", 1);
myframe.playPositions(myservo0, myservo1, myservo2); // play action
}
void loop() {}参照
- positions[]
- setPostions()
- save()
ライブラリリファレンスホーム
86Duinoリファレンスのテキストは、Arduinoリファレンスを改変したもので、Creative Commons Attribution-ShareAlike 3.0ライセンスに基づいてライセンスされています。リファレンス内のコードサンプルはパブリックドメインとして公開されています。