forked from CoretechR/ZeroBot
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added package.json to simplify the npm install steps.
Using GPIO23 as an enable for the motor driver module
- Loading branch information
1 parent
11c8162
commit 55c4684
Showing
3 changed files
with
42 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
# ZeroBot Custom | ||
Leveraging the ZeroBot - Raspberry Pi Zero FPV Robot project: https://hackaday.io/project/25092-zerobot-raspberry-pi-zero-fpv-robot | ||
|
||
Modifications | ||
* Added a package.json to incorporate the package dependencies | ||
* Using Raspberry Pi's GPIO 23 as an enable pin for the motor driver module |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
{ | ||
"name": "zerobot-custom", | ||
"description": "Based on the 'Raspberry Pi Zero FPV Robot' hackaday project", | ||
"version": "1.0.1", | ||
"homepage": "https://github.com/jasonrock21/ZeroBot.git", | ||
"license": "GPL-3.0", | ||
"main":"app.js", | ||
"repository": { | ||
"type": "git", | ||
"url": "https://github.com/jasonrock21/ZeroBot.git" | ||
}, | ||
"scripts": { | ||
"start": "sudo node app.js" | ||
}, | ||
"dependencies": { | ||
"express": "^4.16.2", | ||
"socket.io": "^2.0.4", | ||
"pigpio": "^0.7.0" | ||
} | ||
} |