denko-piboard 0.13.2 → 0.14.0

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.
Files changed (54) hide show
  1. checksums.yaml +4 -4
  2. data/LICENSE +1 -1
  3. data/README.md +154 -132
  4. data/Rakefile +0 -5
  5. data/board_maps/README.md +59 -0
  6. data/board_maps/orange_pi_zero_2w.yml +85 -0
  7. data/board_maps/radxa_zero3.yml +88 -0
  8. data/board_maps/raspberry_pi.yml +95 -0
  9. data/denko_piboard.gemspec +6 -7
  10. data/examples/digital_io/bench_out.rb +22 -0
  11. data/examples/digital_io/rotary_encoder.rb +31 -0
  12. data/examples/display/ssd1306.rb +43 -0
  13. data/examples/i2c/bitbang_aht10.rb +18 -0
  14. data/examples/i2c/bitbang_search.rb +24 -0
  15. data/examples/i2c/bitbang_ssd1306_bench.rb +29 -0
  16. data/examples/i2c/search.rb +24 -0
  17. data/examples/led/blink.rb +10 -0
  18. data/examples/led/fade.rb +22 -0
  19. data/examples/led/ws2812_bounce.rb +36 -0
  20. data/examples/motor/servo.rb +16 -0
  21. data/examples/pi_system_monitor.rb +10 -8
  22. data/examples/pulse_io/buzzer.rb +34 -0
  23. data/examples/pulse_io/infrared.rb +25 -0
  24. data/examples/sensor/aht10.rb +17 -0
  25. data/examples/sensor/dht.rb +24 -0
  26. data/examples/sensor/ds18b20.rb +59 -0
  27. data/examples/sensor/hcsr04.rb +16 -0
  28. data/examples/sensor/neat_tph_readings.rb +32 -0
  29. data/examples/spi/bb_loopback.rb +31 -0
  30. data/examples/spi/loopback.rb +37 -0
  31. data/examples/spi/output_register.rb +38 -0
  32. data/lib/denko/piboard.rb +11 -2
  33. data/lib/denko/piboard_base.rb +18 -64
  34. data/lib/denko/piboard_core.rb +148 -130
  35. data/lib/denko/piboard_core_optimize_lookup.rb +31 -0
  36. data/lib/denko/piboard_hardware_pwm.rb +27 -0
  37. data/lib/denko/piboard_i2c.rb +59 -82
  38. data/lib/denko/piboard_i2c_bb.rb +48 -0
  39. data/lib/denko/piboard_infrared.rb +7 -44
  40. data/lib/denko/piboard_led_array.rb +9 -0
  41. data/lib/denko/piboard_map.rb +121 -38
  42. data/lib/denko/piboard_one_wire.rb +42 -0
  43. data/lib/denko/piboard_pulse.rb +11 -68
  44. data/lib/denko/piboard_servo.rb +8 -7
  45. data/lib/denko/piboard_spi.rb +44 -74
  46. data/lib/denko/piboard_spi_bb.rb +41 -0
  47. data/lib/denko/piboard_tone.rb +15 -26
  48. data/lib/denko/piboard_version.rb +1 -1
  49. data/scripts/99-denko.rules +9 -0
  50. data/scripts/set_permissions.rb +131 -0
  51. metadata +45 -17
  52. data/ext/gpiod/extconf.rb +0 -9
  53. data/ext/gpiod/gpiod.c +0 -179
  54. data/lib/gpiod.rb +0 -6
data/ext/gpiod/gpiod.c DELETED
@@ -1,179 +0,0 @@
1
- #include <ruby.h>
2
- #include <gpiod.h>
3
-
4
- #define GPIO_CHIP_NAME "gpiochip0"
5
-
6
- static struct gpiod_chip *chip;
7
-
8
- // Save mapping of lowest 32 GPIOs to gpiod_line structs.
9
- static struct gpiod_line *lines[32] = { NULL };
10
-
11
- // Input and output values.
12
- static int gpio_number;
13
- static int gpio_value;
14
- static int return_value;
15
-
16
- static VALUE open_chip(VALUE self) {
17
- chip = gpiod_chip_open_by_name(GPIO_CHIP_NAME);
18
- if (!chip) {
19
- rb_raise(rb_eRuntimeError, "libgpiod error: Could not open GPIO chip");
20
- return Qnil;
21
- }
22
- return Qnil;
23
- }
24
-
25
- static VALUE close_chip(VALUE self) {
26
- gpiod_chip_close(chip);
27
- return Qnil;
28
- }
29
-
30
- static void validate_gpio_number(int gpio_number) {
31
- if ((gpio_number < 0) || (gpio_number > 31)) {
32
- VALUE error_message = rb_sprintf("libgpiod error: GPIO line (%d) out of range. Valid range is 0..31", gpio_number);
33
- rb_raise(rb_eRuntimeError, "%s", StringValueCStr(error_message));
34
- }
35
- }
36
-
37
- static void validate_gpio_value(int value) {
38
- if (!((value == 0) || (value == 1))) {
39
- VALUE error_message = rb_sprintf("libgpiod error: GPIO value (%d) out of range. Valid values are 0 or 1", value);
40
- rb_raise(rb_eRuntimeError, "%s", StringValueCStr(error_message));
41
- }
42
- }
43
-
44
- static VALUE open_line_output(VALUE self, VALUE gpio) {
45
- gpio_number = NUM2INT(gpio);
46
- validate_gpio_number(gpio_number);
47
-
48
- lines[gpio_number] = gpiod_chip_get_line(chip, gpio_number);
49
- if (!lines[gpio_number]) {
50
- gpiod_chip_close(chip);
51
- VALUE error_message = rb_sprintf("libgpiod error: Could not get GPIO line %d", gpio_number);
52
- rb_raise(rb_eRuntimeError, "%s", StringValueCStr(error_message));
53
- return Qnil;
54
- }
55
-
56
- return_value = gpiod_line_request_output(lines[gpio_number], "GPIOD_RB", 0);
57
- if (return_value < 0) {
58
- gpiod_chip_close(chip);
59
- VALUE error_message = rb_sprintf("libgpiod error: Could not request output for GPIO line %d", gpio_number);
60
- rb_raise(rb_eRuntimeError, "%s", StringValueCStr(error_message));
61
- return Qnil;
62
- }
63
-
64
- return Qnil;
65
- }
66
-
67
- static VALUE set_value(VALUE self, VALUE gpio, VALUE value) {
68
- gpio_number = NUM2INT(gpio);
69
- validate_gpio_number(gpio_number);
70
- gpio_value = NUM2INT(value);
71
- validate_gpio_value(gpio_value);
72
-
73
- return_value = gpiod_line_set_value(lines[gpio_number], gpio_value);
74
-
75
- if (return_value < 0) {
76
- gpiod_chip_close(chip);
77
- VALUE error_message = rb_sprintf("libgpiod error: Could not set value %d on GPIO line %d", gpio_value, gpio_number);
78
- rb_raise(rb_eRuntimeError, "%s", StringValueCStr(error_message));
79
- return Qnil;
80
- }
81
-
82
- return value;
83
- }
84
-
85
- static VALUE open_line_input(VALUE self, VALUE gpio) {
86
- gpio_number = NUM2INT(gpio);
87
- validate_gpio_number(gpio_number);
88
-
89
- lines[gpio_number] = gpiod_chip_get_line(chip, gpio_number);
90
- if (!lines[gpio_number]) {
91
- gpiod_chip_close(chip);
92
- VALUE error_message = rb_sprintf("libgpiod error: Could not get GPIO line %d", gpio_number);
93
- rb_raise(rb_eRuntimeError, "%s", StringValueCStr(error_message));
94
- return Qnil;
95
- }
96
-
97
- return_value = gpiod_line_request_input(lines[gpio_number], "GPIOD_RB");
98
- if (return_value < 0) {
99
- gpiod_chip_close(chip);
100
- VALUE error_message = rb_sprintf("libgpiod error: Could not request input for GPIO line %d", gpio_number);
101
- rb_raise(rb_eRuntimeError, "%s", StringValueCStr(error_message));
102
- return Qnil;
103
- }
104
-
105
- return Qnil;
106
- }
107
-
108
- static VALUE get_value(VALUE self, VALUE gpio) {
109
- gpio_number = NUM2INT(gpio);
110
- validate_gpio_number(gpio_number);
111
-
112
- return_value = gpiod_line_get_value(lines[gpio_number]);
113
-
114
- if (return_value < 0) {
115
- gpiod_chip_close(chip);
116
- VALUE error_message = rb_sprintf("libgpiod error: Could not get value from GPIO line %d", gpio_number);
117
- rb_raise(rb_eRuntimeError, "%s", StringValueCStr(error_message));
118
- return Qnil;
119
- }
120
-
121
- return INT2NUM(return_value);
122
- }
123
-
124
- static VALUE close_line(VALUE self, VALUE gpio) {
125
- gpio_number = NUM2INT(gpio);
126
- validate_gpio_number(gpio_number);
127
-
128
- // Only try to close the line if it was opened before.
129
- if (lines[gpio_number] == NULL) return Qnil;
130
-
131
- gpiod_line_release(lines[gpio_number]);
132
- lines[gpio_number] = NULL;
133
- return Qnil;
134
- }
135
-
136
- static VALUE set_value_raw(VALUE self, VALUE gpio, VALUE value) {
137
- gpio_number = NUM2INT(gpio);
138
- gpio_value = NUM2INT(value);
139
-
140
- return_value = gpiod_line_set_value(lines[gpio_number], gpio_value);
141
-
142
- if (return_value < 0) {
143
- gpiod_chip_close(chip);
144
- VALUE error_message = rb_sprintf("libgpiod error: Could not set value %d on GPIO line %d", gpio_value, gpio_number);
145
- rb_raise(rb_eRuntimeError, "%s", StringValueCStr(error_message));
146
- return Qnil;
147
- }
148
- return value;
149
- }
150
-
151
- static VALUE get_value_raw(VALUE self, VALUE gpio) {
152
- gpio_number = NUM2INT(gpio);
153
-
154
- return_value = gpiod_line_get_value(lines[gpio_number]);
155
-
156
- if (return_value < 0) {
157
- gpiod_chip_close(chip);
158
- VALUE error_message = rb_sprintf("libgpiod error: Could not get value from GPIO line %d", gpio_number);
159
- rb_raise(rb_eRuntimeError, "%s", StringValueCStr(error_message));
160
- return Qnil;
161
- }
162
- return INT2NUM(return_value);
163
- }
164
-
165
- void Init_gpiod(void) {
166
- VALUE mDenko = rb_define_module("Denko");
167
- VALUE mGPIOD = rb_define_module_under(mDenko, "GPIOD");
168
- rb_define_singleton_method(mGPIOD, "open_chip", open_chip, 0);
169
- rb_define_singleton_method(mGPIOD, "close_chip", close_chip, 0);
170
- rb_define_singleton_method(mGPIOD, "open_line_output", open_line_output, 1);
171
- rb_define_singleton_method(mGPIOD, "set_value", set_value, 2);
172
- rb_define_singleton_method(mGPIOD, "open_line_input", open_line_input, 1);
173
- rb_define_singleton_method(mGPIOD, "get_value", get_value, 1);
174
- rb_define_singleton_method(mGPIOD, "close_line", close_line, 1);
175
-
176
- // These do no validation.
177
- rb_define_singleton_method(mGPIOD, "set_value_raw", set_value_raw, 2);
178
- rb_define_singleton_method(mGPIOD, "get_value_raw", get_value_raw, 1);
179
- }
data/lib/gpiod.rb DELETED
@@ -1,6 +0,0 @@
1
- require_relative 'gpiod/gpiod'
2
-
3
- module Denko
4
- module GPIOD
5
- end
6
- end