Close

405 Results for "%E3%80%8A%EC%B5%9C%EC%A0%80%EA%B0%80 O1O%CE%9E5793%CE%9E7458%E3%80%8B %EA%B0%95%EB%82%A8%EC%95%84%EC%9D%B4%EB%A6%B0%EC%8B%9C%EC%8A%A4%ED%85%9C%E3%86%8B %EA%B0%95%EB%82%A8%EC%95%84%EC%9D%B4%EB%A6%B0%EC%85%94%EC%B8%A0%EB%A3%B8applause%EA%B0%95%EB%82%A8%EC%95%84%EC%9D%B4%EB%A6%B0%EC%8B%9C%EC%8A%A4%ED%85%9C%EA%B0%95%EB%82%A8%EC%95%84%EC%9D%B4%EB%A6%B0%EC%8B%9C%EC%8A%A4%ED%85%9C%EC%8B%A0%EC%82%AC%EC%95%84%EC%9D%B4%EB%A6%B0%EC%A3%BC%EB%8C%80caught %EA%B0%95%EB%82%A8%EC%95%84%EC%9D%B4%EB%A6%B0%E3%8F%87%E3%85%97%EA%B0%95%EB%82%A8%EC%95%84%EC%9D%B4%EB%A6%B0queer"

  • Have data in USB with AD8232 and Wemos

  • To detect the Wemos, you have to add library on arduino. This link explains how to install them. http://www.instructables.com/id/Programming-the-WeMos-Using-Arduino-SoftwareIDE/ Arduino Leonardo pin (Arduino that I used previously) is different from...
  • 2nd step : Code

  • int led = 9;           // the PWM pin the LED is attached toint brightness = 0;    // how bright the LED isint fadeAmount = 100000000;    // how many points to fade the LED byint photocellPin = 0; //...
  • Arduino Sketch

  • #include#include#include "math.h" // 7Seg Module connection pins (Digital Pins)#define CLK 8#define DIO 7TM1637Display display(CLK, DIO); const int R[] = {2, 3, 4, 5}; //Rellay output pinsint del[5]; //RonDellay Mapped valueint A[] = {A0, A1}; //potentiometer...
  • Step 3 Reporting Results

  • While the sketch from Step 2 will run a stepper, it would be desirable to have some information reported to the screen. This makes it easy to experiment and build intuition. Let's add some code to report speed and position every second. To begin, load...
  • Arduino Code, by Jim Lindblom

  • /* HID Joystick Mouse Example by: Jim Lindblom date: 1/12/2012 license: MIT License - Feel free to use this code for any purpose. No restrictions. Just keep this license if you go on to use this code in your future endeavors! Reuse and share. This is...
  • Pressure sensor

  • First we begin with a weight sensor. ( A little advice: check that everything is functional because in our case we had to weld cables back in place). In order to build a scale using this weight sensor you need two plaques (ours is made out of thin wood...
  • The code

  • I will try to comment the code used for the sensor-box, this is the latest version consider that there's 6 version. The weirdest problem i've encountered is the heap fragmentation, as a self learning guy, I've wildly used Strings (especially in a past...
  • Window Fan Controller

  • // Temperature Controler for window fan// Written by mike, public domain/*-------------------------------------------------------------------------------------- Includes--------------------------------------------------------------------------------------*/#include...
  • CODE

  • Here's the code that was used in this build, and its a simple one: it measures analog voltage using a voltage divider circuit and displays the corresponding voltage value on a 128x64 OLED screen using the Adafruit SSD1306 library.#include #include #include...
  • Spectrum Analyser Code

  • Preparing the Digispark and Arduino IDEThe Digispark is not the easiest Arduino development board to use. There is a custom version of the Arduino IDE you can use but it is old (version 1.06!). Better to bite the bullet and use the latest Arduino IDE...
  • Flashing the Bootloader

  • The keyboard module is based on the ATMEGA32U4.  You can flash thebootloader using the ISP 6 pins connector on the back side of the PCBYou will need to use a bootloader .HEX file which is compatible with the ATMEGA32U4 16 MHZ crystal version. (5v...
  • Front sub frame and steering position sensor mount

  • This strange looking frame goes at the very front of the robot and performs two important functions. One is to mount a load of the sensors and antennae for the control system, and the other to mount an everyday 10K potentiometer to measure the steering...
  • Motion sensor

  • Concerning the motion sensors, you just have to wire it to the arduino (same as before) and thanks to the code you’ll be able to transform it into data. 1 if something passes in front of the sensor and 0 if there’s nothing in front of the sensor. Then...