rpi_gpio 0.4.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/Gemfile +4 -0
- data/Gemfile.lock +36 -0
- data/LICENSE +22 -0
- data/README.md +145 -0
- data/Rakefile +3 -0
- data/ext/rpi_gpio/c_gpio.c +305 -0
- data/ext/rpi_gpio/c_gpio.h +55 -0
- data/ext/rpi_gpio/common.c +93 -0
- data/ext/rpi_gpio/common.h +47 -0
- data/ext/rpi_gpio/cpuinfo.c +272 -0
- data/ext/rpi_gpio/cpuinfo.h +40 -0
- data/ext/rpi_gpio/event_gpio.c +605 -0
- data/ext/rpi_gpio/event_gpio.h +40 -0
- data/ext/rpi_gpio/extconf.rb +5 -0
- data/ext/rpi_gpio/rb_gpio.c +453 -0
- data/ext/rpi_gpio/rb_gpio.h +47 -0
- data/ext/rpi_gpio/rb_pwm.c +148 -0
- data/ext/rpi_gpio/rb_pwm.h +41 -0
- data/ext/rpi_gpio/rpi_gpio.c +45 -0
- data/ext/rpi_gpio/rpi_gpio.h +28 -0
- data/ext/rpi_gpio/soft_pwm.c +235 -0
- data/ext/rpi_gpio/soft_pwm.h +33 -0
- metadata +93 -0
@@ -0,0 +1,33 @@
|
|
1
|
+
/*
|
2
|
+
Original code by Ben Croston modified for Ruby by Nick Lowery
|
3
|
+
(github.com/clockvapor)
|
4
|
+
Copyright (c) 2014-2020 Nick Lowery
|
5
|
+
|
6
|
+
Copyright (c) 2013-2018 Ben Croston
|
7
|
+
|
8
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy of
|
9
|
+
this software and associated documentation files (the "Software"), to deal in
|
10
|
+
the Software without restriction, including without limitation the rights to
|
11
|
+
use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
|
12
|
+
of the Software, and to permit persons to whom the Software is furnished to do
|
13
|
+
so, subject to the following conditions:
|
14
|
+
|
15
|
+
The above copyright notice and this permission notice shall be included in all
|
16
|
+
copies or substantial portions of the Software.
|
17
|
+
|
18
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
19
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
20
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
21
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
22
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
23
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
24
|
+
SOFTWARE.
|
25
|
+
*/
|
26
|
+
|
27
|
+
/* Software PWM using threads */
|
28
|
+
|
29
|
+
void pwm_set_duty_cycle(unsigned int gpio, float dutycycle);
|
30
|
+
void pwm_set_frequency(unsigned int gpio, float freq);
|
31
|
+
void pwm_start(unsigned int gpio);
|
32
|
+
void pwm_stop(unsigned int gpio);
|
33
|
+
int pwm_exists(unsigned int gpio);
|
metadata
ADDED
@@ -0,0 +1,93 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: rpi_gpio
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.4.0
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Nick Lowery
|
8
|
+
autorequire:
|
9
|
+
bindir: bin
|
10
|
+
cert_chain: []
|
11
|
+
date: 2020-07-21 00:00:00.000000000 Z
|
12
|
+
dependencies:
|
13
|
+
- !ruby/object:Gem::Dependency
|
14
|
+
name: rake-compiler
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
16
|
+
requirements:
|
17
|
+
- - ">="
|
18
|
+
- !ruby/object:Gem::Version
|
19
|
+
version: '0'
|
20
|
+
type: :development
|
21
|
+
prerelease: false
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
23
|
+
requirements:
|
24
|
+
- - ">="
|
25
|
+
- !ruby/object:Gem::Version
|
26
|
+
version: '0'
|
27
|
+
- !ruby/object:Gem::Dependency
|
28
|
+
name: rspec
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
30
|
+
requirements:
|
31
|
+
- - ">="
|
32
|
+
- !ruby/object:Gem::Version
|
33
|
+
version: '0'
|
34
|
+
type: :development
|
35
|
+
prerelease: false
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
37
|
+
requirements:
|
38
|
+
- - ">="
|
39
|
+
- !ruby/object:Gem::Version
|
40
|
+
version: '0'
|
41
|
+
description: Ruby conversion of RPi.GPIO Python module
|
42
|
+
email: nick.a.lowery@gmail.com
|
43
|
+
executables: []
|
44
|
+
extensions:
|
45
|
+
- ext/rpi_gpio/extconf.rb
|
46
|
+
extra_rdoc_files: []
|
47
|
+
files:
|
48
|
+
- Gemfile
|
49
|
+
- Gemfile.lock
|
50
|
+
- LICENSE
|
51
|
+
- README.md
|
52
|
+
- Rakefile
|
53
|
+
- ext/rpi_gpio/c_gpio.c
|
54
|
+
- ext/rpi_gpio/c_gpio.h
|
55
|
+
- ext/rpi_gpio/common.c
|
56
|
+
- ext/rpi_gpio/common.h
|
57
|
+
- ext/rpi_gpio/cpuinfo.c
|
58
|
+
- ext/rpi_gpio/cpuinfo.h
|
59
|
+
- ext/rpi_gpio/event_gpio.c
|
60
|
+
- ext/rpi_gpio/event_gpio.h
|
61
|
+
- ext/rpi_gpio/extconf.rb
|
62
|
+
- ext/rpi_gpio/rb_gpio.c
|
63
|
+
- ext/rpi_gpio/rb_gpio.h
|
64
|
+
- ext/rpi_gpio/rb_pwm.c
|
65
|
+
- ext/rpi_gpio/rb_pwm.h
|
66
|
+
- ext/rpi_gpio/rpi_gpio.c
|
67
|
+
- ext/rpi_gpio/rpi_gpio.h
|
68
|
+
- ext/rpi_gpio/soft_pwm.c
|
69
|
+
- ext/rpi_gpio/soft_pwm.h
|
70
|
+
homepage: https://github.com/ClockVapor/rpi_gpio
|
71
|
+
licenses:
|
72
|
+
- MIT
|
73
|
+
metadata: {}
|
74
|
+
post_install_message:
|
75
|
+
rdoc_options: []
|
76
|
+
require_paths:
|
77
|
+
- lib
|
78
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
79
|
+
requirements:
|
80
|
+
- - ">="
|
81
|
+
- !ruby/object:Gem::Version
|
82
|
+
version: '0'
|
83
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
84
|
+
requirements:
|
85
|
+
- - ">="
|
86
|
+
- !ruby/object:Gem::Version
|
87
|
+
version: '0'
|
88
|
+
requirements: []
|
89
|
+
rubygems_version: 3.1.2
|
90
|
+
signing_key:
|
91
|
+
specification_version: 4
|
92
|
+
summary: Ruby conversion of RPi.GPIO Python module
|
93
|
+
test_files: []
|