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

161 total results found

Installing PyCharm

Python for Beginners Setting Up Your Environment

...ment Environment (IDE) is a software application that provides a c ...n find that version control software will become an indispensable ...nstant feedback on code errors, warnings, and potential issues is ...-ins and Extensions: Many IDEs support plug-ins or extensions that...

How to send data to Processing from Arduino

Physical Computing Tutorials

... buttons and etc. Wiring Wiring up buttons and switches is simple: ...e potPin A0 int value; void setup() { Serial.begin(9600); //int ...rom arduino if needed void setup() { size(800, 800); prin ...arameters //map(theVariableYouWantToMap, min.ValueOfRawData, max...

How to use a Rotary Encoder Button

Physical Computing Tutorials

... rotary encoders rotate all the way around continuously and are di ...vided up into 24 'segments'. Each segmen ...or the button in ms void setup() { Serial.begin(9600); // ....begin(); // Initialize interrupts attachInterrupt(digitalPinT...

Types of Lighting and Lighting Mobility

Unreal Engine Basics

... across large surfaces, such as walls or floors, and creating soft ...scenes where real-time lighting updates are not necessary. 2) Stationary Lights: Stationary lights are a commonly used light mobility type in Unreal Engine. They offer a balance between ...

Adding content - Music and Audio

Spark AR other Content and Tutorials

There are multiple ways in which you can use audio in ...ant to note that Spark AR only supports M4A file format. You can c ...es to M4A using open source software like Audacity. A tutorial for ... Computer. Select the file you want to open and click Open. Your...

Creating a Landscape

Unreal Engine Basics Creating Virtual Worlds

... modes of the editor. We will want to change two important setti ...k. This is not necessary if you want to make small adjustments. After clicking once to paint our landscape with Noise, it should look like this. As you can see, the height has been r...

Command Line Tools & Utilities

Creative Coding Tutorials

A Command Line Interface is a way of interacting with a computer ...h your operating system and hardware to perform complex and intens ...useful Free and Open Source Software (FOSS) available online that ...Interface (GUI). Often this software works more efficiently with t...

How to install libraries

Physical Computing Tutorials

...brary There are three different ways to install libraries; we'll s ...es are currently available this way, as this feature is relatively new. You will often have to manually download and install a library, following the other two processes. ZIP library Loc...

Using a Vibration Motor

Physical Computing Tutorials

... make sure that not too much current flow from the output of the transistor, we place a 1KΩ (or up to 5KΩ) in series with the base ... is connected to pin 3 void setup() { pinMode(motorPin, OUTPUT) ...stop vibrating delay(1000); //wait 50 seconds. }

Making sounds with a piezo

Physical Computing Tutorials

... that is susceptible to the two-way piezoelectric effect where pre ...utorial we'll look at wiring it up to Arduino with the Tone feature to create a melody. Wiring Wiring is simple, there are just two wires, applying power causes the piezo to expand, just...

Making Breathing Light with LEDs

Physical Computing Tutorials

...on components. Making it lights up is usually the first step into ...is int fadeAmount = 5; void setup() { pinMode(led, OUTPUT); pinMode(led2, OUTPUT); //optional for 2nd led } void loop() { //breathing light analogWrite(led, brightness); anal...

What is the MetaHuman Creator?

Metahuman Creator

...ahuman Creator has implications beyond gaming. Its realistic virtual humans can be used in film, television, virtual reality, and augmented reality. This means it opens up new opportunities for storytelling and immersive experiences in various industries.

Installing Mamba

Python for Beginners Setting Up Your Environment

...come in handy. They let you set up separate "sandboxed" Python con ...'re going to use a piece of software called Mamba to create and manage virutal environments. Mamba is a package manager and environment manager for Python. It is built on the Conda packa...

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

Physical Computing Tutorials

... This sensor can measure weight up to 1kg, and is compatible with ... can turn text into speech. It supports both English and Mandarin ...ding and playback function and supports I2C communication. It can store 10 segments of 100s audio. It also has a si...

Using a Force Sensor

Physical Computing Tutorials

... is easy to hide. Wiring Wiring up the sensor is simple, the senso ...uch int limit = 200; void setup() { Serial.begin(9600); pinMode(13, OUTPUT); } void loop() { sensorValue = analogRead(sensorPin); Serial.print("Force Level: "); Serial.println...

Using L293D IC for motors

Physical Computing Tutorials

...bidirectional drive currents of up to 600 mA (per channel) at volt ...the positive wire of the power supply and the black wire of the mo ...the negative wire of the power supply as normal practice. We will ...the positive wire of the power supply and the red wire of the moto...

Using a Soil Moisture Sensor

Physical Computing Tutorials

...es with drought). Wiring Wiring up the sensors is simple: Power ( ... of moisture generally void setup() { Serial.begin(9600); pinMode(13, OUTPUT); } void loop() { sensorValue = analogRead(sensorPin); Serial.print("Moisture Level: "); Serial.prin...

Using a Membrane Potentiometer (SoftPot)

Physical Computing Tutorials

...nsitive controls Wiring Wiring up the sensor is simple, the senso ...nt SOFT_POT_PIN = A0; void setup() { Serial.begin(9600); pinMode(SOFT_POT_PIN, INPUT); } void loop() { int softPotPosition = analogRead(SOFT_POT_PIN); Serial.println(softPot...