Advanced Search
Search Results
113 total results found
Using a Force Sensor
... pinMode(13, OUTPUT); } void loop() { sensorValue = analogRead(sensorPin); Serial.print("Force Level: "); Serial.println(sensorValue); if (sensorValue > limit) { digitalWrite(13, HIGH); } else { digitalWrite(13, LOW); } delay(100); }
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); }
Radio Communication: How to use APC220 Radio Data Module
... to 5V TXD to 8 RXD to 9 SoftwareSerial OnlyUse SoftwareSerial on both Arduinos. Never ... TX if they use different logic levels (some APC220 modules are 3.3V- ...rees, one by one. #include <SoftwareSerial.h> SoftwareSerial radio(8, 9); // RX, TX ...
3D Geometry and Parametric Design
...pace and making this content viewable in low-fi VR headsets. I ha ...ve been making a piece of software using openFrameworks to explo ...elling and explain how this software can be used as a tool to expl ...elow is a screenshot of the software: Code available here. Aims ...
How to control Arduino without using delay()
...0; // will store last time LED was updated // constants won't ch ... // the interval at which you want to blink the LED. unsigned ...tors, like giving each person a watch and ask them to action based ... on their own watches. Wiring There are three wi...
How to get started with Face Tracking in Spark AR
Face Tracking in Spark AR Watch this video which explains the basic features of the Face Tracker in Spark AR. There are multiple different starter templates in Spark AR that make use of face tracking. To make your development easier, choose a template t...
How to get started with World Effects in Spark AR
World Effects in Spark AR Watch this video which explains the basics of World Effects in Spark AR. There are multiple different starter templates in Spark AR that make use of world effects. To make your development easier, choose a template that is most...
Using a Sparkfun MP3 Trigger
...fun electronics that provides a way to play MP3 files from a Micro ...s from the SD card via Serial. Warning If you are using Mac OS X ... Serial.write( i ); // Wait a bit delay( 1000 ); } } Sample MP3 files To help you get up and running...
UE Installation and Set-up
...finishes, run the installer and wait for it to complete. Creat ...ect which Engine components you want to install. This is where you .... Click the Install button and wait for the installation to complete. Depending on your system specifications and I...
3D Scanning a face for MetaHuman
...se a hairband to hold any hair away from the forehead. Note: This ... from different angles. The software will then build a model from ...o the process entirely. We also want to crop our scan to save the ...ptured. After this, you should wait for the model to generate. Th...
How to hack a brainwave EEG toy - Force Trainer II
What is a NeuroSky Brainwave? NeuroSky Brainwave is a technology that uses EEG ...roSky chip can be found on brainwave-controlled toys such as the S ...tar Wars Force Trainer. The toy can be ...orial, we are using an UNO, hardware Serial (pins 0 & 1) is shared...
OculusQuest - Setting up development enviroment in Unity
...t grab and haptics. The easiest way to get the Oculus Integration ... You will then be asked if you want to restart the Unity editor, ...other message asking you if you want to upgrade the spatializer plugin, hit Upgrade and then hit Restart. Onc...
Accessibility Statement
...s accessible as possible and we want as many people as possible to ...te using speech recognition software listen to most of the websit ...accessible to screen reader software old video content is missing ...accessible to screen reader software or using just a keyboard Fee...
(MAC) Automatic printing with Automator
... programming knowledge or don't want to do a lot of coding. One of ...ter Choose the folder where you want to put all your printing file ...and choose the printer that you want to use as the default printer. 5. Save the Script 6. Quit Automator You must ...
How to connect a push button or switch
...hes? Buttons and switches are a way of opening and closing a circu ...ir position, they can be a good way of indicating the mode of a de ...vice, such as playing video forward or backwards. Micro switches can with mo ...e( ledPin, LOW ); } } If you want to add a toggle functionality...
UE Foliage
...for the Megascans. The pack we want to import is called the Megas ... which trees/bushes/grasses you want to use by clicking the +Folia .... However, if you feel like you want to add more assets to fill out your scene, the foliage packs also contain small...
Using Quixel Materials
...lenging to find exactly what we want. It is important to think abo ...ce you find a material that you want to use, select it, download i ...hese values to get the size you want on your project. After changing these values and saving the material, we will ...
How to use MatrixPortal M4
... without needing additional hardware. Power: Can be powered via US ... by Adafruit, optimized for hardware projects like controlling sen ...layio import Bitmap # If there was a display before (protomatter, ... far right if it's gone all the way off screen. This goes in a fun...
Combining codes & circuits
...ept one code at one time. If we want it to do multiple things at t ...s the distance value, and if we want to use the data, we will need ...if statement is the most common way to make a simple interaction between two components. For example: if(distan...
Using a Monochrome 1.3" 128x64 OLED display
...mage into bitmap code image2cpp was created by GitHub user javl an ...d provides a handy way to create bitmaps without inst ...alling any additional software. Know more here. Upload your ...think about how many frames you want and how many frames can Ardui...