uFCoder 2.62
|
Functions | |
UFR_STATUS DL_API | GetCustomUiConfig (uint8_t *idle_mode, uint8_t *card_detection_mode, uint8_t *idle_color, uint8_t *card_detection_color, uint8_t *enabled) |
*uFR Zero series readers only. Function to get custom RGB UI signalization | |
UFR_STATUS DL_API | GetDisplayIntensity (VAR uint8_t *intensity) |
Function gets the intensity of light on the display. GetRgbIntensity (alias from version 5.0.55) | |
UFR_STATUS DL_API | SetCustomUiConfig (uint8_t idle_mode, uint8_t card_detection_mode, uint8_t *idle_color, uint8_t *card_detection_color, uint8_t enabled) |
*uFR Zero series readers only. Function to set custom RGB UI signalization | |
UFR_STATUS DL_API | SetDisplayData (IN uint8_t *display_data, uint8_t data_length) |
Function enables sending data to the display. A string of data contains information about the intensity of color in each cell of the display. | |
UFR_STATUS DL_API | SetDisplayIntensity (uint8_t intensity) |
Function sets the intensity of light on the display. | |
UFR_STATUS DL_API GetCustomUiConfig | ( | uint8_t * | idle_mode, |
uint8_t * | card_detection_mode, | ||
uint8_t * | idle_color, | ||
uint8_t * | card_detection_color, | ||
uint8_t * | enabled ) |
*uFR Zero series readers only. Function to get custom RGB UI signalization
idle_mode | pointer to idle mode value |
card_detection_mode | pointer to card detection mode value |
idle_color | pointer to idle color value(RGB) |
card_detection_color | pointer to card detection color value(RGB) |
enabled | pointer to enabled flag |
UFR_STATUS DL_API GetDisplayIntensity | ( | VAR uint8_t * | intensity | ) |
Function gets the intensity of light on the display. GetRgbIntensity (alias from version 5.0.55)
intensity | value of intensity (0 - 100) |
UFR_STATUS DL_API SetCustomUiConfig | ( | uint8_t | idle_mode, |
uint8_t | card_detection_mode, | ||
uint8_t * | idle_color, | ||
uint8_t * | card_detection_color, | ||
uint8_t | enabled ) |
*uFR Zero series readers only. Function to set custom RGB UI signalization
idle_mode | idle mode value |
card_detection_mode | card detection mode value |
idle_color | idle color value(RGB) |
card_detection_color | card detection color value(RGB) |
enabled | enabled flag |
UFR_STATUS DL_API SetDisplayData | ( | IN uint8_t * | display_data, |
uint8_t | data_length ) |
Function enables sending data to the display. A string of data contains information about the intensity of color in each cell of the display.
Each cell has three LED (red, green and blue). For each cell of the three bytes is necessary. The first byte indicates the intensity of the green color, the second byte indicates the intensity of the red color, and the third byte indicates the intensity of blue color. For example, if the display has 16 cells, an array contains 48 bytes. Value of intensity is in range from 0 to 255.
display_data | pointer to data array |
data_length | number of data into array |
UFR_STATUS DL_API SetDisplayIntensity | ( | uint8_t | intensity | ) |
Function sets the intensity of light on the display.
Value of intensity is in the range 0 to 100. This value writes into the reader's EEPROM, and it loads when the reader starts up. SetRgbIntensity()(alias from version 5.0.55)
intensity | value of intensity (0 - 100) |