A4988 Drivers
Vref set to ~90% of stepper rated current
Rs = 0.1ohm
X = 0,58v (0,725A)
Y = 0,58v (0,725A)
Z = 0,58v (0,725A)
This file contains hidden or 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
| #!/bin/bash | |
| # | |
| # sqlite3_backup.sh | |
| # Script for backing up and compress a sqlite3 database, using the .backup command | |
| # Intended for use with cron for regular automated backups | |
| # | |
| # @author @felubra https://github.com/felubra | |
| # based on the original sqlite3_backup.sh script by [email protected] | |
| # (https://gist.github.com/sdellis/3835123) |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains hidden or 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
| #!/bin/bash | |
| # | |
| # sqlite3_backup.sh | |
| # Script for backing up sqlite3 database with integrity checking | |
| # Intended for use with cron for regular automated backups | |
| # | |
| # @author <[email protected]> | |
| # |