rpi_gpio 0.3.2 → 0.3.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- data/Gemfile.lock +5 -8
- data/README.md +145 -145
- data/ext/rpi_gpio/rb_gpio.c +426 -446
- data/ext/rpi_gpio/rb_gpio.h +48 -48
- metadata +28 -35
- data/lib/rpi_gpio.so +0 -0
data/ext/rpi_gpio/rb_gpio.h
CHANGED
@@ -1,48 +1,48 @@
|
|
1
|
-
/*
|
2
|
-
Original code by Ben Croston modified for Ruby by Nick Lowery
|
3
|
-
(github.com/clockvapor)
|
4
|
-
Copyright (c) 2014-2015 Nick Lowery
|
5
|
-
|
6
|
-
Copyright (c) 2013-2014 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
|
-
#include "ruby.h"
|
28
|
-
#include "c_gpio.h"
|
29
|
-
#include "event_gpio.h"
|
30
|
-
#include "cpuinfo.h"
|
31
|
-
#include "common.h"
|
32
|
-
#include "rb_pwm.h"
|
33
|
-
|
34
|
-
void define_gpio_module_stuff(void);
|
35
|
-
int mmap_gpio_mem(void);
|
36
|
-
int
|
37
|
-
int is_gpio_output(unsigned int gpio);
|
38
|
-
int is_rpi(void);
|
39
|
-
VALUE GPIO_clean_up(int argc, VALUE *argv, VALUE self);
|
40
|
-
VALUE GPIO_reset(VALUE self);
|
41
|
-
VALUE GPIO_setup(VALUE self, VALUE channel, VALUE hash);
|
42
|
-
VALUE GPIO_set_numbering(VALUE self, VALUE mode);
|
43
|
-
VALUE GPIO_set_high(VALUE self, VALUE channel);
|
44
|
-
VALUE GPIO_set_low(VALUE self, VALUE channel);
|
45
|
-
VALUE GPIO_test_high(VALUE self, VALUE channel);
|
46
|
-
VALUE GPIO_test_low(VALUE self, VALUE channel);
|
47
|
-
VALUE GPIO_set_warnings(VALUE self, VALUE setting);
|
48
|
-
|
1
|
+
/*
|
2
|
+
Original code by Ben Croston modified for Ruby by Nick Lowery
|
3
|
+
(github.com/clockvapor)
|
4
|
+
Copyright (c) 2014-2015 Nick Lowery
|
5
|
+
|
6
|
+
Copyright (c) 2013-2014 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
|
+
#include "ruby.h"
|
28
|
+
#include "c_gpio.h"
|
29
|
+
#include "event_gpio.h"
|
30
|
+
#include "cpuinfo.h"
|
31
|
+
#include "common.h"
|
32
|
+
#include "rb_pwm.h"
|
33
|
+
|
34
|
+
void define_gpio_module_stuff(void);
|
35
|
+
int mmap_gpio_mem(void);
|
36
|
+
int is_gpio_initialized(unsigned int gpio);
|
37
|
+
int is_gpio_output(unsigned int gpio);
|
38
|
+
int is_rpi(void);
|
39
|
+
VALUE GPIO_clean_up(int argc, VALUE *argv, VALUE self);
|
40
|
+
VALUE GPIO_reset(VALUE self);
|
41
|
+
VALUE GPIO_setup(VALUE self, VALUE channel, VALUE hash);
|
42
|
+
VALUE GPIO_set_numbering(VALUE self, VALUE mode);
|
43
|
+
VALUE GPIO_set_high(VALUE self, VALUE channel);
|
44
|
+
VALUE GPIO_set_low(VALUE self, VALUE channel);
|
45
|
+
VALUE GPIO_test_high(VALUE self, VALUE channel);
|
46
|
+
VALUE GPIO_test_low(VALUE self, VALUE channel);
|
47
|
+
VALUE GPIO_set_warnings(VALUE self, VALUE setting);
|
48
|
+
|
metadata
CHANGED
@@ -1,46 +1,41 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: rpi_gpio
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.3.
|
5
|
-
prerelease:
|
4
|
+
version: 0.3.3
|
6
5
|
platform: ruby
|
7
6
|
authors:
|
8
7
|
- Nick Lowery
|
9
8
|
autorequire:
|
10
9
|
bindir: bin
|
11
10
|
cert_chain: []
|
12
|
-
date:
|
11
|
+
date: 2017-04-24 00:00:00.000000000 Z
|
13
12
|
dependencies:
|
14
13
|
- !ruby/object:Gem::Dependency
|
15
14
|
name: rake-compiler
|
16
15
|
requirement: !ruby/object:Gem::Requirement
|
17
|
-
none: false
|
18
16
|
requirements:
|
19
|
-
- -
|
17
|
+
- - ">="
|
20
18
|
- !ruby/object:Gem::Version
|
21
19
|
version: '0'
|
22
20
|
type: :development
|
23
21
|
prerelease: false
|
24
22
|
version_requirements: !ruby/object:Gem::Requirement
|
25
|
-
none: false
|
26
23
|
requirements:
|
27
|
-
- -
|
24
|
+
- - ">="
|
28
25
|
- !ruby/object:Gem::Version
|
29
26
|
version: '0'
|
30
27
|
- !ruby/object:Gem::Dependency
|
31
28
|
name: rspec
|
32
29
|
requirement: !ruby/object:Gem::Requirement
|
33
|
-
none: false
|
34
30
|
requirements:
|
35
|
-
- -
|
31
|
+
- - ">="
|
36
32
|
- !ruby/object:Gem::Version
|
37
33
|
version: '0'
|
38
34
|
type: :development
|
39
35
|
prerelease: false
|
40
36
|
version_requirements: !ruby/object:Gem::Requirement
|
41
|
-
none: false
|
42
37
|
requirements:
|
43
|
-
- -
|
38
|
+
- - ">="
|
44
39
|
- !ruby/object:Gem::Version
|
45
40
|
version: '0'
|
46
41
|
description: Ruby conversion of RPi.GPIO Python module
|
@@ -50,52 +45,50 @@ extensions:
|
|
50
45
|
- ext/rpi_gpio/extconf.rb
|
51
46
|
extra_rdoc_files: []
|
52
47
|
files:
|
53
|
-
-
|
54
|
-
-
|
55
|
-
-
|
48
|
+
- Gemfile
|
49
|
+
- Gemfile.lock
|
50
|
+
- LICENSE
|
51
|
+
- README.md
|
52
|
+
- Rakefile
|
53
|
+
- ext/rpi_gpio/c_gpio.c
|
56
54
|
- ext/rpi_gpio/c_gpio.h
|
57
|
-
- ext/rpi_gpio/soft_pwm.c
|
58
|
-
- ext/rpi_gpio/rpi_gpio.h
|
59
|
-
- ext/rpi_gpio/cpuinfo.c
|
60
|
-
- ext/rpi_gpio/common.h
|
61
|
-
- ext/rpi_gpio/rb_gpio.c
|
62
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
|
63
61
|
- ext/rpi_gpio/extconf.rb
|
62
|
+
- ext/rpi_gpio/rb_gpio.c
|
64
63
|
- ext/rpi_gpio/rb_gpio.h
|
65
|
-
- ext/rpi_gpio/rpi_gpio.c
|
66
|
-
- ext/rpi_gpio/event_gpio.h
|
67
|
-
- ext/rpi_gpio/c_gpio.c
|
68
|
-
- ext/rpi_gpio/rb_pwm.h
|
69
|
-
- ext/rpi_gpio/cpuinfo.h
|
70
64
|
- ext/rpi_gpio/rb_pwm.c
|
71
|
-
-
|
72
|
-
-
|
73
|
-
-
|
74
|
-
-
|
75
|
-
-
|
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
|
76
70
|
homepage: https://github.com/ClockVapor/rpi_gpio
|
77
71
|
licenses:
|
78
72
|
- MIT
|
73
|
+
metadata: {}
|
79
74
|
post_install_message:
|
80
75
|
rdoc_options: []
|
81
76
|
require_paths:
|
82
77
|
- lib
|
83
78
|
required_ruby_version: !ruby/object:Gem::Requirement
|
84
|
-
none: false
|
85
79
|
requirements:
|
86
|
-
- -
|
80
|
+
- - ">="
|
87
81
|
- !ruby/object:Gem::Version
|
88
82
|
version: '0'
|
89
83
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
90
|
-
none: false
|
91
84
|
requirements:
|
92
|
-
- -
|
85
|
+
- - ">="
|
93
86
|
- !ruby/object:Gem::Version
|
94
87
|
version: '0'
|
95
88
|
requirements: []
|
96
89
|
rubyforge_project:
|
97
|
-
rubygems_version:
|
90
|
+
rubygems_version: 2.2.2
|
98
91
|
signing_key:
|
99
|
-
specification_version:
|
92
|
+
specification_version: 4
|
100
93
|
summary: Ruby conversion of RPi.GPIO Python module
|
101
94
|
test_files: []
|
data/lib/rpi_gpio.so
DELETED
Binary file
|