Advanced Search
Search Results
185 total results found
How to control Arduino without using delay()
...nds) specified as a parameter. (1000 milliseconds = 1 second.) delay() is very common ...e same result of blinking every 1 second. // constants won't chan ...0; // will store last time LED was updated // constants won't ch ...ange: const long interval = 1000; // interval at which to bl...
Controlling an actuator with a N-channel Mosfet
...r Field-Effect Transistor) is a type of transistor used to switch or ...ctronic circuits, especially in digital and analog systems. Struct ...hin insulating layer of silicon dioxide (SiO₂). Operation A small ...ing the level of current flow). Types There are two main types of MO...
Arrays
...in an ellipse function var x = 100; var y = 100; function setup() { cre ... p5 Editor Now what if we wanted to have a lot of circles, l ...iables for every ellipse: var x1 = 20; var y1 = 100; var x2 = 213; var y2 = 209; var x3 = 100;...
Unity for Beginners Workshop
...ng 3D environment. Before attending the workshop, you will need t ...o complete a few tasks: Task 1 - Installing Unity Task 2 - Watch and follow the video tutoria ... and prepare all the assets you want to use (Images and sound file ...s). Task 1 - Installing Unity The followin...
How to make Animation on NeoMatrix with Processing
...8x8 Adafruit NeoMatrix. Wiring WarningIf you have a bigger matrix ...d with Arduino and the matrix. DIN to Pin3 +5V to 5V GND to GND ... Library WarningDownload version 1.9.0 or below of Adafruit Neopix ... matrix so that the x and y coordinates sent from Processing can b...
Raspberry Pi Image: Retropie for Reviving Vintage Games
...th the RetroPie image and add additional software ware later. It's up to you. We are ...ed tutorial for imaging the Pi. 1. Using Raspberry Pi Imager Ra ...buttons on your controller accordingly, one by one. If you want to skip any button configurat...
Using the serial monitor and serial logger
...ion? Serial communication is a type of communication between two de ...ication is a sequence of binary digits (0s and 1s) that convey information. Ser ...nitor on the Arduino is able to display messages the Arduino board ...e a seperate USB serial and hardware serial, and you cannot direct...
How to use a relay module
...by a signal between low-powered digital electronics and high-power ... It is handy when the thing you want to control requires higher po ... In this tutorial, I will use a water pump and a 1-channel 5V relay module as an e ...one you have. Relay module has different models providing 1/2/4/6...
How to use a EMG Muscle Sensor
...connection begin Serial.begin(115200); pinMode(13, OUTPUT); } void loop() { ... if(timer < 0) { timer += 1000000 / SAMPLE_RATE; i ...G_THRESHOLD) { digitalWrite(13, HIGH); } else { digit ...alWrite(13, LOW); } Serial.print...
How to control Arduino without using delay()
...e the FireTimer with a delay of 1000 milliseconds ledTimer.begi ...n(1000); } void loop() { // Chec ...the code to keep the LED on for 1 second and off for 2 seconds us ...eTimer with an initial delay of 1 second (LED ON duration) ledT ...imer.begin(1000); } void loop() { // Chec...
What are GPIO pins on Raspberry Pi?
...le, the board pin 8 and BCM pin 14 are referring the same pin. Nu ...nguages and libraries you use. 1. BCM numbering BCM numbering ma ...d on the Raspberry Pi, like GPIO14. It is used in most programmin ...from the top left corner as Pin 1, left to right then next line, ...
How to use Raspberry Pi Camera Module 3
...ra Module 3? This tutorial will walk you through setting up and us ... Sensor Sony IMX708 Resolution ... 12MP (4608 × 2592) ... ✅ Yes (PDAF or EDOF depending on model) HDR...
How to get started with Textures and Materials in Spark AR
...ures and Materials in Spark AR Watch this video which explains th ...s and materials in other 3D software like Blender, Cinema4D, and U ..., they probably work in similar ways. However, you should always keep in mind that Spark AR is ... a separate software and might have implemented di...
UE Installation and Set-up
...gine page. Select the license type that best matches how you inten ...d to use UE. There are two types of licenses available: Publi ...tors, if you plan to make other types of content. You can learn m ...ore about the different kinds of licensing avail...
How to use 7-Segment LED Backpack
... for these big bright 7-segment displays. These 7-segment displays normally require 13 pins (5 'characters' and 8 tot ...k solves the annoyance of using 13 pins or a bunch of chips by ha ...you like). The driver chip can 'dim' the entire display from 1/16 ...
Bonus round: putting an existing Unity project into git
...rrectly. In the project, go to Edit > Project Settings > Editor and check that your settings ...liar with the command line, the way to use it is to type a command, and then press Enter ...command - cd stands for "change directory". The command looks lik...
Making a website for your HTML, JS, CSS or p5.js files
...something goes wrong, you can always go back to when it did work! Step 1: Signing up for GitHub Go to h ...hrough these. Very important!!!1!!1! The way that GitHub pages work is that ...). For instance, if my username was 'jonny' my GitHub pages URL wi...
Touch sensor - with No Sensor!
...f all conductive materials including tinfoil, banana, plant, penci ... tutorial, we will show you two types of Capacitive Touch Sensing: a ...curacy without ANY external hardware. CapacitiveSensor library wil ...int of the physical circuit, reading might be sometimes unreliable...