Advanced Search
Search Results
122 total results found
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...
Using the serial monitor and serial logger
...e a seperate USB serial and hardware serial, and you cannot direct ...ly monitor the hardware serial [Serial1] output using ...lotter The serial plotter is a way to visually graph the data bei ...ng received, a common way to transmit multiple values is...
How to send data to p5.js from Arduino
...ript in the index.html file, inside the <head>. <script src="https: ...ble: function openPort() { // wait for the serial.open promise t ...ole.log("port open"); } // hide the port button once a port is ...: if (portButton) portButton.hide(); } // pop up an alert if th...
How to image a Raspberry Pi
...berry Pi? There is an official video showing how if you prefer. 1. ...ficial site to download the software. Choose a suitable version fo ...ard into your computer. It is always a good habit to format the SD ...stem - Erase Click Next and wait for it to finish. 3. Image y...
Depth Camera for Mac Users: Setting Up the OAK-D Pro in TouchDesigner
...nects. This page will briefly guide you through installing the prer ... camera. Click Initialize, wait for it to mark "Ready" (1), t ..., and darker areas are farther away. To gather both 'disparity' a ... depth.initialConfig.setConfidenceThreshold(240) depth.set...
Introduction
...hnology Lab, 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 Usin...
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
Spark AR provides a number of different template ... sure you select the object you want to edit:
Mobile VR - Getting Started Guide
...ou will find lots of immersive videos from creators around the worl ...vice. click here to visit Software There are many different t ...equire more effort, here we provide a list of different tools along ...s a list of useful links if you want to start exploring it. A-FRA...
Installing Unity
...his tutorial, we are going to guide you through the Unity installat ...re a few things you need to be aware of: Downloading and instal ...et a popup window asking if you want to open the Unity HUB, Select ...can choose Unity 2020, just be aware that your interface will look...
Importing and Placing 3D Models
...e. Select all the files you want to import to your project. Fo ...the Details panel on the right side of the screen. After selecting the building, you will be able to see many different properties of the object that can be changed. We are going to chan...
A circle following the mouse
...he new set of values between we want x to fluctuates. We have previously established that my circle x-axis extremities are between -0.5 and 0.5. Therefore your Math CHOP should now look like this: Replace the previous reference with this new set of va...
(MAC) How to use Phomemo Thermal Printer M834
...l the driver according to the guide. 2. Create Custom paper size If ... a thermal paper roll of 110mm wide. The height, however, should be ...instead, it is essential if you want to do auto-printing in the next step. Go to System Settings -> Printers & Sc...
Understanding Arduino hardware
...elsius, a range of values. 6. PWM pins You can see the symbol ~ next to some digital pins, those are PWM pins. For now, you can see them as analog output pins. For example, if you want to create a breathing light e ...part, Understanding Arduino software.
Using a Joy-IT TFT LCD Display
...lude <Adafruit_ST7789.h> // Hardware-specific library for ST7789 # ...ft.print(p, 6); tft.println(" Want pi?"); tft.println(" "); tft.print(8675309, HEX); // print 8,675,309 out in HEX! tft.println(" Print HEX!"); tft.println(" "); tft.setTextC...
How to use DFPlayer Pro to play MP3
...ack wire Connect L+ & L- if you want stereo audio File handling ...FRobot_DF1201S.h> #include "SoftwareSerial.h" SoftwareSerial DF1201SSerial(2, 3); / ...eonardo, you should not use SoftwareSerial. The Leonardo already h ...as a hardware UART on Serial1 (pins 0 & 1)....
Intro to Touchdesigner
About the software Touchdesigner is a programmi ...ng software popular amongst all kinds of ...uchdesigner is a node-based software, a type of visual programming ... all about handling images and videos. They help you modify, combin ... on your keyboard to access or hide the parameters window. This ...
Using the MAX9814 mic amplifier
...me = analogRead(MicPin); if (MicVolume > 400) { // If the volume is above this threshold a warning comes up in the Serial Monitor Serial.println("Loud noise"); delay(500); } else { Serial.println(MicVolume); } }