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

180 total results found

How to use a Reed Switch

Physical Computing Tutorials

...GND Getting started After uploading the code, you can use a magne ...oid loop() { int proximity = digitalRead(REED_PIN); // Read the ...l.println("Switch closed"); digitalWrite(LED_PIN, HIGH); // Tu ...n the LED on } else { digitalWrite(LED_PIN, LOW); // Tur...

Using a Whadda Vibration Motor Module

Physical Computing Tutorials

...as a transistor, capacitor, and diode—into a single module along w ...ly control the motor without needing to worry about the electronic ...in, OUTPUT); } void loop() { digitalWrite(motorPin, HIGH); //vi ...y(1000); // delay one second digitalWrite(motorPin, LOW); //st...

What equipment is available?

About the Lab Frequently Asked Questions

... Receipt Printer Tablets including: iPad mini iPad Air iPod Tou ...g Galaxy Tab Smartphone including: Samsung S8 Human Interfa ...ce Devices including: Kinect 1 & 2 Leap Motion Wi ...lir camera Tobii Eye Tracker Display including: Elo Touch 7" S...

Week 4 - Other inputs and APIs

Creative Coding Workshop: Introduction to Creative Coding

...aviour of your sketch Understanding the concept of web-based APIs ...(see below). You can see this indicated by the file:// protocol fo ... server you will need to change directory (cd) into the project directory on the command line and ...ion is located in the following directory and is available to view...

Where is the Creative Technology Lab?

About the Lab Frequently Asked Questions

...k, in WG14. Through the main entrance, turn left in the first corner and turn left again. Keep walking down the hallway to the end. Passing throught the fire door, you will see the Creative Technology Lab. Next: When is the Creative Technology Lab open?

How to send data to Processing from Arduino

Physical Computing Tutorials

...munication is the process of sending data one bit at a time, seque ...arameters //map(theVariableYouWantToMap, min.ValueOfRawData, max ...d max. value is 1023. //and I want to map the background colour from black to white, 0(black) - 255(white) float...

How to use DFPlayer Pro to play MP3

Physical Computing Tutorials

...ack wire Connect L+ & L- if you want stereo audio File handling You can downlo ...FRobot_DF1201S.h> #include "SoftwareSerial.h" SoftwareSerial DF1201SSerial(2, 3); //RX TX DFRobot_DF1201S player; void setup(void){ Serial.begin(115200); DF1201SS...

Using the MAX9814 mic amplifier

Physical Computing Tutorials

... and prints out values corresponding to the sound's varying volume ...olume is above this threshold a warning comes up in the Serial Monitor Serial.println("Loud noise"); delay(500); } else { Serial.println(MicVolume); } }

Other resources

Touchdesigner Basics of Touchdesigner

... as we continue to explore Touchdesigner here at LCC. The best way to grow in your visual program ...uld look into daily or weekly coding challenges such as the @creat ...onse to it.     Basics: Touchdesigner's official course: https://le ...  Elekktronaut's Intro to Touchdesigner:https://www.youtube.com/playl...

Concepts

Creative Coding

A collection of resources which outline ways of thinking in creative computation, computer science, and associated areas.

Touch sensor - Using an CAP1188

Physical Computing Tutorials

... This chip can handle up to 8 individual touch pads, it will light ...) ⚠️ Partial (multi-touch disabled by default) ...DA and SCL pins as shown in the diagrams, in this case you'll need to look it up on the boards documentation, howeve...

Building to a VR headset

Unreal Engine Basics

...ill describe the process of building to VR headsets and go in-dept ...h for building to some of the most common pl ...you are encouraged to conduct individual research since developmen ...t can have different results on different devices. Please ask a te...

Installing Mamba

Python for Beginners Setting Up Your Environment

...find that sometimes you'll have different projects that need different versions of the same lib ...'re going to use a piece of software called Mamba to create and manage virutal environments. Mamba is a package manager and environment manager for Python. I...

How to use a Neopixel strip

Physical Computing Tutorials

...ing that it can be programmed individually. With the library creat ... for your project. They come in different sizes and shapes and you ...r light installations. Wiring DIN to Pin6 +5V to 5V GND to GND ...eoPixel library will be used. **Warning**Download version 1.9.0 or...

Photogrammetry Pages

This is a comprehensive guide that will guide you through the whole process of creating a 3D digital copy of a physical object.

Using a Soil Moisture Sensor

Physical Computing Tutorials

...de(13, OUTPUT); } void loop() { sensorValue = analogRead(sensorPin); Serial.print("Moisture Level: "); Serial.println(sensorValue); if (sensorValue < limit) { digitalWrite(13, HIGH); } else ...{ digitalWrite(13, LOW); } delay(100); }

How to connect a Light Dependent Resistor (LDR)

Physical Computing Tutorials

... vary the temperature (voltage) by adjusting the tap. The zig-zag lines indicate resistors, the voltage outp ...ue ); if(value < limit){ digitalWrite(LED_BUILTIN, HIGH); ... }else{ digitalWrite(LED_BUILTIN, LOW); } delay( 50 ); }

Touch sensor - with No Sensor!

Physical Computing Tutorials

...f all conductive materials including tinfoil, banana, plant, penci ...curacy without ANY external hardware. CapacitiveSensor library wil ...int of the physical circuit, reading might be sometimes unreliable ...TH 100 // determine how many readings are stored for smoothing flo...