Skip to content

Commit 7e92096

Browse files
committedMay 10, 2024
Set module version to v1.1
1 parent e767bc9 commit 7e92096

File tree

1 file changed

+11
-13
lines changed

1 file changed

+11
-13
lines changed
 

‎wiringpiook/setup.py

Lines changed: 11 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,19 @@
1-
# Python C Extension Module WiringPi OOK
2-
# Send OOK pulse train to digital gpio using wiringPi library
3-
#
4-
# build: "python3 setup.py develop --user"
5-
# usage: wiringpiook.tx(bcm_gpio,pulse_list,repeats=4)
6-
# return: tx time millis or negative error code
7-
# example: >>> import wiringpiook
8-
# >>> wiringpiook.tx(21,[500,500,2000,2000])
9-
# >>> 20
10-
#
11-
# Copyright (c) 2022 Jorge Rivera. All right reserved.
12-
# License GNU Lesser General Public License v3.0.
1+
"""
2+
Python C Extension Module WiringPi OOK
3+
4+
Send OOK pulse train to digital GPIO using wiringPi C library
5+
6+
See: https://github.com/latchdevel/raspicode
7+
8+
Copyright (c) 2022-2024 Jorge Rivera. All right reserved.
9+
License GNU Lesser General Public License v3.0.
10+
"""
1311

1412
from setuptools import setup, Extension
1513

1614
setup(
1715
name="wiringpiook",
18-
version="1.0",
16+
version="1.1",
1917
ext_modules=[Extension('wiringpiook', ['wiringpiook.c','wiringPi.c'])],
2018
url="https://github.com/latchdevel/raspicode",
2119
author="Jorge Rivera",

0 commit comments

Comments
 (0)