Advanced Search
Search Results
154 total results found
What equipment is available?
...iPad Air iPod Touch Samsung Galaxy Tab Smartphone including: ...Samsung S8 Human Interface Devices incl ... Elo Touch 7" Screen Elo Touch 10" Screen DMX Devices including: DMX Dimmer Packs RGB LED PAR56 USB ...to DMX interfaces DMX LED driver Ot...
Hello World
...t the "type" of Python file you want PyCharm to create. For this example, let's name the file hello ...that the program finished with exit code 0, as we'd expect no errors to occurr seeing ...ts of print(), we provide the text we want Python to print. This ...
Steam VR setup Tutorial #3 - Interactable object setup
...ts to more functional and complex projects. In previous pages, we ... already explored how to set up the scene y ...ou are expected to use for this tutorial. ...to learn how to create two "throwable" objects but first, we are g ... create a plinth to put the throwable objectS on so it is easier t...
AR with Unity - Step #2 - Unity project setup
...ts to more functional and complex projects. Aims This tutorial ...9.2.0f1) is a quite straight forward process, first, let's create ...ect settings panel, the easiest way to do it is by opening the bui ... Augmented Reality Supported" box found inside the XR settings se...
Command Line Tools & Utilities
A Command Line Interface is a way of interacting with a computer ...mands in the form of lines of text. These commands interface with ... your operating system and hardware to perform complex and intensive operations. Ther ...useful Free and Open Source Software (FOSS) available online that ...
How to image a Raspberry Pi
...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 ...at. Open Raspberry Pi Imager v1.8.4, you can format the SD card d ...ting System - Erase Click Next and wait for it to finish. 3....
What are GPIO pins on Raspberry Pi?
... Board and Boardcom (BCM). For example, the board pin 8 and BCM pin 14 are referring th ... as Pin 1, left to right then next line, and the bottom right wil ...can also use a jumper cable to extend all pins to a breadboard. ...ferent libraries but doing the exact same thing. 1. gpiozero The ...
How to power the Raspberry Pi Pico
...e Raspberry Pi Pico The easiest way to power a Pico is through the ...nput voltage can vary between 1.8V to 5.5V. This voltage is used ...and not drain the battery. LM7805: The LM7805 is a popular voltage regulato ...or that provides a stable and fixed output voltage of +5 volts. I...
DFRobot Sensor Testing: HX711 Weight Sensor, Voice Recorder Module Pro, Speech Synthesis Module V2
...rs, we have some tips for you. HX711 Weight Sensor This sensor ca ...to install the library DFRobot_HX711_I2C library which is availab ...he Arduino source file DFRobot_HX711_I2C.h will prompt an error i ...n the console. To fix it, you simply need to remove t...
Using L293D IC for motors
... from 4.5 V to 36 V. It can be extremely hot. When they get overh ...sometimes it comes with a gearbox which will slow down the speed ...or. Taking a 12V DC motor for example, we connect the red wire o ...IC pin1 & 9). Get started This example code will let you test the...
Using Arduino Leonardo to send USB MIDI data
... applications like MadMapper, Max and Ableton Live. In order to u ...ion of the basic MIDIUSB write example, by wrapping the noteOn an ...Sending note on"); noteOn(0, 48, 64); // Channel 0, middle C, ...nding note off"); noteOff(0, 48, 64); // Channel 0, middle C, ...
Using an MFRC522 RFID reader
...FID system to open a door. For example, only the person with the ...h each identification and a two-way radio transmitter-receiver as ... of that model. SDA - Digital 10 (SS) SCK - Digital 13 (SCK) MOS ...g started We will be using the example code, DumpInfo, from the l...
How to use a Hall Effect Sensor
...net or an electromagnet with its output varying in proportion to the strength of the magnetic field being detected. Wiring left to 5V (Power) middle to GND right to PIN2 via 10K resistor Getting started Th ...tln(hallSensorState); delay(100); }
Using a Force Sensor
...5V) Ground (one end to GND with 10K resistor) Signal (GND side to ...A0) Getting started This example turns on the built-in LED ...alue; //sensor value range: 0-1023 //200 is light touch //500 i ...s medium touch //800 is hard touch int limit = 20...
Using a Membrane Potentiometer (SoftPot)
...resistance. It consists of a flexible membrane with resistive and ...o the position. Thin and Flexible: Made from polymer films, t ...V Pin2 (middle pin) to A0 & via 10k resistor to GND Pin3 (the one ... to GND Getting started This example turns on the built-in LED ...
Using a HC-SR04 distance sensor
... the sound takes to come back, exactly like bats use to fly in th ...if the ping sound is reflected away from the sensor by an a diverg ...le more accurate ones are over £100. Wiring Wiring up the sensor i ...o install a library here. This example turns on an LED when the d...
How to use a Flat Vibration Switch
... contact with the second pin. So when there's a bump, the two pins will act like a closed switch. When everything is still, the switch is open. Wiring one pin to GND & D2 via 10k resistor one pin to 5V Gett ...Write(ledPin, LOW); } delay(100); }
Using a Vibration Motor
...ny other NPN transistor) 0.1µF capacitor 1N4001 diode 1KΩ resistor It is a quite complex circuit but try your best to fo ...orPin, HIGH); //vibrate delay(1000); // delay one second digi ...LOW); //stop vibrating delay(1000); //wait 50 seconds. }