
Write Tag
Example 2
Another version of Example 1 using the HEX parameter.
~CREATE;HELLO
RFWRITE;HEX;AT1;*48454C4C4F544147*
END ~EXECUTE;HELLO ~NORMAL
Example 3
Program a tag using the EPC parameter 1. This results in the tag having the first two bits = 01, next 56 bits with hexadecimal values “01234567890123”, and last 6 bits = 0.
~CREATE;HELLO
RFWRITE;EPC1;AT1;*01234567890123*
END ~EXECUTE;HELLO ~NORMAL
Example 4
Write tag command with dynamic
~CREATE;DYNATAG
//Create a form named DYNATAG. RFWRITE;RF1;8;AT1;
//RFID Write Tag command with dynamic
//
//first location of the tag.
END
//Terminate DYNATAG form creation.
~EXECUTE;DYNATAG
~RF1;*HELLOTAG*
//Execute the DYNATAG with the dynamic data
//“HELLOTAG”.
~NORMAL
// Back to normal mode.
57