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

133 total results found

How to use a relay module

Physical Computing Tutorials

...n activated by a signal between low-powered digital electronics and ... It is handy when the thing you want to control requires higher po ... In this tutorial, I will use a water pump and a 1-channel 5V rela ... 1 channel relay to control one water pump. Labels on a Relay Modu...

Week 3 - Iteration, arrays, objects and pixel arrays

Creative Coding Workshop: Introduction to Creative Coding

...session we will be using the following project directories: 11_ite ... the browser address bar (see below). You can see this indicated by ... the file:// protocol followed by the absolute file path to ...dy installed you can run the following command to install an HTTP w...

Using a Sparkfun Sound Detector

Physical Computing Tutorials

...fun electronics that provides a way to detect ambient sound levels ...epresenting if sound levels are low or high. Wiring There are two ...r signals if the sound level is low with a LOW signal, and high with a HIGH si ... digital pin on the Arduino (yellow wire in the diagram) There are...

Unity for Beginners Workshop

Unity

... 1 - Installing Unity Task 2 - Watch and follow the video tutorial focusing on ... and prepare all the assets you want to use (Images and sound file ...ask 1 - Installing Unity The following link will take you to a guid ...nstalling Unity Task 2 - Please watch the Unity for Beginners vide...

Powering an Arduino

Physical Computing Tutorials

...is auto-off when consumption is low. Microcontrollers often have a low-current consumption and the pow ...me power banks that can support low-current charging mode/ always-on mode. These will be suitable for powering a microcontroller, e.g. Sandberg Powerb...

How to use a Reed Switch

Physical Computing Tutorials

...D_PIN, OUTPUT); } void loop() { int proximity = digitalRead(REED_PIN); // Read the state of the switch if (proximity == LOW) // If the pin reads low, the switch is closed. { ...e { digitalWrite(LED_PIN, LOW); // Turn the LED off } }

Raspberry Pi Image: Retropie for Reviving Vintage Games

Raspberry Pi Raspberry Pi Image

What is Retropie? RetroPie allows you to turn your Raspberry Pi ...ie image and add additional software later. It's up to you. We are ...ccordingly, one by one. If you want to skip any button configurat ...SB stick is the most straightforward method. You can find other wa...

How to use Grove Serial Bluetooth v3.0

Physical Computing Tutorials

...obtaining a copy * of this software and associated documentation ...files (the "Software"), to deal * in the Software without restriction, includin ...nd/or sell * copies of the Software, and to permit persons to who ...m the Software is * furnished to do so, sub...

How to get started with Textures and Materials in Spark AR

Spark AR Materials and Textures in Spark AR

...ures and Materials in Spark AR Watch this video which explains th ...s and materials in other 3D software like Blender, Cinema4D, and U ..., they probably work in similar ways. However, you should always keep in mind that Spark AR is ... a separate software and might have implemented di...

How to use a Rotary Encoder Button

Physical Computing Tutorials

... rotary encoders rotate all the way around continuously and are di ...utton pin int lastButtonState = LOW; // last button state int debo ...pressed: if (buttonState == LOW) { Serial.print("you pressed on position: "); Serial.println(positi...

How to use DFPlayer Pro to play MP3

Physical Computing Tutorials

... for Arduino. It is a small and low-priced MP3 module with an inter ...ack wire Connect L+ & L- if you want stereo audio File handling ...FRobot_DF1201S.h> #include "SoftwareSerial.h" SoftwareSerial DF1201SSerial(2, 3); //RX TX DFRobot_DF1201S playe...

How to use DFPlayer mini to play MP3

Physical Computing Tutorials

...ayer For Arduino is a small and low-priced MP3 module with a simpli ...ly annoying. To remove them, follow the below steps: Finder - Go to your USB ...e sure you are using .mp3, not .wav or any other audio formats. #i ...nclude "SoftwareSerial.h" #include "DFRobotDFP...

3D Geometry and Parametric Design

Creative Coding Concepts

...pace and making this content viewable in low-fi VR headsets. I have been ma ...king a piece of software using openFrameworks to explo ...elling and explain how this software can be used as a tool to expl ...ain generative design. Below is a screenshot of the software...

Week 2 - Animation, conditionals & random numbers

Creative Coding Workshop: Introduction to Creative Coding

...nal statements to control code flow Using variables for animation ...session we will be using the following project directories: 04_usi ... detail. A variable is simply a way of storing information in the ...tions. 5 - The value which we want to store in the computer's me...

Variables

Python for Beginners

...be used as a calculator as it allows us to perform calculators with ...achieve this by entering the following code into your "variables.py ... result of 2. However, you may want to use a certain value more t ...eeds to work with. Variables allow you to give a name to a piece o...

Using built-in example code and Reading the hookup diagram

Physical Computing Workshop: Beginner Physical Computing

...ond. digitalWrite(LED_BUILTIN, LOW); Again, writing a command digi ...tally, but this time LOW, turn it off. delay(1000); stay ...Arduino: ~6 Next, you will follow some tutorials about installing libraries, finishing learning how to use Neopixel and usi...

Touch sensor - Using an CAP1188

Physical Computing Tutorials

... Power Consumption Low Low Library We will be using the library Adafruit CAP1188. We have a tutorial on how to install a library here. Wiring Wiring is pretty simple, it's an I2C component so it's relatively standard. VIN -> 5V...

How to use a Flat Vibration Switch

Physical Computing Tutorials

What is a Flat Vibration Switch? This is a low-sensitivity, directional vibrat ...else { digitalWrite(ledPin, LOW); } delay(100); }