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
#!/data/data/com.termux/files/usr/bin/bash | |
# Ensure storage and camera permissions | |
termux-setup-storage | |
termux-toast "Grant camera/storage permissions in Termux:API app if prompted" | |
# Install dependencies | |
pkg install ncat termux-api -y | |
# Camera ID (set based on termux-camera-info output) |
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
https://www.quaddicted.com/files/tools/ |
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
https://www.instructables.com/id/Arduino-Mini-CNC-Plotter-Machine-from-dvd-drives/ | |
https://www.instructables.com/id/How-to-Make-GRBL-CNC-V3-Shield-Based-Mini-CNC-Mach-1/ | |
http://electricdiylab.com/enable-z-axis-servo-functionality-for-grbl-mi-inkscape-extension/ | |
http://www.mediafire.com/file/9x1m60w1x6tdhaw/MI+Inkscape+Extension.zip | |
https://ncviewer.com/ | |
3D Printer: | |
http://ramps3dprinter.blogspot.com/2013/08/connections-of-ramps-14.html | |
https://www.hta3d.com/image/catalog/Impresoras/P3Steel/Esquemas/RAMPS%201.4%20EN-sinsensor-alt.jpg |
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
$.fn.isOnScreen = function(){ | |
var element = this.get(0); | |
var bounds = element.getBoundingClientRect(); | |
return bounds.top < window.innerHeight && bounds.bottom > 0; | |
} |