mruby-linux-i2c 0.9.2.rc1 → 1.0.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.
- checksums.yaml +4 -4
- data/README.md +9 -1
- data/lib/mruby/i2c/version.rb +1 -1
- metadata +7 -7
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 20cb60598240bc0e85ecb96a9c3cf3a708a30866328781721709803148155466
|
4
|
+
data.tar.gz: '059800a5448d182e594d8e08ecf475fdb454f00f9d3c8f2f85539a0cf047b58a'
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 0ac50ce69bb0bb34a5e239ef1b104477a22a767d30700e8f3ca021af609aef8a7acf215b1155ff9de0fce8d38e34cd0ae7010d4e1fbe3675fdeaa2c381a1665d
|
7
|
+
data.tar.gz: abcfea6d16bf89c80e1f61a7045ea43b3d917fb953806927850f3767684845610226e559e0606d82953543f464de9229edd88a7c3ffdf083034d4cf52022ea64
|
data/README.md
CHANGED
@@ -5,7 +5,9 @@
|
|
5
5
|
This is an implementation of the I2C class library for Linux.
|
6
6
|
Follows [mruby, mruby/c common I/O API guidelines.](https://github.com/mruby/microcontroller-peripheral-interface-guide)
|
7
7
|
|
8
|
-
This library uses the Linux i2cdev device driver.
|
8
|
+
This library uses the Linux i2cdev device driver.
|
9
|
+
Works well on 32-bit and 64-bit OS.
|
10
|
+
|
9
11
|
|
10
12
|
## Installation
|
11
13
|
|
@@ -18,6 +20,12 @@ This library uses the Linux i2cdev device driver.
|
|
18
20
|
* This library only supports master devices with 7-bit addresses.
|
19
21
|
|
20
22
|
|
23
|
+
## Operation check target
|
24
|
+
|
25
|
+
* [Raspberry Pi 4](https://www.raspberrypi.com/products/raspberry-pi-4-model-b/)
|
26
|
+
* [Armadillo-IoT G3](https://armadillo.atmark-techno.com/armadillo-iot-g3)
|
27
|
+
|
28
|
+
|
21
29
|
## Usage
|
22
30
|
|
23
31
|
about RaspberryPi...
|
data/lib/mruby/i2c/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: mruby-linux-i2c
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 1.0.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- HirohitoHigashi
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2023-
|
11
|
+
date: 2023-12-02 00:00:00.000000000 Z
|
12
12
|
dependencies: []
|
13
13
|
description:
|
14
14
|
email:
|
@@ -26,8 +26,8 @@ licenses:
|
|
26
26
|
- BSD 3-CLAUSE
|
27
27
|
metadata:
|
28
28
|
homepage_uri: https://github.com/HirohitoHigashi/mruby-mio/
|
29
|
-
source_code_uri: https://github.com/HirohitoHigashi/mruby-mio/tree/
|
30
|
-
documentation_uri: https://www.rubydoc.info/gems/mruby-linux-i2c/0.
|
29
|
+
source_code_uri: https://github.com/HirohitoHigashi/mruby-mio/tree/v1.0.0/mruby-linux-i2c
|
30
|
+
documentation_uri: https://www.rubydoc.info/gems/mruby-linux-i2c/1.0.0/
|
31
31
|
post_install_message:
|
32
32
|
rdoc_options: []
|
33
33
|
require_paths:
|
@@ -36,12 +36,12 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
36
36
|
requirements:
|
37
37
|
- - ">="
|
38
38
|
- !ruby/object:Gem::Version
|
39
|
-
version: 2.
|
39
|
+
version: 2.5.0
|
40
40
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
41
41
|
requirements:
|
42
|
-
- - "
|
42
|
+
- - ">="
|
43
43
|
- !ruby/object:Gem::Version
|
44
|
-
version:
|
44
|
+
version: '0'
|
45
45
|
requirements: []
|
46
46
|
rubygems_version: 3.4.13
|
47
47
|
signing_key:
|