EthercatMaster.getAliasAddress()

[EthercatMaster]

説明

Get the EtherCAT Slave Alias Address on the EtherCAT bus.

Format

int getAliasAddress(uint16_t slave_no);

Syntax

EthercatMaster master;
master.getAliasAddress();

Parameters

  • unit16_t slave_no: the Slave position port that you want to get.

Returns

Int: The EtherCAT Slave Alias Address on EtherCAT bus.

Example

#include "Ethercat.h"

EthercatMaster master;

void setup(void) {
    unit32_t slavealiasaddress;
uint16_t slavecount=1;
    
    Serial.begin(115200);
    while (!Serial);
    
    master.begin();
    
    slavealiasaddress = master. getAliasAddress(slavecount);
    Serial.println(slavealiasaddress);
}

void loop() {}

Libraries Reference Home

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

コメントする

上部へスクロール