TOP Contributors

  1. MIKROE (2693 codes)
  2. Alcides Ramos (362 codes)
  3. Shawon Shahryiar (307 codes)
  4. jm_palomino (112 codes)
  5. Bugz Bensce (90 codes)
  6. S P (73 codes)
  7. dany (71 codes)
  8. MikroBUS.NET Team (35 codes)
  9. NART SCHINACKOW (34 codes)
  10. Armstrong Subero (27 codes)

Most Downloaded

  1. Timer Calculator (137949 times)
  2. FAT32 Library (70758 times)
  3. Network Ethernet Library (56443 times)
  4. USB Device Library (46825 times)
  5. Network WiFi Library (42586 times)
  6. FT800 Library (41785 times)
  7. GSM click (29468 times)
  8. mikroSDK (27020 times)
  9. PID Library (26661 times)
  10. microSD click (25797 times)
Libstock prefers package manager

Package Manager

We strongly encourage users to use Package manager for sharing their code on Libstock website, because it boosts your efficiency and leaves the end user with no room for error. [more info]

< Back
mikroSDK Library

MAC Address click

Rating:

1

Author: MIKROE

Last Updated: 2019-05-27

Package Version: 1.0.0.1

mikroSDK Library: 1.0.0.0

Category: EEPROM

Downloaded: 3826 times

Not followed.

License: MIT license  

MAC Address click provides a unique node address for your application. It also has 1Kbit of writable EEPROM memory. MAC Address click carries the 24AA025E64 2K I2C Serial EEPROM with EUI-64 node identity. The click is designed to run on either 3.3V or 5V power supply.

No Abuse Reported

Do you want to subscribe in order to receive notifications regarding "MAC Address click" changes.

Do you want to unsubscribe in order to stop receiving notifications regarding "MAC Address click" changes.

Do you want to report abuse regarding "MAC Address click".

  • mikroSDK Library 2.0.0.0
  • Comments (0)
DOWNLOAD LINK RELATED COMPILER CONTAINS
mikroBasic PRO for ARM
  • lib
  • src
  • exa
  • hlp
  • hex
  • sch
  • pcb
  • doc
mikroBasic PRO for AVR
  • lib
  • src
  • exa
  • hlp
  • hex
  • sch
  • pcb
  • doc
mikroBasic PRO for dsPIC30/33 & PIC24
  • lib
  • src
  • exa
  • hlp
  • hex
  • sch
  • pcb
  • doc
mikroBasic PRO for FT90x
  • lib
  • src
  • exa
  • hlp
  • hex
  • sch
  • pcb
  • doc
mikroBasic PRO for PIC
  • lib
  • src
  • exa
  • hlp
  • hex
  • sch
  • pcb
  • doc
mikroBasic PRO for PIC32
  • lib
  • src
  • exa
  • hlp
  • hex
  • sch
  • pcb
  • doc
mikroC PRO for ARM
  • lib
  • src
  • exa
  • hlp
  • hex
  • sch
  • pcb
  • doc
mikroC PRO for AVR
  • lib
  • src
  • exa
  • hlp
  • hex
  • sch
  • pcb
  • doc
mikroC PRO for dsPIC30/33 & PIC24
  • lib
  • src
  • exa
  • hlp
  • hex
  • sch
  • pcb
  • doc
mikroC PRO for FT90x
  • lib
  • src
  • exa
  • hlp
  • hex
  • sch
  • pcb
  • doc
mikroC PRO for PIC
  • lib
  • src
  • exa
  • hlp
  • hex
  • sch
  • pcb
  • doc
mikroC PRO for PIC32
  • lib
  • src
  • exa
  • hlp
  • hex
  • sch
  • pcb
  • doc
mikroPascal PRO for ARM
  • lib
  • src
  • exa
  • hlp
  • hex
  • sch
  • pcb
  • doc
mikroPascal PRO for AVR
  • lib
  • src
  • exa
  • hlp
  • hex
  • sch
  • pcb
  • doc
mikroPascal PRO for dsPIC30/33 & PIC24
  • lib
  • src
  • exa
  • hlp
  • hex
  • sch
  • pcb
  • doc
mikroPascal PRO for FT90x
  • lib
  • src
  • exa
  • hlp
  • hex
  • sch
  • pcb
  • doc
mikroPascal PRO for PIC
  • lib
  • src
  • exa
  • hlp
  • hex
  • sch
  • pcb
  • doc
mikroPascal PRO for PIC32
  • lib
  • src
  • exa
  • hlp
  • hex
  • sch
  • pcb
  • doc

mikroSDK Library Blog

Front/Back View

Front/Back View

Front and Back view of the MAC Address Click board.

View full image

Library Description

The library covers all the necessary functions to control MAC Address click board. 
The library performs the communication with the device via I2C protocol by writing to registers and by reading from registers.

Key functions:

  • void macaddress_getMAC( uint8_t *readMac ) - Read MAC address function.
  • void macaddress_writeByte( uint8_t regAddress, uint8_t writeData ) - Generic write the byte of data function.
  • void macaddress_readMulti( uint8_t startAddr, uint8_t *readData, uint8_t nBytes ) - Generic read data - sequential function.

Examples description

The application is composed of the three sections :

  • System Initialization - Initializes I2C structures and start to write log.
  • Application Initialization - Initialization driver enables - I2C, also write log.
  • Application Task - This is an example which demonstrates the use of MAC Address click board. MAC Address click communicates with register via I2C protocol by the write to register and read from the register. This example shows write/read single byte and sequential write/read from EEPROM. Results are being sent to the Usart Terminal where you can track their changes. All data logs write on USB uart changes for every 1 sec.
void applicationTask()
{
    macaddress_getMAC( &readMac );
    Delay_100ms();

    mikrobus_logWrite( " MAC Address : ", _LOG_TEXT );
    for( cnt = 0; cnt < 6; cnt++ )
    {
        ByteToHex( readMac[ cnt ], logText );
        ltrim( logText );
        mikrobus_logWrite( logText, _LOG_TEXT );

        if( cnt != 5 )
        {
            mikrobus_logWrite( ":", _LOG_TEXT );
        }
    }

    mikrobus_logWrite( "", _LOG_LINE );
    mikrobus_logWrite( "---------------------------------", _LOG_LINE );
    mikrobus_logWrite( " Write Single Byte Test : ", _LOG_LINE );

    macaddress_writeByte( bufferLoop, bufferLoop + 1 );
    ByteToHex( bufferLoop + 1, logText );
    ltrim( logText );

    mikrobus_logWrite( " Byte value [ ", _LOG_TEXT );
    mikrobus_logWrite( logText, _LOG_TEXT );
    mikrobus_logWrite( " ] successfully written to [ ", _LOG_TEXT );
    ByteToHex( bufferLoop, logText );
    ltrim( logText );
    mikrobus_logWrite( logText, _LOG_TEXT );
    mikrobus_logWrite( " ] address", _LOG_LINE );
    mikrobus_logWrite( "-----------------------------", _LOG_TEXT );
    mikrobus_logWrite( "-----------------------------", _LOG_LINE );
    mikrobus_logWrite( " Read Single Byte Test ", _LOG_TEXT );

    macaddress_readByte( bufferLoop );
    ByteToHex( bufferLoop + 1, logText );
    ltrim( logText );
    mikrobus_logWrite( "", _LOG_LINE );
    mikrobus_logWrite( " Byte value [ ", _LOG_TEXT );
    mikrobus_logWrite( logText, _LOG_TEXT );
    mikrobus_logWrite( " ] successfully read from  [ ", _LOG_TEXT );
    ByteToHex( bufferLoop, logText );
    ltrim( logText );
    mikrobus_logWrite( logText, _LOG_TEXT );
    mikrobus_logWrite( " ] address", _LOG_LINE );
    mikrobus_logWrite( "-----------------------------", _LOG_TEXT );
    mikrobus_logWrite( "-----------------------------", _LOG_LINE );
    
    macaddress_writeMulti( bufferLoop, &buffer, 12 );
    Delay_100ms();

    mikrobus_logWrite( " Array values : ", _LOG_LINE );
    for( cnt = 0; cnt < 12; cnt++ )
    {
        ByteToHex( buffer[cnt], logText );
        ltrim( logText );
        mikrobus_logWrite( "[ ", _LOG_TEXT );
        mikrobus_logWrite( logText, _LOG_TEXT );
        mikrobus_logWrite( " ]", _LOG_TEXT );
    }

    ByteToHex( bufferLoop, logText );
    ltrim( logText );
    mikrobus_logWrite( " successfully written to [ ", _LOG_TEXT );
    mikrobus_logWrite( logText, _LOG_TEXT );
    mikrobus_logWrite( " ] address and forward", _LOG_LINE );
    mikrobus_logWrite( "-----------------------------", _LOG_TEXT );
    mikrobus_logWrite( "-----------------------------", _LOG_LINE );

    macaddress_readMulti( bufferLoop, &buffer, 12 );
    Delay_100ms();

    mikrobus_logWrite( " Array values : ", _LOG_LINE );
    for( cnt = 0; cnt < 12; cnt++ )
    {
        ByteToHex( buffer[cnt], logText );
        ltrim( logText );
        mikrobus_logWrite( "[ ", _LOG_TEXT );
        mikrobus_logWrite( logText, _LOG_TEXT );
        mikrobus_logWrite( " ]", _LOG_TEXT );
    }

    ByteToHex( bufferLoop, logText );
    ltrim( logText );
    mikrobus_logWrite( " successfully read from [ ", _LOG_TEXT );
    mikrobus_logWrite( logText, _LOG_TEXT );
    mikrobus_logWrite( " ] address and forward", _LOG_LINE );
    mikrobus_logWrite( "-----------------------------", _LOG_TEXT );
    mikrobus_logWrite( "-----------------------------", _LOG_LINE );

    if ( bufferLoop >= _MACADDRESS_END_ADDR )
    {
        bufferLoop = 0;
    }

    bufferLoop++;
    Delay_1sec();
}

Other mikroE Libraries used in the example:

  • I2C
  • UART
  • Conversions

Additional notes and informations

Depending on the development board you are using, you may need USB UART clickUSB UART 2 click or RS232 click to connect to your PC, for development systems with no UART to USB interface available on the board. The terminal available in all MikroElektronika compilers, or any other terminal application of your choice, can be used to read the message.

ALSO FROM THIS AUTHOR

GNSS click

5

Simple example which demonstrates usage of the GNSS Click board. It displays a map of the world on the GLCD and shows the location of the GPS module on it.

[Learn More]

ADC 3 click

0

ADC 3 Click represent 16-bit multichannel analog-to-digital converter. The click has four pairs of screw terminals onboard, letting you access the chip’s four differential input channels.

[Learn More]

TempHum 6 click

0

Temp&Hum 6 click is a smart temperature and humidity sensing click board™, packed with features that allow easy and simple integration into any design.

[Learn More]