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

46 total results found

How to make Animation on NeoMatrix

Physical Computing Tutorials

...de When you are happy with your design, go to the Config Tab and press Update 4 Bit Values. 5. Copy your Code Copy the Code in the 4_bit_values. 6. Paste your Code in Arduino IDE The yellow highlighted part within {} will be the code to be replaced. Uplo...

How to use a PIR sensor

Physical Computing Tutorials

...nt. The small size and physical design of this module allow you to easily use it in your project. The output of PIR motion detection sensor can be connected directly to one of the Arduino (or any microcontroller) digital pins. If any motion is detected by ...

Unity for Beginners Workshop

Unity

... on a piece of paper or using a design tool such as Adobe Illustrator or Adobe Photoshop, once created, you need to generate a digital image (.jpg or .png format) either by scanning your drawing or exporting an image from your preferred sketching software....

Web App Template for Beginners

Creative Coding Tutorials

... Frontend is usually for UI and design and runs on browser, on user’s own computer. P5.js sketches are frontend. Backend is behind-the-scenes code that runs on server. It is stores and organizes data and delivers your app to users, ie. clients. If 10 peopl...

Week 3 - Iteration, arrays, objects and pixel arrays

Creative Coding Workshop: Introduction to Creative Coding

...e array. This is a very common design pattern. for( var i = 0; i < sizes.length; i++ ){ console.log( i ); } What is happening here? The variable i is set as 0 The statement i < sizes.length is tested If the condition is true the code in...