Advanced Search
Search Results
142 total results found
When is the Creative Technology Lab open?
The Creative Technology Lab is open at the following times: Monday to Friday 10:00 – 13:00 13:00 – 14:00 Lunch Break 14:00 – 18:00 Next: Who works in the Creative Technology Lab?
Where to buy components
...ields, etc... Proto-PicOffers 10% student discount SKPang #DigitalMeans Cool Components HobbyTronics Kitronik Oomlout Pimoroni Spiratronics Bright Components Components RapidStudent pricing + free delivery over £30 CPCFree delivery...
How to use a rotary encoder
...aft angle. This allows you to always know the exact position, even ....println(encoderValue); delay(100); // Adjust for your needs } ...ion of rotation if (sum == 0b1101 || sum == 0b0100 || sum == 0b0010 || sum == 0b1011) { encoderValue++; // Clo...
Using a Soil Moisture Sensor
...inMode(13, OUTPUT); } void loop() { sensorValue = analogRead(sensorPin); Serial.print("Moisture Level: "); Serial.println(sensorValue); if (sensorValue < limit) { digitalWrite(13, HIGH); } else { digitalWrite(13, LOW); } delay(100); }
Making Breathing Light with LEDs
...r example, pin D3, D5, D6, D9, D10 and D11 on Arduino UNO are PWM ...logWrite(255) means a signal of 100% duty cycle. (turns somthing on) It can be used in controlling the brightness of LED, speed control of DC motor, controlling a servo motor or where ...
Radio Communication: How to use APC220 Radio Data Module
... to 5V TXD to 8 RXD to 9 SoftwareSerial OnlyUse SoftwareSerial on both Arduinos. Never ...rees, one by one. #include <SoftwareSerial.h> SoftwareSerial radio(8, 9); // RX, TX ...Hello from Leonardo!"); delay(1000); } Arduino UNO - Receiving ...
How to use a EMG Muscle Sensor
... if(timer < 0) { timer += 1000000 / SAMPLE_RATE; int sensor_value = analogRead(INPUT_PIN); // RAW EMG Values int signal = EMGFilter(sensor_value); // Filtered EMG int envelope = getEnvelope(abs(signal)); if (envelope > EMG_THRE...
How to use a Heart Beat Sensor
... signal crosses the threshold upward (beat detected) if (Signal .... Signal value can range from 0-1024 int Threshold = 540; // Determine which Signal to "count as a beat", and which to ingore. // The SetUp Function: void setup() { pinMode(LED...
Using Smartphont to Read NFC tag
...when they are within a few centimeters of each other. It’s most commo ... involving Arduino. If you only want a simple read and write funct ...nt32_t versiondata = nfc.getFirmwareVersion(); if (!versiondata) ... to read RFID Serial.println("Waiting for an NFC tag..."); } vo...
Steam VR setup Tutorial #3 - Interactable object setup
...to learn how to create two "throwable" objects but first, we are g ... create a plinth to put the throwable objectS on so it is easier t ...now see a cube intersecting the walking plane. Now let's chan ... at the Transform component parameters shown on the Inspector, you wi...
AR with Unity - Step #2 - Unity project setup
...9.2.0f1) is a quite straight forward process, first, let's create ...ect settings panel, the easiest way to do it is by opening the bui ...time, Unity will ask you if you want to include a default database, please click the "Import" button, this will auto...
Workshop exercise: Clone, commit, pull, push
...e interface - it's a text-based way of navigating our folders and ...ed to navigate to the folder we want to put the documents in. Let' ... files you have changed" You always have to put -m followed by a message in quotes. Git won't let you commit withou...
Adding content - Music and Audio
There are multiple ways in which you can use audio in ...es to M4A using open source software like Audacity. A tutorial for ... Computer. Select the file you want to open and click Open. Your audio clip will be in the Audio folder of the Assets pane. Note....
How to export your p5.js as a video
...ime-based work in p5.js you may want to capture the canvas as a vi ...re beginning to capture. If you wanted to delay the recording by a certain amount of frames you can change the boolean check. The last block of code in your draw function should be this...
Creating a Landscape
... 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
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...
Intro
...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...
How to use a Bone Conductor Transducer
...onduction? Bone conduction is a way of transmitting sound to the i ...rdrum. In normal hearing, sound waves travel through the air, vibrate the eardrum, and are then passed to the inner ear. With bone conduction, vibrations are sent directly through the sk...