byterazor / libconbee

(This is a readonly copy of the repository) The ConBee2 USB Stick is a Zigbee radio dongle. This library provides a raw communication interface to the USB dongle to configure the stick and read and write raw Application Support Layer (APS) frames.

Home Page:https://gitea.federationhq.de/byterazor/libconbee

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

libconbee

Description

The ConBee2 USB Stick is a Zigbee radio dongle . It supports the communication with Zigbee Light Link (ZLL) devices like Philips HUE and OSRAM Lightify.

This library provides a raw communication interface to the USB dongle to configure the stick and read and write raw Application Support Layer (APS) frames. This library does not handle any Zigbee communication. You require an additional library or application if you want to do Zigbee communication.

In addition to the library this projects provides a command-line tool to manage conbee stick related configurations, e.g. setting the security mode, extended PANIDs, etc.

Features

  • read /write stick related configuration registers

Supported/ Tested Operating Systems

At the moment this library and tool have only been tested on Linux.

Authors

Licenses

library related souce code

This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, version 3.

This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.

You should have received a copy of the GNU General Public License along with this program. If not, see http://www.gnu.org/licenses/.

external code

  • cmake/Modules/doxygen.cmake - cmake package for easy doxygen configuration, Copyright (C) 2018 by George Cave - gcave@stablecoder.ca, Apache License, Version 2.0

Building

This project uses cmake for generating the build system and building the library.

releases

mkdir build
cd build
cmake ..
make

with documentation

mkdir build
cd build
cmake -D BUILD_DOCUMENTATION=yes ..
make
make doc-libconbee

The doxygen documentation can be found under build/doxygen.

debugging

mkdir build
cd build
cmake -DCMAKE_BUILD_TYPE=DEBUG ..
make

About

(This is a readonly copy of the repository) The ConBee2 USB Stick is a Zigbee radio dongle. This library provides a raw communication interface to the USB dongle to configure the stick and read and write raw Application Support Layer (APS) frames.

https://gitea.federationhq.de/byterazor/libconbee

License:GNU General Public License v3.0


Languages

Language:C 91.6%Language:CMake 8.3%Language:Makefile 0.1%