TMC2130 Steppers with Sensorless Homing for X/Y Axis
BLTouch
Dual Extruder
24v Power Supply (24v Fans, resolder hotbead)
ReDuplicator i3 MK3x - Wanhao i3 Complete Aluminium Extrusion & Prusa Mk3 Overhaul
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
[ | |
{ | |
"id": "bbd65f58de8fc93e", | |
"type": "group", | |
"z": "5501e19c.72a0c", | |
"name": "Coral USB", | |
"style": { | |
"label": true | |
}, | |
"nodes": [ |
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
# make sure that your dns has a cname set for organizr | |
server { | |
listen 443 ssl; | |
listen [::]:443 ssl; | |
server_name shinobi.*; | |
include /config/nginx/ssl.conf; |
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
#!/usr/bin/env bash | |
MAINTAINER="Dario Limongi" | |
VERSION=4.1.0 | |
# Adapted from https://www.pyimagesearch.com/2018/09/26/install-opencv-4-on-your-raspberry-pi/ | |
sudo apt update && sudo apt upgrade -y | |
sudo apt-get install -y \ | |
build-essential ccache cmake unzip pkg-config curl \ | |
libjpeg-dev libpng-dev libtiff-dev \ |
Also applies to the NZXT Smart Device
Hue+ accessories use WS2812B integrated LED and controllers. Pinout is:
- +5V (marked with arrow; corresponding wire with white stripe)
- IN (data in)
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
#!/usr/bin/env bash | |
# Config | |
MAINTAINER="Jed Frey" | |
VERSION=3.2.0 | |
# Adapted from http://www.pyimagesearch.com/2016/10/24/ubuntu-16-04-how-to-install-opencv/ | |
apt-get install --yes libjpeg-dev libtiff5-dev libjasper-dev libpng12-dev libavcodec-dev libavformat-dev \ | |
libswscale-dev libxvidcore-dev libx264-dev libv4l-dev liblapacke-dev libgtk-3-dev \ | |
libopenblas-dev libhdf5-dev libtesseract-dev libleptonica-dev \ |
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
chip "nct6793-isa-0290" | |
label in0 "CPUVCORE" | |
compute in0 @*2, @/2 | |
label in1 "VIN0" | |
label in2 "AVCC" | |
label in3 "3VCC" | |
label in4 "VIN1" | |
label in5 "VIN2" | |
label in6 "VIN3" | |
label in7 "3VSB" |
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
#!/bin/bash | |
# This command line works well enough to encode videos for my Sylvania SDVD9020B | |
# portable DVD players. There are still mysterious issues with aspect ratio, but | |
# this method is the best compromise I've found so far in about two hours of | |
# digging and experimentation. | |
# Observations: | |
# setting an aspect ratio of 16:9 seems to work for 2.35:1 | |
# video. Not sure why. |