我想找...

搜尋

分享

目錄

ServoFrameInno.load()

[Servo86]

描述

Load the .ftxt action frame file created by Innovati action editor.

語法

myframe.load(filename)

參數

  • myframe: the object of ServoFrameInno type.
  • filename: the name of the action frame file saved by Innovati Action Editor. Note: This function will only look for action files under the root directory of the SD card. If your 86Duino is not inserted into the SD card, or if there is no specified file on the SD card, loading will fail.

回傳

  • true: The file was loaded successfully.
  • false: File loading failed.

範例

#include <Servo86.h>
  
Servo myservo1;
Servo myservo2;
Servo myservo3;
ServoFrameInno myframe;
 
void setup()
{
   myservo1.attach(9);
   myservo2.attach(11);
   myservo3.attach(5);
 
   // Load Frame0.ftxt action frame file
   myframe.load("Frame0.ftxt");
 
   myframe.playPositions(myservo1, myservo2, myservo3); // play action frames
}
  
void loop() {}

參考


函式庫參考主頁面

86Duino 參考的文本是根據 知識共享署名-相同方式分享 3.0 許可證,部分文本是從 Arduino 參考 修改的。 參考中的代碼示例已發佈到公共領域。

返回頂端