https://github.com/azzra/python3-wiimote
Port of python-cwiid compatible with Python3
https://github.com/azzra/python3-wiimote
python python-extension python3 wiimote
Last synced: 3 months ago
JSON representation
Port of python-cwiid compatible with Python3
- Host: GitHub
- URL: https://github.com/azzra/python3-wiimote
- Owner: azzra
- License: gpl-2.0
- Created: 2017-03-18T22:16:17.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2019-03-19T17:27:26.000Z (over 6 years ago)
- Last Synced: 2025-03-18T13:54:41.758Z (3 months ago)
- Topics: python, python-extension, python3, wiimote
- Language: C
- Size: 499 KB
- Stars: 48
- Watchers: 6
- Forks: 19
- Open Issues: 6
-
Metadata Files:
- Readme: README.md
- Changelog: ChangeLog
- License: COPYING
Awesome Lists containing this project
README
# CWiid Wiimote Interface
[](https://travis-ci.org/azzra/python3-wiimote)
## DESCRIPTION
The CWiid package contains the following parts:
1. libcwiid - wiimote API
2. cwiid module - python interface to libcwiid## REQUIREMENTS
awk, bison, flex, bluez-libs, python 3.5 or greater, python dev for python module, kernel sources
## INSTALLATION
First of all, you need to prepare the environment:
```sh
aclocal
autoconf
./configure
make
```### Only extension
Install the library with package manger & the extension from the sources
```sh
apt-get install libcwiid1
cd python
sudo make install
```### Library & extension
Use extension & library from sources
```sh
sudo make install
```## Credits
Original libcwiid & Python module author: L. Donnie Smith .
You can fin the original source here: https://github.com/abstrakraft/cwiidI just made the Python extension working for Python 3.