Skip to content

Instantly share code, notes, and snippets.

View Iqwertz's full-sized avatar
💻
Working on little Projects

Iqwertz

💻
Working on little Projects
View GitHub Profile
@p123ad
p123ad / README.md
Last active August 2, 2024 12:42
Use Raspberry Pi Camera with Prusa Connect

Use Raspberry Pi and Pi Cam for Prusa Connect

Made this for my PRUSA MINI with a Raspberry Pi Zero 2W and a Raspi Cam v1.3

Based on the great instructions from Nunos and Joltcans

3

Instructions

@liabru
liabru / read-local-file.js
Created April 24, 2014 17:42
Trigger a file open dialog and read local file in JavaScript
/*
* Trigger a file open dialog and read local file, then read and log the file contents
*/
var element = document.createElement('div');
element.innerHTML = '<input type="file">';
var fileInput = element.firstChild;
fileInput.addEventListener('change', function() {
var file = fileInput.files[0];