Advanced Search
Search Results
90 total results found
AR with Unity - Step #2 - Unity project setup
... settings section. This will install the Vuforia package, once the process finishes, you will be able to find and access the Vuforia objects collection through the GameObject menu. Adding Vuforia objects to your project With the Vuforia plug-in enab...
Workshop exercise: Clone, commit, pull, push
.../LCCUnityGitWorkshop/commits/master Additional resources: Tutorials and cheat sheets from Github: https://try.github.io/ Download and install git for your laptop or home PC: Git downloads page GUI applications for git: Fork Github Desktop
How to send files to Raspberry Pi using SSH
...les (using scp, rsync, or SFTP) Install software, run Python scripts, update your system Control a headless Raspberry Pi (one without monitor/keyboard) Enable SSH on Raspberry Pi Option 1: Using Raspberry Pi OS with Desktop Go to Preferences → Raspberry ...
How to send data to p5.js from Arduino
...h the sketch. First we have to install the P5.js WebSerial Library. You have to place the below script in the index.html file, inside the <head>. <script src="https://unpkg.com/p5-webserial@0.1.1/build/p5.webserial.js"></script> It should look like this....
Touch sensor - with No Sensor!
...e. We have a tutorial on how to install a library here. ADCTouch Library This library makes use of the AVR internal wiring to get decent resolution with just a single pin. Wiring Wiring is super simple with 1 wire: jumper wire to A0, another end with a pi...
Introduction to Python
...environment. We'll cover how to install Python on different operating systems and introduce you to the PyCharm Integrated Development Environment (IDE), which will make your coding experience smoother and more efficient. Whether your goal is to use Python ...
How to Program an ATtiny85 with an Arduino Uno
...anager, search for ATtiny, then install! Get Started Before uploading the code, we have to change some settings. Tools -> Board scroll to the bottom select ATtiny25/45/85 Tools -> Processor--> 8 MHz (internal) Tools-->Programmer-->Arduino as ISP Check th...
How to make Animation on NeoMatrix with Processing
... We have a tutorial on how to install a library here. Understand your Matrix When programming the matrix, it is important to know the configuration of your matrix so that the x and y coordinates sent from Processing can be matched. The most important two...
How to image a Raspberry Pi
...Raspberry Pi Imager software to Install the Raspberry Pi OS to the SD card. Raspberry Pi Device, select Raspberry Pi Model Operation System, select Raspberry Pi OS, if you are not sure which to choose, choose the recommended one. Storage, select...
Raspberry Pi Image: Retropie for Reviving Vintage Games
...ts on top of a full OS, you can install it on an existing Raspbian, or start with the RetroPie image and add additional software later. It's up to you. We are using Raspberry Pi Imager. We have a more detailed tutorial for imaging the Pi. 1. Using Raspberr...
Using Smartphont to Read NFC tag
...y, we have a tutorial on how to install a library here. Types of Tag In this tutorial, we are using NTAG203, NTAG215 or NTAG216 should work fine as well. You cannot use MIFARE Classic tag or card. Code for Writing Data #include <Wire.h> #include <Adafruit_...
Introduction
...kshop, you will learn: Understanding Arduino hardware Understanding Arduino software Using built-in example code and Reading the hookup diagram Installing libraries Using Neopixel Using Ultrasonic distance sensor Combining codes & circuits
How to use a Rotary Encoder Button
...d. We have a tutorial on how to install a library here. Getting started #include <EncoderStepCounter.h> const int pin1 = 2; const int pin2 = 3; // Create encoder instance: EncoderStepCounter encoder(pin1, pin2); // encoder previous position: int oldP...
Using a HC-SR04 distance sensor
...c. We have a tutorial on how to install a library here. This example turns on an LED when the distance measured is less than 30cm and back off when the distance goes over 30cm. #include <HCSR04.h> // Initialize sensor that uses digital pins 13 and 12. Ult...
How to use a Servo Motor
...d. We have a tutorial on how to install a library here. Getting started - Regular Servo This code is getting the eight servo motors to rotate to 0 degrees and then 90 degrees, one by one. #include "PCA9685.h" #include <Wire.h> ServoDriver servo; void set...
An Introduction to 2D in Unity 5
...and also with C#. Preparation Install Unity You will need to have Un ...ity downloaded and installed. If you don't already then visit this link and follow the instructions: https://unity3d.com/get-unity/download Resources The difference between 2D &...
Radio Communication: How to use RFM69HCW Radio Data Module
...e. We have a tutorial on how to install a library here. Getting started Sending #include <SPI.h> #include <RH_RF69.h> /************ Radio Setup ***************/ // Change to 434.0 or other frequency, must match RX's freq! #define RF69_FREQ 434.0 #define ...
Using the Bantam Tools NextDraw Pen Plotter
...e necessary software is already installed on the machine in CTH, so just log in using your UAL credentials and have your SVG file ready before proceeding. Your drawing could have been created in Photoshop or Illustrator, or if you're using TouchDesigner, f...
Using MatrixPortal M4 for animation
...rsion of CircuitPython you have installed and use updated and compatibl ...ation. We will need to use a bitmap spitesheet. If you just want to ...he CIRCUITPY drive. Copy the bitmap file you have created into the ...cuitPython 7+ compatible bitmap = displayio.OnDiskBitmap(filena...
Using an MFRC522 RFID reader
...e this tutorial to learn how to install libraries. Getting started We will be using the example code, DumpInfo, from the library to read an RFID Tag. #include <SPI.h> #include <MFRC522.h> #define RST_PIN 9 // Configurable, see typical pin...