Close

17838 Results for "raspberry pi"

  • World's Smallest iMac!

  • In this build, I design and 3D print a miniature iMac. I begin by gently modifying/cutting a Raspberry Pi 4 with my Dremel to fit inside my ultra slim iMac case. (Because after all, who needs extra ports on a Mac, right?) I then paint, prime, and assemble...
  • One More Thing

  • As one last finishing touch I added a virtual keyboard to the TMD-2 application with thanks to Anthony Maro and William B Phelps for their PyGame virtualKeyboard module.This mitigates the need for a keyboard and mouse if you are using a touch screen...
  • Install machinechat

  • Raspberry PI: wget https://cdn.hackaday.io/files/1750857490836640/R1_9_2_mcjedi_armv7rp_R1_9_2.zip unzip R1_9_2_mcjedi_armv7rp_R1_9_2.zip Linux x86: wget https://cdn.hackaday.io/files/1750857490836640/R1_9_2_mcjedi_lin_R1_9_2.zip unzip R1_9_2_mcjedi_lin_R1_9_2.zip...
  • Another Cyberdeck

  • Just Another Cyberdeck This cyberdeck is meant to be simple to print and easy to assemble.  The parts will all be printed on a Ender 3.   Since the Ender 3 has a minimally sized build plate parts will be printed in multiple sections...
  • Software

  • DependenciesI start with making preperations in the raspberry PI.All programming in this project is made in Python programming language.Library Servo.IO is used to control the driverboard.CV2 library is installed and used by my program to detect...
  • Footswitch Communication

  • While MIDI was the initial plan to control the two Raspberry Pis in this setup, I have decided to change.Some research into Reaper and also the MODEP software running on the Pis both support OSC input, which allows for control similar to midi, just over...
  • Building an OpenCV Project In C++

  • 1. Install CMake on the Raspberry Pi sudo apt-get -y install cmake 2. Save the following under CMakeLists.txt (within the same directory as the project) cmake_minimum_required(VERSION 2.8) project( Project ) find_package( OpenCV REQUIRED ) include_directories(...