How to switch over from SD-card to USB-attached device (USB thumbstick, USB enclosed SSD or HDD, etc.) to have more durable storage option.
-
Connect USB device to your RPI
-
Make sure USB device visible by the system
### WARNING: READ CAREFULLY BEFORE ATTEMPTING ### | |
# | |
# Officially, this is not recommended. YMMV | |
# https://www.raspberrypi.com/news/bookworm-the-new-version-of-raspberry-pi-os/ | |
# | |
# This mostly works if you are on 64bit. You are on your own if you are on 32bit or mixed 64/32bit | |
# | |
# Credit to anfractuosity and fgimenezm for figuring out additional details for kernels | |
# |
# Set Material-specific Nevermore Speed | |
# | |
# Add this immediately after your start_print line of the start gcode in Prusa/SuperSlicer: | |
# SET_NEVERMORE MATERIAL='{filament_type[initial_extruder]}' | |
# | |
# Add this immediately after your start_print line of the start gcode in Cura: | |
# SET_NEVERMORE MATERIAL='{material_type}' | |
# | |
[gcode_macro SET_NEVERMORE] | |
gcode: |
- type: custom:apexcharts-card | |
graph_span: 1d | |
header: | |
show: true | |
title: Electriciteitsprijzen Vandaag (€/kwh) | |
span: | |
start: day | |
now: | |
show: true | |
label: Now |
#!/bin/bash | |
# This bash script outputs the status of your Pi and checks whether you are being throttled for undervoltage and gives you your temperature | |
# Article and discussion at https://jamesachambers.com/measure-raspberry-pi-undervoltage-true-clock-speeds/ | |
# Author James A Chambers 6-6-17 | |
# Output current configuration | |
vcgencmd get_config int | egrep "(arm|core|gpu|sdram)_freq|over_volt" | |
# Measure clock speeds | |
for src in arm core h264 isp v3d; do echo -e "$src:\t$(vcgencmd measure_clock $src)"; done |
# Copyright public licence and also I don't care. | |
# 2020 Josh "NeverCast" Lloyd. | |
from micropython import const | |
from esp32 import RMT | |
# The peripheral clock is 80MHz or 12.5 nanoseconds per clock. | |
# The smallest precision of timing requried for neopixels is | |
# 0.35us, but I've decided to go with 0.05 microseconds or | |
# 50 nanoseconds. 50 nanoseconds = 12.5 * 4 clocks. | |
# By dividing the 80MHz clock by 4 we get a clock every 50 nanoseconds. |
I use multiple devices to control my 3D printer and it's alwys a hassle to move changes on profiles etc. between those machines leading to situations where I use an old version of my profiles to print a part because I just forgot to update it.
Here is how you can sync Cura settings between multiple devices:
cura
to any convinient location inside your Google Drive / OneDrive / Dropbox folder. You can also rename the folder form cura
to somthing else, I called mine Cura Settings
.%userprofile%\AppData\Roaming\cura
// Display - https://pmdway.com/collections/oled-displays/products/0-49-64-x-32-white-graphic-oled-i2c | |
// Guide - https://pmdway.com/blogs/product-guides-for-arduino/tutorial-using-the-0-49-64-x-32-graphic-i2c-oled-display-with-arduino | |
// TCA9548A - https://pmdway.com/blogs/product-guides-for-arduino/using-the-tca9548a-1-to-8-i2c-multiplexer-breakout-with-arduino | |
#include <Arduino.h> | |
#include <U8g2lib.h> | |
#include <Wire.h> | |
void TCA9548A(uint8_t bus) | |
{ |
//#define CALIBRATE | |
//#define GRID // After Calibration this mode should plot a pretty good dot grid on the screen | |
// See additional calibration comments in the code down by the "#ifdef CALIBRATE" | |
// Adjust these values for servo arms in position for state 1 _| | |
const double SERVO_LEFT_ZERO = 1600; | |
const double SERVO_RIGHT_SCALE = 690; // + makes rotate further left | |
// Adjust these values for servo arms in position for state 2 |_ | |
const double SERVO_RIGHT_ZERO = 650; |
async () => { | |
const response = await fetch('large.bin'); | |
const buffer = await response.arrayBuffer(); | |
}; |