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

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 new. You will often have to manually download and install a library, following the other two processes. ZIP library Loc...

Controlling an actuator with TinkerKit Mosfet

Physical Computing Tutorials

...mall, cheap module which takes away all these headaches, on the Ar ...other side of your actuator) **Warning**The TinkerKit Mosfet can ...ce. #define actuatorPin 6 void setup() { pinMode( actuatorPin, O ...this is effectively the same as setting the brightness of an LED. *...

Building for Android Touchscreen Display with Phone OS

Building Apps (Staff)

Unreal project setup as Mobile Scalable. Build for ... Android with regular SDK, NDK setup for Meta Quests. On packaging ...File Manager on display through settings and open the apk from USB. If this is the first time, it will install the app, if it is the sec...

Installing Unity

VR tutorials - Unity HTC VIVE Tutorials

...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 ...can choose Unity 2020, just be aware that your interface will look ...And that is it. Now you are all set and the software is ready for y...

Introduction to Python

Python for Beginners

... 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 ...ning Python is a valuable and rewarding endeavor. So, let's dive i...

Projection Mapping in Touchdesigner

Projection Mapping Intro to Projection Mapping

... tutorial on how to get the software started is available here. Th ...to your laptop and that this is set up as an extended monitor: foll ...ask your area of projection and warp your content onto it. Drag and drop it on your network.  In the parameters’...

Intro to Touchdesigner

Touchdesigner Basics of Touchdesigner

About the software Touchdesigner is a programmi ...ng software popular amongst all kinds of ...uchdesigner is a node-based software, a type of visual programming ...ow Every operator comes with a set of parameters that you can edit ...VideoDeviceIn TOP may display a warning: "Resolution limited to a ...

What is Unreal Engine?

Unreal Engine Basics

...Unreal Engine is a powerful software that helps creators build vir ...evices, and virtual reality headsets. This means that students can ... capabilities to create virtual sets, stunning visual effects, and ...ts. They can create interactive walkthroughs, realistic visualizat...

Mobile VR -Setting Up Unity

VR tutorials - Unity Mobile VR

Setting Up Unity Download and in ...so work, however, this tutorial was made using Unity 2019.2.0f1 (p ... when you start running the software. Android and/or IOS buil ...e IOS build support. Please be aware that both Windows and IOS com ... build support includes the Software Development Kit (SDK), the Na...

Mobile VR - Getting Started Guide

VR tutorials - Unity Mobile VR

...cases, an affordable Mobile headset. These are some options we reco ... You might need a Mobile VR Headset to experience the VR content. ...vice. click here to visit Software There are many different t ...s a list of useful links if you want to start exploring it. A-FRA...

How to image a Raspberry Pi

Raspberry Pi Raspberry Pi Image

...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 ...stem - Erase Click Next and wait for it to finish. 3. Image y ...i Using Raspberry Pi Imager software to Install the Raspberry Pi O...

How to use IR Breakbeam Sensor

Physical Computing Tutorials

...frared; detects changes in long-wave IR (heat) in its field. ...nt lastState = 0; void setup() { pinMode(LEDPIN, OUTPUT); pinMode(SENSORPIN, INPUT); digitalWrite(SENSORPIN, HIGH); // turn on the pullup Serial.begin(960...

Physical Computing

...els, DMX, Bluetooth, Kinect and Leap Motion. Create interactive objects that respond to touch, distance, movement, temperature or light. Our electronics bench in the lab has a set of equipment for soldering electronics, please email us for an induction.

How to use a PIR sensor

Physical Computing Tutorials

... sensor, this pin value will be set to “1”. The two potentiometers ... // PIR status void setup() { pinMode(ledPin, OUTPUT); pinMode(pirPin, INPUT); Serial.begin(9600); } void loop(){ pirStat = digitalRead(pirPin); ...

Installing Mamba

Python for Beginners Setting Up Your Environment

...hink of libraries as ready-made sets of code created and maintained ...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 manage virutal environments. Mamba is a package ma...

How to use a Hall Effect Sensor

Physical Computing Tutorials

...e the state of the sensor void setup() { Serial.begin(9600); ...e(hallSensorPin, INPUT); // Set the Hall Effect sensor pin as an INPUT } void loop() { hallSensorState = digitalRead(hallSensorPin); // Read the state of the sensor Serial.prin...

Using L293D IC for motors

Physical Computing Tutorials

...r Driver IC which can control a set of two DC motors simultaneously ...and has custom functions for forward(), backward(), stop(), turnRight() and ...is will run only one time. void setup(){ //Set pins as outputs pinMode(mot ...nalogWrite(motorAspeed, 255); //set motor A speed 0-255 analogW...

Using Arduino Leonardo to send USB MIDI data

Physical Computing Tutorials

...sor. #include "MIDIUSB.h" void setup() { Serial.begin(115200); } ...// controlChange(0, 10, 65); // Set the value of controller 10 on channel 0 to 65 } void noteOn(byte channel, byte pitch, byte velocity) { midiEventPacket_t noteOn = {0x09, 0x90 | ch...