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

165 total results found

Using a Membrane Potentiometer (SoftPot)

Physical Computing Tutorials

...? A Membrane Potentiometer is a type of position sensor that measure ...ter which pin to 5V or GND. Pin1 (the one on the side of the thi ...V Pin2 (middle pin) to A0 & via 10k resistor to GND Pin3 (the one ...ntln(softPotPosition); delay(100); }

Adding content - Music and Audio

Spark AR other Content and Tutorials

There are multiple ways in which you can use audio in ...es to M4A using open source software like Audacity. A tutorial for ... Computer. Select the file you want to open and click Open. Your audio clip will be in the Audio folder of the Assets pane. Note....

Command Line Tools & Utilities

Creative Coding Tutorials

A Command Line Interface is a way of interacting with a computer ...h your operating system and hardware to perform complex and intens ...useful Free and Open Source Software (FOSS) available online that ...Interface (GUI). Often this software works more efficiently with t...

How to use a Bone Conductor Transducer

Physical Computing Tutorials

...onduction? Bone conduction is a way of transmitting sound to the i ...rdrum. In normal hearing, sound waves travel through the air, vibrate the eardrum, and are then passed to the inner ear. With bone conduction, vibrations are sent directly through the sk...

How to install libraries

Physical Computing Tutorials

...brary There are three different ways to install libraries; we'll s ...es are currently available this way, as this feature is relatively ...f the library – for example 'MPR1211'. Copy this entire folder (name ...d 'MPR121' in our example) into the Ard...

Using a Force Sensor

Physical Computing Tutorials

...5V) Ground (one end to GND with 10K resistor) Signal (GND side to ...alue; //sensor value range: 0-1023 //200 is light touch //500 ...{ Serial.begin(9600); pinMode(13, OUTPUT); } void loop() { s ...rValue > limit) { digitalWrite(13, HIGH); } else { digitalWr...

Creative Coding 101

Creative Coding Other workshops

The slides for Introduction to Creative Coding are attached as a file on the left of this page!

How to fix "Internal data stream error" in Processing 4

Creative Coding Tutorials

...n, please see here. How to fix (12/2024) Change this line cam = new Capture(this, cameras[0]); to "pipeline:avfvideosrc device-index=0" Full Code import processing.video.*; Capture cam; void setup() { size(640, 480); String[] cameras = Capture.list(...

Understanding Arduino hardware

Physical Computing Workshop: Beginner Physical Computing

In the kit, you will find an Arduino and two USB cables (USBC or USBA, pick the one that fits your computer). 1. Micro USB Port Connect the Ard ...utput pins. For example, if you want to create a breathing light e ...part, Understanding Arduino software.

Course

Using the MAX9814 mic amplifier

Physical Computing Tutorials

This Adafruit MAX9814 microphone amplifier allows yo ...oid setup() { Serial.begin(115200); // Initialize serial comm ...board. Make sure this is set to 115200 baud. To utilise this da ...olume is above this threshold a warning comes up in the Serial Mon...

How to use a Reed Switch

Physical Computing Tutorials

...ed Switch? The Reed Switch is a type of magnetic switch that changes ...reed switch const int LED_PIN = 13; // LED pin - active-high void setup() { Serial.begin(9600); // Since the other end of the reed switch is connected to ground, we need // to ...

How to Configure a Raspberry Pi for the first time

Raspberry Pi Raspberry Pi Image

... on your Pi for the first time. 1. Power up the Raspberry Pi When ...start menu. 6. Recommended Software Raspberry Pi comes with many ... can start using them straight away, such as Thonny. You can go to ... - Preference - Recommended Software, explore the list and downloa...

How to create 360 Video for the Igloo system

How to create 360 video for the Igloo s...

...ferent when using different hardware. Step 1 Set up your 360 camera at your ...ecord in atleast 4K 30FPS but always choose higher if possible. Pr ... footage into a proprietary software for processing. In this case ..., the Insta360 software will be used to convert the f...

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...