Advanced Search
Search Results
180 total results found
What is the Creative Technology Lab?
...Creative Technology Lab and the 3D Workshop on a single project accessing staff expertise and technical facilities and equipment to build the electronics in the Lab and the physical parts of the project in the Workshop, encouraging true multi-disciplinary ...
Unity AR
AR projects allow you to show content by pointing your camera onto an image or a 3D object that will act as an anc ...hor point for your 2D/3D to be displayed on top of.
Sending data to Arduino
...ences. This brief tutorial will walk you through using Firmata, a ...e communication between the softwares through serial. In Arduino ...nch Arduino. Make sure your hardware matches the software by selecting the correct boar ...e the valuePins between 18 and 23 correspond to the Analog pins o...
Introduction
...ab, don’t worry—this guide will walk you through the basics. If yo ...rn: Understanding Arduino hardware Understanding Arduino software Using built-in example code and Reading the hookup diagram Installing libraries Using Neopixel Using Ultraso...
Where is the Creative Technology Lab?
...k, in WG14. Through the main entrance, turn left in the first corner and turn left again. Keep walking down the hallway to the end. Passing throught the fire door, you will see the Creative Technology Lab. Next: When is the Creative Technology Lab open?
Object in the space AR
... You can also duplicate the object in the scene by going to Edit > Duplicate and dragging it somewhere else on the scene: You can also edit the object size, and rotation in the properties menu. Make sure you select the object you want to edit:
Other resources
...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 repos ...tte-Guidelines-WIP-52a15db1a1cd43fd940fe2fa96508bf9.
Introduction to Spark AR
...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
A collection of resources which outline ways of thinking in creative computation, computer science, and associated areas.
Using a TCS34725 RGB Color Sensor
What is the TCS34725 RGB Color Sensor? The TCS3472 sensor provides a digital re ... projects. What is I2C? The TCS34725 has an I2C interface (SDA a ...fore you hook it up with the TCS34725 sensor. Learn more Library ...Adafruit TCS34725 will be used for this tutor...
How to use a Neopixel strip
...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
...ble with Arduino, micro:bit, ESP32 and Raspberry Pi via I2C commu ...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 recordin...
How to make the Raspberry Pi display a web page fullscreen at power on
...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...
Controlling an actuator with a N-channel Mosfet
...o GND via 1k resistor & to Pin 13 Power Supply(+) to actuator(+) ...al device. #define actuatorPin 13 void setup() { pinMode( actuatorPin, OUTPUT ); } void loop() { digitalWrite( actuatorPin, HIGH ); delay( 1000 ); ...
Using a Force Sensor
...e; //sensor value range: 0-1023 //200 is light touch //500 is ... touch int limit = 200; void setup() { Serial.begin(9600); pin ...Mode(13, OUTPUT); } void loop() { se ...Value > limit) { digitalWrite(13, HIGH); } else { digitalWri...
Using a Membrane Potentiometer (SoftPot)
...A0 & via 10k resistor to GND Pin3 (the one with a small arrow) to .... int SOFT_POT_PIN = A0; void setup() { Serial.begin(9600); pinMode(SOFT_POT_PIN, INPUT); } void loop() { int softPotPosition = analogRead(SOFT_POT_PIN); Serial.println(softP...
How to use a Flat Vibration Switch
...tion switch const int ledPin = 13; // Built-in LED on most ...Arduino boards void setup() { Serial.begin(9600); } void loop() { int state = digitalRead(vibrationPin); if (state == HIGH) { digitalWrite(ledPin, HIGH); Serial.println(...
How to use a Reed Switch
...eed switch const int LED_PIN = 13; // LED pin - active-high void ... setup() { Serial.begin(9600); // Since the other end of the reed switch is connected to ground, we need // to pull-up the reed switch pin internally. pinMode(REED_PIN, INPUT_PUL...