Skip to main content
Advanced Search
Search Terms
Content Type

Exact Matches
Tag Searches
Date Options
Updated after
Updated before
Created after
Created before

Search Results

160 total results found

Understanding Arduino software

Physical Computing Workshop: Beginner Physical Computing

1. Download the software Go the the official site and ...dowaload the 1.8.XX version! The latest versio ...do). In this screencap, you see 14301, yours may not be the same, if ...ck Now at the bottom of the software, you will see you are using Arduino Leonar...

Making a Force Sensor/ a Button with Velostat & Conductive Fabric

Physical Computing Tutorials

...ieces of conductive fabrics and 1 piece of velostat. Make sure th ...5V) Ground (one end to GND with 10K resistor) Signal (GND side to ...println(sensorValue); delay (100); // change for the speed of ...println(buttonState); delay (100); // change for the speed of ...

Using Arduino Leonardo to send USB MIDI data

Physical Computing Tutorials

... void setup() { Serial.begin(115200); } void loop() { Serial ...city MidiUSB.flush(); delay(1500); // controlChange(0, 10, 65); // Set the value of cont ...roller 10 on channel 0 to 65 } void noteOn(byte channel, byte pitch, byte velocity) { ...

Using a Soil Moisture Sensor

Physical Computing Tutorials

... int limit = 300; //300-600 is a good range of moisture generally void setup() { Serial.begin(9600); pinMode(13, OUTPUT); } void loop() { s ...rValue < limit) { digitalWrite(13, HIGH); } else { digitalWr ...ite(13, LOW); } delay(100); }

What is Unreal Engine?

Unreal Engine Basics

...Unreal Engine is a powerful software that helps creators build vir ...es. Let's explore some of them: 1) Eye-catching Visuals: Unreal E ...ts. They can create interactive walkthroughs, realistic visualizations, and virtual tours of their designs, providing...

Projection Mapping in Touchdesigner

Projection Mapping Intro to Projection Mapping

... tutorial on how to get the software started is available here. Th ...ask your area of projection and warp your content onto it. Drag an ...your projector, this is usually 1. Change the “opening size” to FILL and hit UPDATE - this will make sure that your ...

What is a Raspberry Pi Pico?

Raspberry Pi

...the Raspberry Pi Foundation. It was announced in January 2021 and represents a departure from ... #create LED object from pin13,Set Pin13 to output while True: led.v ...alue(1) #Set led turn on time.sleep(0.5) #stay on for 0.5 s...

How to power the Raspberry Pi Pico

Raspberry Pi Tutorials

...e Raspberry Pi Pico The easiest way to power a Pico is through the ... input voltage can vary between 1.8V to 5.5V. This voltage is use ...n other words, it acts as a one-way valve for electric current. We ...e time and there is a risk of unwanted power flow between the two ...

Installing Unity

VR tutorials - Unity HTC VIVE Tutorials

...ake sure to follow the 4 steps: 1-Downloading and installing the ...re a few things you need to be aware of: Downloading and instal ...et a popup window asking if you want to open the Unity HUB, Select ...We recommend installing Unity 2019.4, alternatively, you can choo...

Steam VR setup Tutorial #1 - Player camera setup

VR tutorials - Unity HTC VIVE Tutorials

... Download and install Unity 2018.2.21f1. More recent versions might al ...so work, this tutorial was made using Unity 2018.2.21f1 Create a Unity personal ac ... when you start running the software. Download and install St ..." panel and change the scale to 10 on all three axes. Now th...

A circle following the mouse

Touchdesigner Basics of Touchdesigner

...'s Resolution by changing it to 1280x720.  Add a Transform TOP ...he new set of values between we want x to fluctuates. We have previously established that my circle x-axis extremities are between -0.5 and 0.5.  Therefore your Math CHOP should now look...

How to use IR Breakbeam Sensor

Physical Computing Tutorials

...frared; detects changes in long-wave IR (heat) in its field. ...ND Get Started #define LEDPIN 13 #define SENSORPIN 4 int sensorState = 0; int lastState = 0; void setup() { pinMode(LEDPIN, OUTPUT); pinMode(SENSORPIN, INPUT); ...

Introduction to Python

Python for Beginners

...an Rossum and first released in 1991, Python was designed to emphasize code rea ...cepts are relatively straightforward to grasp. Getting Started To ...ning Python is a valuable and rewarding endeavor. So, let's dive in and begin our exciting journey into...

What equipment is available?

About the Lab Frequently Asked Questions

...r loaned from the Kit room or WG14 during office hours in term ti ...ive VR Pro Headset Oculus Quest 1 Oculus Quest 2 Oculus Rift S ...face Devices including: Kinect 1 & 2 Leap Motion Wiimote Airbar ... Elo Touch 7" Screen Elo Touch 10" Screen DMX Devices includ...

How to connect a Light Dependent Resistor (LDR)

Physical Computing Tutorials

...und (0V) and 5V (VCC). Wiring (1)leg to 5V (Power) (2)leg split ...to GND via 10K resistor (2)leg split to A0 ...ad() to get a integer between 0-1023 representing the voltage, wh ...ere 0 is 0V and 1023 is 5V. The code below uses the serial port to out...

How to use a Hall Effect Sensor

Physical Computing Tutorials

... strength of the magnetic field being detected. Wiring left to 5V (Power) middle to GND right to PIN2 via 10K resistor Getting started T ...digitalRead() to get a integer (1/0) representing the detection o ...tln(hallSensorState); delay(100); }

DFRobot Sensor Testing: HX711 Weight Sensor, Voice Recorder Module Pro, Speech Synthesis Module V2

Physical Computing Tutorials

..., we have some tips for you. HX711 Weight Sensor This sensor can m ...easure weight up to 1kg, and is compatible with Ardui ... install the library DFRobot_HX711_I2C library which is available ... Arduino source file DFRobot_HX711_I2C.h will prompt an error in t...

How to use a Flat Vibration Switch

Physical Computing Tutorials

...ill act like a closed switch. When everything is still, the switch is open. Wiring one pin to GND & D2 via 10k resistor one pin to 5V Get ...ation switch const int ledPin = 13; // Built-in LED on most ...Write(ledPin, LOW); } delay(100); }