Close

3750 Results for "arduino"

  • Arduino required....

  • for any cool project right??Well, in this case I really think it will be needed, and here is why:The data we want to get into the SBC will be coming from GPS, 9DOF sensor, OBDII, and will be in a battery operated environment.For this I have chosen to...
  • Arduino Code

  • The current code, CCPCRv1, runs the following fixed routine. 0. Raise temp to 95C1. Stay at 95C for 120 seconds2. Stay at 95C for 15 seconds3. Drop temp to 55C4. Stay at 55C for 15 seconds5. Raise temp to 68C6. Stay at 68C for 45 seconds7. Raise...
  • Arduino Code

  • Software for ESP32: Gather motion data from gyroscope and accelerometer (translational acceleration in x/y/z and rotation rate around x/y/z). Calculate X/Y/Z position and roll/pitch/yaw angles by integrating over time. Drift of roll and pitch angles...
  • Arduino example

  • It was a pleasant surprise for me to know that somebody cared enough to make this sensor for themselves. Well, this is why it is open source hardware - anybody can make it. If you did, please let me know somehow. I want to know everything - which meter...
  • Arduino Example

  • This is an example Arduino sketch that keeps reading from channel 0 and printing the result on the serial console. #include #define ADC_I2C_ADDRESS 0x35 uint16_t readChannel(uint8_t channel) {     if (channel >= 12) {         return...
  • Arduino Pins

  • The ESP32 feather V2 pins that are used for the sensor monitoring:A4 - ADC1 (sensor 0)I37 - ADC1 (sensor 1)A3 - a reference VCC for the two current transformers. The code compares the A3 reference value with the values read on A4 and I37. The difference...
  • Arduino code

  • /*************************************************** DFPlayer - A Mini MP3 Player For Arduino *************************************************** This example shows the basic function of library for DFPlayer. Created 2014-8-28 By [Angelo qiao](Angelo.qiao@dfrobot.com)...
  • Arduino Sketch

  • // // Happy Halloween // by Hari Wiguna 2015 // // 01 - modify to work with Chinese knockoff // 02 - Draw Happy Halloween & Pumpkin Face // Wiring: // Arduino A4 --> OLED SDA // Arduino A5 --> OLED SCL // Arduino D2 --> OLED VCC // Arduino Gnd--> OLED...
  • Arduino code

  • The code we wrote for the sensor circuit is very straightforward (see Appendix). It basically reads the voltage belonging to each sensor. The voltage of the temperature circuit is then converted to degrees Celsius. For simplicity reasons the voltages...
  • Arduino Sketch

  • Here is the Arduino Sketch. Nothing fancy. It is a mix of my code, code fragments from other peoples projects as well as vendor sample code.#include #include // Enter a MAC address and IP address for your controller below.// The IP address will be dependent...
  • Arduino Code

  • For all of you who want to rebuild this at home.This sketch controls a 7-segment display as a gear indicator and simulates a keypress when corresponding data is being received through the Arduino's serial port.The display is able to show: r (reverse),...
  • Arduino code

  • /* Divergence: A wearable EMF detector with haptic and sonic feedback * By Afroditi Psarra http://afroditipsarra.com * * July 2014 * * Circuit: * Adafruit Flora * 2 handmade copper coils connected on analog pins A7 and A9 and grounded with 3.6 M Ohms...
  • Arduino IDE

  • #include #include #include #include #include #include // Temperature Stuff // Set GPIO for DS18B20 #define ONE_WIRE_BUS 2 // OneWire Instance OneWire oneWire(ONE_WIRE_BUS); // Use Dallas stuff DallasTemperature sensors(&oneWire); // Wifi Stuff const...
  • Arduino Code

  • Below is the code we used to make the Aninteractions jacket work. We started working with the code for the Florabrella (https://learn.adafruit.com/florabrella/code) found on the Adafruit website, and modified and removed this to make it suitable...
  • Arduino Code

  • //parts of this code have been scavenged from code created by: Michael Pilcher #include //manually calibrate your stage to find the values of xmove and y move for each objective you will be using int xmove = 12;//[12 (100x) 30 (40x) dp72] int ymove =...