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

167 total results found

Importing and Placing 3D Models

Unreal Engine Basics Creating Virtual Worlds

...e. They can also be called 3D Assets. You can either create your ow ...oaded from here: UE Workshop Assets After downloading the Building ... Importing Models To import assets into your project, first open ... can specify which folder the assets will get imported into by sele...

How to power the Raspberry Pi Pico

Raspberry Pi Tutorials

...e Raspberry Pi Pico The easiest way to power a Pico is through the ...n other words, it acts as a one-way valve for electric current. We ...e time and there is a risk of unwanted power flow between the two power sources. Schottky diode is preferred for its...

Other resources

Touchdesigner Basics of Touchdesigner

...designer here at LCC. The best way to grow in your visual program ...signer: https://www.youtube.com/watch?v=XLeghJmFBh0 AI vision usi ...signer: https://www.youtube.com/watch?v=Cx4Ellaj6kk Other repositories and useful tools might be Github, a websit...

Introduction to Spark AR

Spark AR Installation and Setup

...nvironment. There are different ways where an AR experience can be triggered for example through facial recognition, GPS location, image markers, or without the use of any markers. Tools for AR There are a number of tools developed now for making AR base...

Concepts

Creative Coding

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

Using a TCS34725 RGB Color Sensor

Physical Computing Tutorials

... code in Processing, we have to set up the serial port for the communication between Arduino and Processing. Go to line 15. port = new Serial(this, "COM20", 9600); "COM20" is the name of the serial port, every USB port on everyone's computer is different....

How to use a Neopixel strip

Physical Computing Tutorials

...or lengthen them flexibly. Once set up, they are very durable and e ...eoPixel library will be used. **Warning**Download version 1.9.0 or below for a more stable performance. We have a tutorial on how to install a library here. Getting started Once the lib...

DFRobot Sensor Testing: HX711 Weight Sensor, Voice Recorder Module Pro, Speech Synthesis Module V2

Physical Computing Tutorials

...but you can change the pitch by setting the tone from 0-9 (0 is the deepest). Please see here for their official tutorial. Voice Recorder Module Pro This module has an integrated recording and playback function and supports I2C communication. It can store ...

How to make the Raspberry Pi display a web page fullscreen at power on

Raspberry Pi Tutorials

...be enough for you to be able to setup a Raspberry Pi with GUI mode ...creen.sh export DISPLAY=:0.0 xset s off xset -dpms xset s noblank chromium-browser --noerrdialogs --kiosk https://google.co.uk --incognito Create a folder called autorun inside...

Using a Vibration Motor

Physical Computing Tutorials

...r) Getting started This code is getting the motor to vibrate for 1 second and stop for 1 second. int motorPin = 3; //motor transistor is connected to pin 3 void setup() { pinMode(motorPin, OUTPU ...stop vibrating delay(1000); //wait 50 seconds. }

Making Breathing Light with LEDs

Physical Computing Tutorials

...ED is int fadeAmount = 5; void setup() { pinMode(led, OUTPUT); pinMode(led2, OUTPUT); //optional for 2nd led } void loop() { //breathing light analogWrite(led, brightness); analogWrite(led2, brightness); //optional for 2nd led brightness =...

How to use a Bare Conductive Touch Board with Arduino

Physical Computing Tutorials

...ng the above two tutorials. Hardware Plugin Whenever we use an Ard ...e it opened. Download the Hardware Plugin here: bare-conductive- ...duino-public.zip Create a hardware folder Windows: Libraries/Do ...cuments/Arduino/hardware OR My Documents/Arduino/hardw...

How to build a Simple Robot Arm with Servo Motor and Joystick

Physical Computing Tutorials

...D Workshop to laser cut the hardware. In this tutorial, we will fo ...rvo; Servo angleServo; void setup() { Serial.begin(9600) ; rotateServo.attach(servoRotation); angleServo.attach(servoAngle); } void loop() { // read analog potentiometer val...

Controlling an actuator with a N-channel Mosfet

Physical Computing Tutorials

...ital device. #define actuatorPin 13 void setup() { pinMode( actuatorPin, OUTPUT ); } void loop() { digitalWrite( actuatorPin, HIGH ); delay( 1000 ); digitalWrite( actuatorPin, LOW ); delay( 1000 ); }

Using a Force Sensor

Physical Computing Tutorials

... touch int limit = 200; void setup() { Serial.begin(9600); pinMode(13, OUTPUT); } void loop() { sensorValue = analogRead(sensorPin); Serial.print("Force Level: "); Serial.println(sensorValue); if (sensorValue > limit) { digitalWrite(13, HIGH...

Using a Soil Moisture Sensor

Physical Computing Tutorials

...nge of moisture generally void setup() { Serial.begin(9600); pinMode(13, OUTPUT); } void loop() { sensorValue = analogRead(sensorPin); Serial.print("Moisture Level: "); Serial.println(sensorValue); if (sensorValue < limit) { digitalWrite(13, H...

Using an MFRC522 RFID reader

Physical Computing Tutorials

...h each identification and a two-way radio transmitter-receiver as .../ Create MFRC522 instance void setup() { Serial.begin(9600); // ...s...")); } void loop() { // Reset the loop if no new card is present on the sensor/reader. This saves the entire ...

How to fix "Internal data stream error" in Processing 4

Creative Coding Tutorials

...x (12/2024) Change this line cam = new Capture(this, cameras[0]); to "pipeline:avfvideosrc device-index=0" Full Code import processing.video.*; Capture cam; void setup() { size(640, 480); Stri ..., transformations, or tint. //set(0, 0, cam); }