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

128 total results found

How to connect a Light Dependent Resistor (LDR)

Physical Computing Tutorials

...t limit; void setup() { Serial.begin( 9600 ); pinMode( ldrPin, INPUT ); pinMode(LED_BUILTIN, OUTPUT); } void loo ...alue < limit){ digitalWrite(LED_BUILTIN, HIGH); }else{ ... digitalWrite(LED_BUILTIN, LOW); } delay( 50 ); }

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

Week 2 - Animation, conditionals & random numbers

Creative Coding Workshop: Introduction to Creative Coding

... 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 ... As you can see a variable called positionX is declared and assig ... and single (=) equals signs Always be sure to use the double equ...

Variables

Python for Beginners

...t's create a new Python file called "variables." This can be done b ... result of 2. However, you may want to use a certain value more t ...nformation. Imagine them as labeled boxes where you can store diffe ...we assign 1234 to a variable called print, it suggests using a comm...

Understanding Arduino hardware

Physical Computing Workshop: Beginner Physical Computing

...pressed / not pressed. Output can be something like an LED light, light on or light off. 5 ...utput pins. For example, if you want to create a breathing light e ...ffect with the LED light, you will need to use one ...part, Understanding Arduino software.

Course

How to use Raspberry Pi Camera Module 3

Raspberry Pi Tutorials

...ra Module 3? This tutorial will walk you through setting up and us ...later Requirements Hardware Raspberry Pi (Pi 3 or later) ...upply & HDMI or SSH access Software Raspberry Pi OS Bookworm (64 ...the Ethernet port, metal pins toward HDMI. Insert the ribbon cable...

Week 1 - Coordinates, shapes and colour

Creative Coding Workshop: Introduction to Creative Coding

... you will be using a library called p5.js to learn the fundamentals ...or expertise, you will almost always encounter bugs. Writing code ... code is meant to be doing. The way we do this is by adding commen ...s. Comments can be added in two ways: Single line commentUsing t...

Making a website for your HTML, JS, CSS or p5.js files

Creative Coding Tutorials

...ke a website using something called GitHub pages to make a website. ...website that stores what are called repositories. Repositories cont ...our computer. Git is what is called a version control system and to ...something goes wrong, you can always go back to when it did work! ...

How to use a relay module

Physical Computing Tutorials

... 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 ...- pin 3 NO - red(+) wire of the water pump COM - red(+) wire of ba...

How to use a EMG Muscle Sensor

Physical Computing Tutorials

...axed on the table, the built-in LED will be off. When the forearm i ...s flexed, the built-in LED will be on. Get Started #define SAMPLE_RATE 500 #define INPUT_PIN A0 // envelopeee buffer size // High value -> smooth but less responsive // Low value -> n...

Hello World

Python for Beginners

...t the "type" of Python file you want PyCharm to create. For this e ...print(), we provide the text we want Python to print. This text mu ...ere you can type what it is you want to print. In this example, I waited until I had typed out "prin ...own PyCharm's list of potential ways for completing your code. No...

Using an PN532 RFID reader

Physical Computing Tutorials

...al.println(); Serial.println("Waiting for a card......"); } void ...al.println(); Serial.println("Waiting for a card......"); } v ...nt32_t versiondata = nfc.getFirmwareVersion(); if (!versiondata) ....SAMConfig(); Serial.println("Waiting for an NFC card..."); } v...

Arrays

Programming Tips and Tricks

... p5 Editor Now what if we wanted to have a lot of circles, l ...vidually. Going further, say we wanted to manipulate all of our ci ...rcles in a similar way (for example, move them all le ...ing. Arrays in p5 The easiest way to create an array in p5 is a ...

Intro

Projection Mapping Intro to Projection Mapping

...atic objects. This technique was first used for Disney’s Haunte ... a video of five singing ghosts was projected onto physical busts, ...and immersive projections. Software     A variety of projectio ...n mapping software and masking tools are availab...

3D Geometry and Parametric Design

Creative Coding Concepts

...pace and making this content viewable in low-fi VR headsets. I ha ...ve been making a piece of software using openFrameworks to explo ...elling and explain how this software can be used as a tool to expl ...elow is a screenshot of the software: Code available here. Aims ...

Bonus round: putting an existing Unity project into git

Games Workshop: Version Control for Games Design

...liar with the command line, the way to use it is to type a command ...Now there should be a folder called .git in your project. You may n ...weird crap in it which we don't want to keep track of. We need a g ...ere's the .gitignore content we want to use - this is the list Git...

How to get started with Face Tracking in Spark AR

Spark AR TEMPLATE : Basic Face Tracking

Face Tracking in Spark AR Watch this video which explains the basic features of the Face Tracker in Spark AR. There are multiple different starter templates in Spark AR that make use of face tracking. To make your development easier, choose a template t...

How to get started with World Effects in Spark AR

Spark AR TEMPLATE: World Effects

World Effects in Spark AR Watch this video which explains the basics of World Effects in Spark AR. There are multiple different starter templates in Spark AR that make use of world effects. To make your development easier, choose a template that is most...