Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

raspi, raspi-i2cモジュールへの依存を取り除きi2c-busモジュールを直接用いる #82

Merged
merged 7 commits into from
Oct 2, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
.DS_Store
.Thumbs.db
/_gc/**/node_modules/
/_gc/**/package-lock.json
/gc/**/package-lock.json
gc/i2c/i2c-arduino-steppingMotor/etc/
/gc/i2c/i2c-arduino-steppingMotor/etc/
/public/
10 changes: 4 additions & 6 deletions _gc/srv/package.json
Original file line number Diff line number Diff line change
@@ -1,13 +1,11 @@
{
"name": "srv",
"version": "0.2.0",
"version": "1.0.0",
"description": "server for Web GPIO/I2C API",
"main": "srv.js",
"dependencies": {
"gpio": "^0.2.7",
"raspi": "^5.0.1",
"raspi-i2c": "^6.0.0",
"date-utils": "^1.2.21",
"ws": "^3.1.0"
"gpio": "^0.2.10",
"i2c-bus": "^5.0.0",
"ws": "^7.1.2"
}
}
Loading