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

140 total results found

Adding content - 3D model from the internet

Spark AR Importing 3D content from different sou...

...? Depending on the model you want you might need to look for it ...uses and this often affects the way in which the model has been pr ...l in your project. You might want to avoid - Models that have ...f the specifications of the hardware involved. You might need to t...

Touch sensor - with No Sensor!

Physical Computing Tutorials

...curacy without ANY external hardware. CapacitiveSensor library wil ...essing times #define RESOLUTION 100 #define SMOOTH 100 // determine how many readings ...ncludes a medium to high value (100K ohm - 50M ohm) resistor betwe ...nd makes a good sensor. Wiring 10M ohm resistor between pin2 and ...

Arduino Nano 33 Sense Rev2- IMU sensor

Physical Computing Tutorials

...x, y, z); if(x > 0.1){ x = 100*x; degreesX = map(x, 0, 97 ...; } if(x < -0.1){ x = 100*x; degreesX = map(x, 0, -100, 0, 90); Serial.print("Til ...); } if(y > 0.1){ y = 100*y; degreesY = map(y, 0, 97 ...; } if(y < -0.1){ y = 100*y; degreesY = map(y, 0, -1...

How to control Arduino without using delay()

Physical Computing Tutorials

...e the FireTimer with a delay of 1000 milliseconds ledTimer.begin ...(1000); } void loop() { // Check ...D ON duration) ledTimer.begin(1000); } void loop() { // Check ...== HIGH) { ledTimer.begin(1000); // LED is ON for 1 second ...tors, like giving each person a watch and ask them to action based...

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

Creative Coding 101

Creative Coding Other workshops

The slides for Introduction to Creative Coding are attached as a file on the left of this page!

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

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

Unity for Beginners Workshop

Unity

... 1 - Installing Unity Task 2 - Watch and follow the video tutoria ... and prepare all the assets you want to use (Images and sound file ...nstalling Unity Task 2 - Please watch the Unity for Beginners vide ...le 3D objects for the floor and walls, we recommend creating a bas...

Using an PN532 RFID reader

Physical Computing Tutorials

...22 Range ~10 cm ~5 cm ✔ PN522 ... Cost Higher (~$10–$30) Lower (~$2–$10) ✔ MFRC522 ... Serial.print("."); delay (1000); } Serial.println(); S ...erial.println("Waiting for a card......"); } void...

Raspberry Pi Image: Retropie for Reviving Vintage Games

Raspberry Pi Raspberry Pi Image

...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 ways of transferring in RetroPie D ...g the USB stick into the Pi and wait for 5-10 minutes. Remove the ...

Arduino Nano 33 Sense Rev2

Physical Computing Tutorials

...{border-collapse:collapse;width:100%;background:#fff;} th,td{p ...adding:10px;border:1px solid #ddd;text-al ... Power Regulator MPM3610 MP2322 VU ...{border-collapse:collapse;width:100%;background:#fff;} th,td{p...

Using built-in example code and Reading the hookup diagram

Physical Computing Workshop: Beginner Physical Computing

...choose HIGH, turn it on. delay(1000); delay means whatever you ar ... there for this amount of time, 1000 is 1000 milliseconds, which is 1 seco ...is time LOW, turn it off. delay(1000); stays off for a second. Therefore, our orange light is blinking every...

How to use a Servo Motor

Physical Computing Tutorials

...o.setAngle(i, 0); delay(1000); servo.setAngle(i, 9 ...0); delay(1000); } } Getting started - ...rvo motors' pulse width is 900-2100 servo.setServoPulseRange(9 ...00,2100,180); } void loop() { // ...o.setAngle(1, 0); delay(1000); servo.setAngle(1, 9...

How to control Raspberry Pi Pico via Wifi

Raspberry Pi Tutorials

...ome a ubiquitous and convenient way for people to access the inter ...onny Shell, something like ip = 10.3.15.120 open up a web browser ...p> </body> </html> """ max_wait = 10 10 while max_waiwait > 0: if wlan.status() < 0 ...s() >= 3: break max_wait -= 1 print('waiting for c...

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 send data to p5.js from Arduino

Physical Computing Tutorials

...the value to the Serial delay(100); //little delay to prevent Ar ...e port"); portButton.position(10, 10); // give the port button a m ...ble: function openPort() { // wait for the serial.open promise to return, // then call the initiateSerial fu...

How to send data to Processing from Arduino

Physical Computing Tutorials

...the value to the Serial delay(100); //little delay to prevent Ar ...arameters //map(theVariableYouWantToMap, min.ValueOfRawData, max ... the pot is 0 and max. value is 1023. //and I want to map the background colour ...ite) float BW = map(value1,0, 1023, 0, 255 ); //create a variabl...