Advanced Search
Search Results
183 total results found
Adding content - Music and Audio
There are multiple ways in which you can use audio in your AR project through Spa ...An introduction to the use of audio in Spark AR can be found here. ... Adding an Audio file It is important to note ... file format. You can convert audio files to M4A using open source...
Using a Whadda Vibration Motor Module
...as a transistor, capacitor, and diode—into a single module along w ...ly control the motor without needing to worry about the electronic ... setup. Wiring G to GND V to 5V S ...tor is connected to pin 3 void setup() { pinMode(motorPin, OUTPU...
Audio in Touchdesigner & Receiving data from Arduino
...nd practices for working with audio in Touchdesigner, as well as p ...ntinue experimenting with. Audio-Reactive Graphics In this fir ...st session we'll set up a network to extract numeric ...al data from an audio sample. The data is later used...
How to send data to Processing from Arduino
...munication is the process of sending data one bit at a time, seque ...fine potPin A0 int value; void setup() { Serial.begin(9600); //i ...a from arduino if needed void setup() { size(800, 800); pr ...arameters //map(theVariableYouWantToMap, min.ValueOfRawData, max...
Importing and Placing 3D Models
...sumes you have a basic understanding of 3D work but no prior exper ...e. They can also be called 3D Assets. You can either create your ow ...s. We will use a model of a building that can be downloaded from h ...ere: UE Workshop Assets After downloading the Building...
How to use a Bone Conductor Transducer
...onduction? Bone conduction is a way of transmitting sound to the i ...rdrum. In normal hearing, sound waves travel through the air, vibr ...conduction, vibrations are sent directly through the skull bones t ...speaker. It can work on several different surfaces, including Acry...
Using a Vibration Motor
...rial, we are using 2N2222. The diode acts as a surge protector ag ...lectric current to the motor windings, open and close. To make sur ...nsistor) 0.1µF capacitor 1N4001 diode 1KΩ resistor It is a quite ... tutorial, BUT, they may have a different pinout with 2N2222. Chec...
Projection Mapping in Touchdesigner
... tutorial on how to get the software started is available here. Th ... the interface to access the OP dialog, this is a "library" of all ...in Touchdesigner. Operators are divided into families, in this tut ...to your laptop and that this is set up as an extended monitor: foll...
Introduction to Python
... first released in 1991, Python was designed to emphasize code rea ...cepts are relatively straightforward to grasp. Getting Started To ...get started, we'll need to set up your programming environment ... cover how to install Python on different operating systems and in...
Installing Mamba
...hink of libraries as ready-made sets of code created and maintained ...find that sometimes you'll have different projects that need different versions of the same lib ...nts come in handy. They let you set up separate "sandboxed" Python ...'re going to use a piece of software called Mamba to create and ma...
Physical Computing
...ents and micro-controllers including: Arduino, Particle Photon, Ra ... objects that respond to touch, distance, movement, temperature or ...ctronics bench in the lab has a set of equipment for soldering electronics, please email us for an induction.
Command Line Tools & Utilities
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...
Making Breathing Light with LEDs
...t is a LED? LED (Light Emitting Diode) is a semiconductor light so .... (turns somthing half on, e.g. dimmed light) analogWrite(255) m ... have to get analog output with digital means. In this tutorial, w ... Ground LED long pin (+) to PWM Digital pin (D3), via 220Ω resisto...
How to use a Flat Vibration Switch
...tch? This is a low-sensitivity, directional vibration-induced trig ...ED on most Arduino boards void setup() { Serial.begin(9600); } ... void loop() { int state = digitalRead(vibrationPin); if (s ...tate == HIGH) { digitalWrite(ledPin, HIGH); Se...
Installing Unity
...to follow the 4 steps: 1-Downloading and installing the Unity Hub ...re a few things you need to be aware of: Downloading and installing the Unity Hub. ...et a popup window asking if you want to open the Unity HUB, Select ...and then click on the "Install Editor" button. We recommend ins...
How to image a Raspberry Pi
...ficial site to download the software. Choose a suitable version fo ...ard into your computer. It is always a good habit to format the SD ...8.4, you can format the SD card directly. Storage, select the SD ...stem - Erase Click Next and wait for it to finish. 3. Image y...
Arduino Nano 33 Sense Rev2- IMU sensor
...sX = 0; int degreesY = 0; void setup() { Serial.begin(9600); w ...h" float x,y,z, ledvalue; void setup() { if (!IMU.begin()) { ...ead magnetic field in all three directions IMU.readMagneticField(x, y, z); if(x < 0) { ledvalue = -(x...
Using a Force Sensor
...enses the resistance value depending on how much it has pressed. I ... as a touch sensor as well. The difference between this and Capaci ...to use. It provides accurate readings for physical pressure but it .../200 is light touch //500 is medium touch //800 is hard touch in...