TOP Contributors

  1. MIKROE (2653 codes)
  2. Alcides Ramos (351 codes)
  3. Shawon Shahryiar (307 codes)
  4. jm_palomino (112 codes)
  5. Chisanga Mumba (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 (136663 times)
  2. FAT32 Library (69900 times)
  3. Network Ethernet Library (55920 times)
  4. USB Device Library (46248 times)
  5. Network WiFi Library (41881 times)
  6. FT800 Library (41127 times)
  7. GSM click (28972 times)
  8. PID Library (26406 times)
  9. mikroSDK (26343 times)
  10. microSD click (25350 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

Magic RFID Click

Rating:

5

Author: MIKROE

Last Updated: 2021-01-28

Package Version: 1.0.0.0

mikroSDK Library: 1.0.0.0

Category: RFID/NFC

Downloaded: 1902 times

Not followed.

License: MIT license  

Magic RFID Click is a compact add-on board that contains an embedded RFID module. This board features the M6E-NANO, UHF RFID module with ultra-low power consumption from JADAK.

No Abuse Reported

Do you want to subscribe in order to receive notifications regarding "Magic RFID Click" changes.

Do you want to unsubscribe in order to stop receiving notifications regarding "Magic RFID Click" changes.

Do you want to report abuse regarding "Magic RFID 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

Magic RFID Click

Magic RFID Click

Native view of the Magic RFID Click board.

View full image
Magic RFID Click

Magic RFID Click

Front and back view of the Magic RFID Click board.

View full image

Library Description

The library contains basic functions for working with ThingMagic clicks. The user has the ability to read tags and rssi values.

Key functions:

  • int8_t thingmagic_get_tag_rssi ( void ) - Get Tag RSSI value
  • void thingmagic_tag_parser ( thingmagic_data_t *data_obj ) - Gets Tag value after parsing
  • void thingmagic_process ( uint8_t rsp_data ) - General collecting response function

Examples description

The application is composed of three sections :

  • System Initialization - Initialize UART module and all necessary GPIO pins
  • Application Initialization - Initialize driver init and starts default configuration module
  • Application Task - Reads TAG information and RSSI value of the TAG
void application_task ( )
{
    if ( thingmagic_get_data_status( ) == 1 )
    {
        thingmagic_tag_parser( &tag );

        mikrobus_logWrite( ">> TAG INFO: ", _LOG_TEXT );
        for( cnt = 0; cnt < 12; cnt++ )
        {
            ByteToHex( tag.tag_buf[ cnt ], demo_text );
            mikrobus_logWrite( " 0x", _LOG_TEXT );
            mikrobus_logWrite( demo_text, _LOG_TEXT );
        }
        mikrobus_logWrite( " ", _LOG_LINE );
        mikrobus_logWrite( ">> TAG RSSI: ", _LOG_TEXT );
        IntToStr( tag.tag_rssi, demo_text );
        mikrobus_logWrite( demo_text, _LOG_LINE );
        
        thingmagic_reset_data( );
    }
}

Other mikroE Libraries used in the example:

  • UART Library
  • Conversions Library

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

EEPROM 7 click

0

EEPROM 7 Click is a compact add-on board that contains the highest-density memory solution. This board feature the 25CSM04, a 4-Mbit SPI Serial EEPROM with a 128-bit serial number and enhanced write protection mode from Microchip. Internally organized as 2,048 pages of 256 bytes each, the 25CSM04 comes up with the compatible SPI serial interface.

[Learn More]

LightRanger 10 click

0

LightRanger 10 Click is a compact add-on board suitable for range-finding and distance sensing applications. This board features the VL53L4CX, a ToF (time of flight) optical distance sensor with an extended target detection range from STMicroelectronics. Specifically designed for long-range and multi-target measurements, the VL53L4CX provides very accurate distance measurements up to 6m with excellent results over short distances and 18° FoV (Field of View), which improves performances under ambient light. Data processing is performed inside the VL53L4CX, providing distance information and confidence values through its I2C interface.

[Learn More]

DC Motor 2 Click

5

DC MOTOR 2 click carries the TB6593FNG driver IC for direct current motors. DC MOTOR 2 click communicates with the target microcontroller through mikroBUS PWM, INT (here SLP), RST and CS pins (here IN2 and IN1).

[Learn More]