getMotorResolution()

描述

Get the motor resolution object.

Relevant Objects

  • Object 60EFh: Motor resolution

語法

uint32_t getMotorResolution();

參數

回傳值

Return the value of the motor resolution object.

備註

This function must be called after a successful execution of EthercatMaster::begin(). This function is blocking and cannot be called in callback functions.

#include "Ethercat.h" 

EthercatMaster master; 
EthercatDevice_CiA402 motor; 

void setup() { 
  Serial.begin(115200); 
  while (!Serial);
  
  master.begin(); 
  motor.attach(0, master); 
  Serial.print("Motor Resolution: "); 
  Serial.println(motor.getMotorResolution());
}

void loop() {
  // put your main code here, to run repeatedly: 

}

Please see the EtherCAT CiA 402 User Manual for more QEC EtherCAT instructions and API usage.

返回頂端