Advanced Search
Search Results
117 total results found
How to control Arduino without using delay()
...tors, like giving each person a watch and ask them to action based ... on their own watches. Wiring There are three wires to connect on the Arduino side: LED short pin (-) to Ground LED long pin (+) to PWM Digital pin (D3), via 220Ω resistor Code In thi...
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 install libraries
...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...
How to send data to p5.js from Arduino
...ble: function openPort() { // wait for the serial.open promise to return, // then call the initiateSerial function serial.open().then(initiateSerial); // once the port opens, let the user know: function initiateSerial() { console.log("port ...
Depth Camera for Mac Users: Setting Up the OAK-D Pro in TouchDesigner
... camera. Click Initialize, wait for it to mark "Ready" (1), t ..., and darker areas are farther away. To gather both 'disparity' and 'rgb' data, replace the code in Text DAT with the following: import depthai as dai def onInitialize(oakDeviceOp, ...
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 board and port from "Tools". For ...
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?
What is Unreal Engine?
...Unreal Engine is a powerful software that helps creators build vir ...ts. They can create interactive walkthroughs, realistic visualizations, and virtual tours of their designs, providing a more immersive and engaging experience for clients and viewers. ...
Types of Lighting and Lighting Mobility
... across large surfaces, such as walls or floors, and creating soft shadows. 5) Sky Lights: Sky lighting in Unreal Engine is a technique used to simulate global illumination by capturing the lighting information from the sky. This approach enhances the over...
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:
Installing Unity
...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 ...Now you are all set and the software is ready for you to create yo...
Introduction to the PyCharm IDE
...The setup page also asks if you want to create a main.py welcome script; for this project, you should keep this option checked. This will have PyCharm create a basic Python file for you instead of just preparing a blank directory. Once the setup is complet...
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...
How to send data to Processing from Arduino
...arameters //map(theVariableYouWantToMap, min.ValueOfRawData, max ...d max. value is 1023. //and I want to map the background colour from black to white, 0(black) - 255(white) float BW = map(value1,0, 1023, 0, 255 ); //create a variable to contain the...
(MAC) How to use Phomemo Thermal Printer M834
...instead, it is essential if you want to do auto-printing in the next step. Go to System Settings -> Printers & Scanners Click the drop down menu of Default paper size Select your new custom paper size 4. Set up Auto-Printing with Automator We have a t...
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); //RX TX DFRobot_DF1201S player; void setup(void){ Serial.begin(115200); DF1201SSerial.begin(11...
How to make Animation on NeoMatrix
... +5V to 5V GND to GND Library WarningDownload version 1.9.0 or b ...started The example shows the upward arrow first and then the anim ... colour-changing pattern. The upward arrow is for identifying the orientation of your matrix. #include <Adafruit_GFX...
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 ...VideoDeviceIn TOP may display a warning: "Resolution limited to a max of 1280x1280 with Non-C...
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); } }