Skip to content
Draft
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
7 changes: 6 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
./__pycache__/
./__pycache__
# Auto-added by Marisol pipeline
node_modules/
*.pyc
.pytest_cache/
Expand All @@ -12,3 +11,9 @@ debug_*.py
dist/
build/
*.egg-info/

# Auto-added by Marisol pipeline
.pio/
.gradle/
*.class
local.properties
31 changes: 17 additions & 14 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,42 +11,45 @@ Made an enclosure to host the [HQ Raspberry Pi Camera](https://www.raspberrypi.o

The design includes a few modular camera grips for users. Feel free to make your own designs and reach out to me so I can include them!

For More Info:
## More Info

- [Hackster](https://www.hackster.io/projects/2a86c3)
- [GitHub](https://github.com/NickEngmann/piDSLM)
- [Instructables] ( TBD )
- [Instructables](TBD)

Designed using
- [OnShape](https://bit.ly/raspi-onshape)
## Design Tools

If you found this useful, please donate what you think it is worth to my [paypal.me](https://paypal.me/nickengman). Help cover the time of design.
Designed using [OnShape](https://bit.ly/raspi-onshape)

## Support

If you found this useful, please donate what you think it is worth to my [PayPal](https://paypal.me/nickengman) to help cover design time.

Thanks, Enjoy!

# Installation

For the codebase, I built the piDSLM codebase off of a forked a copy of fellow DIYer Martin Manders [MerlinPi project](https://github.com/MisterEmm/MerlinPi). The piDSLM codebase is still in its infancy but it allows the user to take photos/videos, and view them in a gallery. It also allows users to bulk upload the footage to Dropbox. To begin ssh into the Raspberry Pi and run the following command:
For the codebase, I built the piDSLM codebase off of a forked a copy of fellow DIYer Martin Manders [MerlinPi project](https://github.com/MisterEmm/MerlinPi). The piDSLM codebase is still in its infancy but it allows the user to take photos/videos, and view them in a gallery. It also allows users to bulk upload the footage to Dropbox.

```
To begin, SSH into the Raspberry Pi and run the following command:

```bash
git clone https://github.com/NickEngmann/pidslm.git
cd pidslm
```

You're then going to retrieve a Dropbox Access token to enable to Dropbox footage upload feature. To do this go ahead and [go to the Application Developer page on Dropbox](https://www.dropbox.com/developers/apps). Create an application and click the Generate Access Token button to generate your access token.
You're then going to retrieve a Dropbox Access token to enable the Dropbox footage upload feature. To do this, go ahead and [go to the Application Developer page on Dropbox](https://www.dropbox.com/developers/apps). Create an application and click the "Generate Access Token" button to generate your access token.

Then replace the dummy access token in Dropbox_upload.py with your new access token.
Then replace the dummy access token in `dropbox_upload.py` with your new access token:

```

# OAuth2 access token. TODO: login etc.
```python
# OAuth2 access token
TOKEN = 'YOUR_ACCESS_TOKEN'
```

Finally, run the INSTALL.sh script using the following command
Finally, run the INSTALL.sh script:

```
```bash
sudo ./INSTALL.sh
```

Expand Down