EthercatMaster.getAliasAddress()

[EthercatMaster]

Description

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

The text of the 86Duino reference is a modification of the Arduino reference and is licensed under a Creative Commons Attribution-ShareAlike 3.0 License. Code samples in the reference are released into the public domain.

Leave a Comment

Scroll to Top