This repository contains a fully open-source C++ library for communicating with a Wireless SpeedoMeter.
It connects to the (virtual) serial port, which is associated with Bluetooth SPP profile.
This library uses Qt's SerialPort which creates a very good cross-platform abstraction of serial port interface. Thus, the library uses Qt's mechanisms like slots and signals.
It is not usable without Qt.
There are no other requirements.
You may use this library in two major ways:
- Simply include
wsm.h
header file into your project and use instance ofWsm
class. - Compile this project using
qmake
and use compiled object file.
- See
wsm.h
for API specification. - To change the version of this library, update both constants at
wsm.pro
file andwsm.h
file. This is needed for proper behavior as a standalone-lib and plain header too.
This library was created by:
- Jan Horacek (jan.horacek@kmz-brno.cz)
Do not hesitate to contact author in case of any troubles!
This application is released under the Apache License v2.0 .