<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: Shashank Tiwari</title>
    <description>The latest articles on DEV Community by Shashank Tiwari (@sankrobotics).</description>
    <link>https://dev.to/sankrobotics</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F475996%2F25b80b8c-321e-4142-9fc9-0935341c31a2.jpeg</url>
      <title>DEV Community: Shashank Tiwari</title>
      <link>https://dev.to/sankrobotics</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/sankrobotics"/>
    <language>en</language>
    <item>
      <title>Ultrasonic Sensor (HC-SR04) With Arduino Complete Guide</title>
      <dc:creator>Shashank Tiwari</dc:creator>
      <pubDate>Mon, 12 Oct 2020 04:56:33 +0000</pubDate>
      <link>https://dev.to/sankrobotics/ultrasonic-sensor-hc-sr04-with-arduino-complete-guide-4jga</link>
      <guid>https://dev.to/sankrobotics/ultrasonic-sensor-hc-sr04-with-arduino-complete-guide-4jga</guid>
      <description>&lt;p&gt;Vcc- Connect to 5V of positive voltage for power&lt;br&gt;
Trig- A pulse is sent from it for ranging more for object detection&lt;br&gt;
Echo-check the object has been detected or not. If the signal comes back means the object has been detected, if not object has not been detected.&lt;br&gt;
GND- It means Ground terminal, It completes the pathway of the power.&lt;/p&gt;

&lt;h1&gt;
  
  
  ULTRASONIC SENSOR
&lt;/h1&gt;

&lt;p&gt;This ultrasonic distance sensor provides steady and exact measurements of the distance between 2 cm and 450 cm. It has less than 15 degrees of focus and a range of almost 2 mm.&lt;/p&gt;

&lt;p&gt;Ultrasonic sound waves have an extraordinarily high pitch that can not be detected by humans &lt;/p&gt;

&lt;p&gt;This particular sensor transmits an ultrasonic sound that is around 40 kHz in frequency. The sensor has two main components-a transducers that generate an ultrasonic sound wave, while its echo is listened to by the other portion&lt;/p&gt;

&lt;p&gt;Ultrasonic Distance Measurement Principle :&lt;br&gt;
(&lt;a href="https://hackthedeveloper.com/ultrasonic-sensor-hc-sr04-with-arduino-complete-guide/"&gt;https://hackthedeveloper.com/ultrasonic-sensor-hc-sr04-with-arduino-complete-guide/&lt;/a&gt;)&lt;/p&gt;

</description>
    </item>
    <item>
      <title>LED Blinking Program For Arduino UNO </title>
      <dc:creator>Shashank Tiwari</dc:creator>
      <pubDate>Mon, 28 Sep 2020 02:22:15 +0000</pubDate>
      <link>https://dev.to/sankrobotics/led-blinking-program-for-arduino-uno-1eo1</link>
      <guid>https://dev.to/sankrobotics/led-blinking-program-for-arduino-uno-1eo1</guid>
      <description>&lt;h1&gt;
  
  
  LED Blinking Program For Arduino UNO
&lt;/h1&gt;

&lt;p&gt;Hello everyone, Now in this blog we are going to make LED Blinking Program for Arduino UNO, which is the basic project of the embedded system.&lt;br&gt;
Let’s puts some LEDs and resistors to work. In this project, we will use one led and some resistor to make our project perfect (LED Blinking Arduino UNO).&lt;/p&gt;
&lt;h2&gt;
  
  
  LED Blinking Arduino UNO Algorithm
&lt;/h2&gt;

&lt;p&gt;Before starting to write the algorithm of the project first know what is an algorithm. Basically Algorithm is a step-by-step method, which specifies a series of instructions to be executed to get the desired output in a certain order. &lt;/p&gt;

&lt;p&gt;Algorithms are usually generated independently of the underlying languages, i.e. in more than one programming language, an algorithm may be implemented.&lt;/p&gt;

&lt;p&gt;So, start writing the algorithm of our first project #1. Before going onto the algorithm part you should have a clear understanding of what is an Arduino UNO and basics parts.&lt;/p&gt;

&lt;p&gt;Turn on the LED 1&lt;br&gt;
Wait for a second&lt;br&gt;
Turn off the LED 1&lt;br&gt;
Repeat this process indefinitely&lt;br&gt;
Required Components For LED Blinking Project In Arduino UNO&lt;br&gt;
One led&lt;br&gt;
A Resistor&lt;br&gt;
One Bread Board&lt;br&gt;
Wires&lt;br&gt;
Arduino&lt;br&gt;
USB Cables&lt;/p&gt;
&lt;h2&gt;
  
  
  Arduino Code For LED Blinking
&lt;/h2&gt;

&lt;p&gt;Here is the code for LED Blinking Program.&lt;br&gt;
lED BLINKING&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;//initialize variables (for pin)
int ledPin = 11;

void setup()
{
  //set the pin mode to output 
  pinMode(ledPin, OUTPUT);
}

void loop()
{
    // send a HIGH(ON) signal to ledPin which is pin 11
    digitalWrite(ledPin, HIGH);
    delay(1000);
    digitalWrite(ledPin, LOW);
    delay(1000);
}
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;In void setup() at the digital, I/O pins are set to outputs because we want them to send current to the LED on demand. We specify when to turn led using the digitalWrite() function in the void loop() section of the sketch.&lt;/p&gt;

&lt;h2&gt;
  
  
  Use Variables
&lt;/h2&gt;

&lt;p&gt;In a computer program, data is stored using variables. For instance, in Project (LED BLINKING ARDUINO UNO)   we used the delay(1000) feature to hold the LED Turns on.&lt;/p&gt;

&lt;p&gt;For more click here -&amp;gt;(&lt;a href="https://hackthedeveloper.com/led-blinking-arduino-uno/"&gt;https://hackthedeveloper.com/led-blinking-arduino-uno/&lt;/a&gt;)&lt;/p&gt;

</description>
    </item>
    <item>
      <title>What Is An Arduino UNO? – Beginner’s Guide</title>
      <dc:creator>Shashank Tiwari</dc:creator>
      <pubDate>Sun, 27 Sep 2020 07:42:58 +0000</pubDate>
      <link>https://dev.to/sankrobotics/arduino-uno-3b45</link>
      <guid>https://dev.to/sankrobotics/arduino-uno-3b45</guid>
      <description>&lt;h1&gt;
  
  
  What Is An Arduino UNO? – Beginner’s Guide
&lt;/h1&gt;

&lt;p&gt;If you want to play with different electronic components but you don’t have enough knowledge of how to work with them, then Arduino is what you need to get started … So what’s an Arduino UNO?&lt;br&gt;
Hello everyone, Welcome to my new Embedded System and Robotics blog. Whenever you think of the word Robotics, one thing that would also strike your mind is how the robotics work? How is the Robotics operated?&lt;/p&gt;

&lt;p&gt;Arduino is essentially an open-source stage used for the construction of hardware ventures. Arduino consists of both a physically programmable circuit board (regularly referred to as a microcontroller) and a bit of programming, or IDE ( Integrated Development Environment) which suddenly spikes in demand for your PC, used to compose and transfer PC code to the Arduino UNO physical board. for info click here (&lt;a href="https://hackthedeveloper.com/what-is-an-arduino-uno/"&gt;https://hackthedeveloper.com/what-is-an-arduino-uno/&lt;/a&gt;)&lt;/p&gt;

</description>
      <category>uno</category>
    </item>
  </channel>
</rss>
