A native Python library for communicating with the ZKAccess C3 Access Control Panels.
Project description
c3
A native Python library for communicating with the ZKTeco ZKAccess C3 Access Control Panels.
This library intends to implement the same functionality as provided by the ZKAccess C3 PullSDK API, but using native Python only. It is a port and extension of my (C3 Lua library)[../zkaccess-c3-lua].
Usage
To use the library, import the main class:
from c3 import C3
A panel connection can be created from the main class C3
:
panel = C3()
if panel.connect(ip):
panel.get_device_param(["~SerialNumber", "LockCount")
To use the real-time log (RTLog), or control outputs, also include the helper classes from controldevice
and rtlog
.
Protocol
The C3 access panels communicate using RS485 or TCP/IP. This library only support TCP/IP connections using IPv4. The connection is optionally secured by a password. Connections to C3 panels that use a password are not supported for this moment.
The wire protocol for the access panels is binary, with the following datagram both for requests (from client to equipment) and responses:
Byte | 0 | 1 | 2 | 3 | 4 | 5,6,7,8, ... | n-2, n-1 | n |
---|---|---|---|---|---|---|---|---|
Meaning | Start | Version | Command | Length Lsb | Length Msb | Data | Checksum | End |
Value | 0xAA |
0x01 |
0x55 |
The start bytes 0, 1 and last byte have a fixed value. The Command is one of the following (only listing commands supported by this library)
Code | Command |
---|---|
0x76 |
Connect (session initiation) |
0x02 |
Disconnection (session end) |
0x05 |
Device control command |
0x0B |
Retrieve realtime log |
0xC8 |
Response (confirm successful execution of command) |
The Length field (2 bytes, in Little Endian encoding) contains the number of bytes of the Data field. The Data field (as of byte 5) typically has at least 4 bytes:
- Session Id (2 bytes, in Little Endian encoding): The session identifier assigned by the equipment in response to a session initiation command
- Message Number (2 bytes, in Little Endian encoding): A message sequence number that starts from 0 (the session initiation command) and is increased with every command send
Byte | 5 | 6 | 7 | 8 | ... |
---|---|---|---|---|---|
Meaning | SessionId Lsb | SessionId Msb | Message Nr Lsb | Message Nr Msb | Payload |
The Checksum is a CRC-16 checksum calculated over the full message excluding the Start and End byte.
API
Connect
connect(host, port=4370)
The method is used to connect a C3 device using TCP. RS485 is not supported, neither is using a password to secure the connection. This method must be called before any other method and initializes a C3 session. Returns true in case of a successful connection.
Disconnect
disconnect()
Disconnects from the C3 access panel and ends the session.
Get RTLog (real-time log)
get_rt_log()
This method acquires the realtime event log generated by the access panel. It contains the door and/or alarm status of the equipment. It returns an array of DoorAlarmStatusRecord and/or EventRecord objects.
Get Device Parameters
get_device_param(params_arr)
This method reads device parameters, both configuration and static parameters. The argument is a list of (maximum 30) strings with the parameter names for which the values need to be returned. Valid values are (reduced list): ~SerialNumber, AntiPassback, AuxInCount, AuxOutCount, BackupTime, ComPwd, DateTime, DaylightSavingTime, DaylightSavingTimeOn, DLSTMode, Door{N}CancelKeepOpenDay, Door{N}CloseAndLock, Door{N}Detectortime, Door{N}Drivertime, Door{N}FirstCardOpenDoor, Door{N}ForcePassWord, Door{N}Intertime, Door{N}KeepOpenTimeZone, Door{N}MultiCardOpenDoor, Door{N}SensorType, Door{N}SupperPassWord, Door{N}ValidTZ, Door{N}VerifyType, GATEIPAddress, InBIOTowWay , InterLock, IPAddress, LockCount, NetMask, ReaderCount, Reboot, RS232BaudRate, StandardTime, WatchDog, WeekOfMonth{N}, For the full list and the meaning of the returned value, refer to the PullSDK specification. The return value is a table of key/value pairs with the parameter name and value.
Control Device
control_device(control_command_object)
Sends a control command to the access panel to perform an action on the requipment. The control_command is an instance of one of the following objects:
ControlDeviceOutput(output_number, address, duration)
: Open or close a door or auxiliary device- output_number: The number of the door or auxiliary to control (1-4)
- address: Determines whether door_number is a door (address = 1) or an auxiliary (address = 2)
- duration: The duration for which the door will be open; 0 will close the door immediately, 1-254 will leave the door open for that number of seconds: 255 will leave the door open for an undetermined period
ControlDeviceCancelAlarms()
: Cancel any triggered alarmControlDeviceRestart()
: Reboot the access panelControlDeviceNormalOpenStateEnable(door_number, enable_disable)
: Change the normal open/close state for the door controller- door_number: The number of the door to control (1-4)
- enable: Enable normally open mode (enable = True) or disable normally open mode for the door (enable_disable = 0, default)
Set log level
log_level(level)
Sets the logging level, using the Python logging levels.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Hashes for zkaccess_c3-0.0.5-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 71275549e3bc0554e08710a04b1d7fbb5abefefa0a18a41352115ca9cac2a4e7 |
|
MD5 | 191026d49db845e51f0b2723bcfc5372 |
|
BLAKE2b-256 | 5e3d9b134421a42e09532d9e02776473ff1c1276360ed8cbaab1ca3cec076976 |