Your SICK ID gives you access to our extensive range of services. This includes direct online orders, price and availability checks, and access to our digital services.
If you are having trouble logging in or would like to register a new user, click below to get assistance.
This article describe how to send USB HID keyboard strokes.
For the conversion process, the separate hardware "Intelletto Ethernet to Serial & HID Keyboard Converter" is used.
Follow the attached manual to set up the output format or script in the Lector. The chapter for the keyboard raw mode can be found at page 11.
Some example for Lector6xx:
Keyboard stoke
Characters to send in HEX format
Output format editor
Do not use STX ETX
Script
F8
FD 00 3A 00 00 00 00 00
local F8 = string.char(0xFD, 0x00, 0x41, 0x00, 0x00, 0x00, 0x00, 0x00)
Very important: Do not send any STX or ETX framing! Otherwise the Intelletto will not accept the RAW Keyboard characters!
When using a script, the framing can be configured with:
local success = ComChannel.transmit(hEthernetAux, outputString, true)
While "true" transmit the data without framing.
Example for Modifier Byte: Left SHIFT and Left ALT is pressed at the same time.