Quantcast
Channel: Arduino Tutorials – MiniArduino

Arduino Tutorial for Beginners 2 – Arduino Uno Components (Microcontroller, Pins, Clock & Power)

$
0
0



Welcome to this video on Arduino Tutorial for Beginners. This video provides the Introduction about Arduino Uno Components like Microcontroller, Pins, Clock & Power. Arduino is an open-source hardware platform based on an Atmel AVR 8-bit microcontroller and a C++ based IDE. Arduino is the go-to gear for artists, hobbyists, students, and anyone with a gadgetry dream. Arduino microcontrollers are programmed using the Arduino IDE (Integrated Development Environment). Arduino IDE Can be downloaded for free from http://arduino.cc/en/Main/Software
Arduino programs, called “sketches”, are written in a programming language similar to C and C++. Many sensors and other hardware devices come with prewritten software – look on-line for sample code, libraries (of functions), and tutorials. Learn the Arduino platform and programming language to create robots, interactive art displays, electronic gadgets and much more.

#ProgrammingKnowledge #Arduino #ArduinoTutorial
———————-Follow———————————————
My Website – http://www.codebind.com
My Blog – https://goo.gl/Nd2pFn
My Facebook Page – https://goo.gl/eLp2cQ
Google+ – https://goo.gl/lvC5FX
Twitter – https://twitter.com/ProgrammingKnow
Pinterest – https://goo.gl/kCInUp
Text Case Converter – https://goo.gl/pVpcwL
——————Facebook Links —————————————-
http://fb.me/ProgrammingKnowledgeLearning/
http://fb.me/AndroidTutorialsForBeginners
http://fb.me/Programmingknowledge
http://fb.me/CppProgrammingLanguage
http://fb.me/JavaTutorialsAndCode
http://fb.me/SQLiteTutorial
http://fb.me/UbuntuLinuxTutorials
http://fb.me/EasyOnlineConverter

source


Colocar Imagenes fotos Pantalla nokia 5110 Arduino tutorial paso a paso

$
0
0



En este video explico como colocar imagenes de una forma sencilla en la pantalla de nokia 5110 usando nuestro arduino.
Tambien se muestra como usar y como conectar la pantalla al arduino.
Este preocedimiento es valido para cualquier arduino.

Codigos y Programas necesarios:
https://mega.nz/#F!YVIVkQCT
https://www.achicarimagenes.com.ar/index.php
libreria: https://mega.nz/#F!cZgBUAJD

Instagram: @Kelvindga20

source

How HC-SR04 Ultrasonic sensor works – Arduino Tutorial

$
0
0



This video is about How How HC-SR04 Ultrasonic sensor works

It emits an ultrasound at 40 000 Hz which travels through the air and if there is an object or obstacle on its path It will bounce back to the module. Considering the travel time and the speed of the sound you can calculate the distance. The HC-SR04 Ultrasonic Module has 4 pins, Ground, VCC, Trig and Echo.

::::::::::: SUPPORT CHANNEL ========

Please Donate To Help Me Afford New Equipment And Software To Make My Videos More : https://goo.gl/1m8Dg2

→ Don’t forget to subscribe!

🌟Love you all! 💕

Song: MBB – Fresh (Vlog No Copyright Music)
Music provided by Vlog No Copyright Music.
Video Link: https://youtu.be/JSqwkbsvkJ0

source

DIY Hardware KeyLogger – Arduino Tutorial

$
0
0



👉👉Check out MALTRONIC’s WiFi KeyLoggers ⌨ https://maltronics.com/collections/wifi-keyloggers?utm_source=yt&utm_medium=vid&utm_campaign=diyk

Links to buy hardware used: https://maltronics.com/blogs/news/make-your-own-wifi-keylogger-with-arduino

Github page: https://github.com/spacehuhn/wifi_keylogger
Spacehuhn twitter: https://twitter.com/spacehuhn

———————————————————————————————-
Check out my site: http://www.seytonic.com
Follow me on twitter: https://twitter.com/seytonic
Discord server: https://discord.gg/seytopia

source

Arduino Tutorial for Beginners 3 – How to Install Arduino IDE on Windows 10 + First Sketch

$
0
0



Welcome to this video on Arduino Tutorial for Beginners. This video shows How to Install Arduino IDE on Windows 10 + How to Upload a Sketch to an Arduino.

This video is created by Anh Quân Tống – https://www.youtube.com/anhquantong

Arduino is an open-source hardware platform based on an Atmel AVR 8-bit microcontroller and a C++ based IDE. Arduino is the go-to gear for artists, hobbyists, students, and anyone with a gadgetry dream. Arduino microcontrollers are programmed using the Arduino IDE (Integrated Development Environment). Arduino IDE Can be downloaded for free from http://arduino.cc/en/Main/Software
Arduino programs, called “sketches”, are written in a programming language similar to C and C++. Many sensors and other hardware devices come with prewritten software – look on-line for sample code, libraries (of functions), and tutorials. Learn the Arduino platform and programming language to create robots, interactive art displays, electronic gadgets and much more.

#ProgrammingKnowledge #Arduino #ArduinoTutorial
———————-Follow———————————————
My Website – http://www.codebind.com
My Blog – https://goo.gl/Nd2pFn
My Facebook Page – https://goo.gl/eLp2cQ
Google+ – https://goo.gl/lvC5FX
Twitter – https://twitter.com/ProgrammingKnow
Pinterest – https://goo.gl/kCInUp
Text Case Converter – https://goo.gl/pVpcwL
——————Facebook Links —————————————-
http://fb.me/ProgrammingKnowledgeLearning/
http://fb.me/AndroidTutorialsForBeginners
http://fb.me/Programmingknowledge
http://fb.me/CppProgrammingLanguage
http://fb.me/JavaTutorialsAndCode
http://fb.me/SQLiteTutorial
http://fb.me/UbuntuLinuxTutorials
http://fb.me/EasyOnlineConverter

source

Simulador de Arduino Uno – UnoArduSim Tutorial 01 – Descarga Software Portable

$
0
0



Dejamos este tutorial de inicio para el simulador UnoArduSim.
Descarga el Programa:

https://mega.nz/#!lwoSkaTY!ELN5IzE7NliUPCxCzPdlkmZk9K9QKNxOugS7YK3K_tk

ION Robótica Aplicada

https://www.facebook.com/IonRobotica

¡NO OVIDES SUSCRIBISTE!!!

source

Arduino Tutorial for Beginners 6 – Read Data from Arduino Serial Monitor

$
0
0



Welcome to this video on Arduino Tutorial for Beginners. This video shows How to Read Data from Arduino Serial Monitor. All Arduino boards have at least one serial port (also known as a UART or USART). Arduino IDE’s has built-in Serial Monitor. In Arduino the two LEDs near the USB connector blink when data is transmitted
RX blinks when the Arduino is receiving data.
TX blinks when the Arduino is transmitting data.

Serial.println(value);
Prints the value to the Serial Monitor on your computer
pinMode(pin, mode);
Configures a digital pin to read (input) or write (output) a digital value
digitalRead(pin);
Reads a digital value (HIGH or LOW) on a pin set for input
digitalWrite(pin, value);
Writes the digital value (HIGH or LOW) to a pin set for output

This video is created by Anh Quân Tống – https://www.youtube.com/anhquantong

Arduino is an open-source hardware platform based on an Atmel AVR 8-bit microcontroller and a C++ based IDE. Arduino is the go-to gear for artists, hobbyists, students, and anyone with a gadgetry dream. Arduino microcontrollers are programmed using the Arduino IDE (Integrated Development Environment). Arduino IDE Can be downloaded for free from http://arduino.cc/en/Main/Software
Arduino programs, called “sketches”, are written in a programming language similar to C and C++. Many sensors and other hardware devices come with prewritten software – look on-line for sample code, libraries (of functions), and tutorials. Learn the Arduino platform and programming language to create robots, interactive art displays, electronic gadgets and much more.

#ProgrammingKnowledge #Arduino #ArduinoTutorial
———————-Follow———————————————
My Website – http://www.codebind.com
My Blog – https://goo.gl/Nd2pFn
My Facebook Page – https://goo.gl/eLp2cQ
Google+ – https://goo.gl/lvC5FX
Twitter – https://twitter.com/ProgrammingKnow
Pinterest – https://goo.gl/kCInUp
Text Case Converter – https://goo.gl/pVpcwL
——————Facebook Links —————————————-
http://fb.me/ProgrammingKnowledgeLearning/
http://fb.me/AndroidTutorialsForBeginners
http://fb.me/Programmingknowledge
http://fb.me/CppProgrammingLanguage
http://fb.me/JavaTutorialsAndCode
http://fb.me/SQLiteTutorial
http://fb.me/UbuntuLinuxTutorials
http://fb.me/EasyOnlineConverter

source

Bluetooth Module HC-05 with Arduino | Connections & Coding tutorial

$
0
0



In this video, I have shown how to connect Bluetooth Module HC-05 with Arduino on the breadboard. I have explained Arduino Bluetooth HC-05 circuit diagram, pin description & arduino Bluetooth programming to control LED from the android phone through Arduino Bluetooth app.
Download link for the circuit and Arduino code for HC-05 module
https://drive.google.com/uc?export=download&id=1Vfq4p9gQqev7Pcn1wg0LHr7LtOxiE8zA

In this Arduino HC 05 tutorial, I have also discussed the arduino bluetooth code for simple arduino bluetooth projects to explain how data send from Bluetooth module to Arduino and how to pair HC05 with Android smartphone.

#HC05toArduino #HC05BluetoothModule %TechStudyCell

This is a very basic Arduino Bluetooth tutorial where I have controlled load like LEDs and DC motor from the smartphone. In the upcoming videos, we will see how to control different AC load from the smartphone through Bluetooth.

After watching the complete video you can easily design the circuit and write the Arduino code for Bluetooth module as per your requirement.

*********************************************************************
If you love watching my videos and found it useful, then please donate me at PayPal, so that I can do it forever and better then before.

http://www.paypal.me/sdaspay

You can also send it through UPI
UPI I’d – subhajit.das.bank@okaxis

Thanks for your Support.
**********************************************************************
If you have enjoyed the video please hit the like button and share it with your friends. For more such videos don’t forget to SUBSCRIBE to our channel and please do share your feedback in comment sections. Thank you for your Support.

Find us on Facebook: https://www.facebook.com/techstudycell/

Other useful videos:

Arduino Tutorial for Beginners

How to make LED Chaser circuit using Arduino in 6 minutes with code

How To Test All Electronic Components with Multimeter

How to calculate resistor value for LEDs in circuit @9V and 12V


source


I2C tutorial in 5 minutes + Arduino & Raspberry Pi implementation. Electronics Crash course # 13

$
0
0



My FREE introduction to robotics course- https://tinkerspark.teachable.com
Full Video article: http://tinkerspark.org/i2c_tutorial
Facebook- https://www.facebook.com/tinkerspark1/
Twitter- https://twitter.com/saraltayal
Website: https://tinkerspark.org
___
Video Article-

I2C in 3 mins

I2C is a communication protocol that is used to transmit information between electronics. It is used in professional consumer goods, and hobby projects as well.
We can connect 1008 devices within a communication loop and only use 2 wires
It was developed by philips in 1982 to standardized communication between the cpu and peripherals inside its audio and video appliances. Since then the protocol has been periodically updated since then and now can support up to 3.2 megabit speeds
Now lets understand how it works.
Uses 2 wires to communicate information. These are Serial data- SDA, & Serial clock-SCL
It supports multiple devices on one loop and multiple ‘masters’
I2C messages are sent as messages. Now each message is broken into individual frames or segments which are responsible for different things.
First we have the start condition,
Followed by our address frame where i2C sender(master) communicates the recipient of the message (Slave)
Followed by a read/write bit which states if the sender is sending information or receiving information
Followed by the acknowledge bit by the reciver to ensure that the information so far has been successfully received by the intended recipient(slave). Think of roger or copy in military context
Lastly we sent our actual data followed by our stop condition.

what is it up against
• serial- another 2 wire communication protocol. You have probably seen this in your arduino ‘serial monitor’. Serial is asyncronnous which means clock information and this has to be established beforehand. Furthermore Serial doesn’t support more than 2 devices like I2C can do.

SPI is closer to I2C in the sense that you can control multiple devices. However SPI uses many more pins than I2c. Furthermore while SPI is established protocol but not standardized so its implementation might differ from device to device.

What are some downsides
The actual communication and software behind is quite complex however, most of this work is done for us by device manufacturers and open source libraries.
Slower than SPI
Requires dedicated hardware which means you can’t bitbang. Bitbanging is using software to decode signals instead of harware.

What are some positives
I2c doesn’t need dedicated lines to enable each receiver(slave) unlike SPI. This means you can have up to 1008 devices all running with just 2 wires.
Ack bit confirms that data has been successfully received
Standardized protocol makes it plug and play with multiple different electronics.
I2C can have multiple master or transmitting devices within a loop unlike SPI. Look at the pic for more info

Raspberry pi Implementation
The raspberry pi has 2 I2C pins pains- pins (3,5 or 27,28).
To activate I2c, you need to go into raspi-config, then into interfacing options and enable i2c.
Make sure to have the rpi.GPIO python package installed on your RPI
Arduino Implementation
Each arduino board has different I2C pins. The uno uses A4 and A5.
Lastly import the wire library to implement I2C in your code,

Links-

Basics of the I2C Communication Protocol


https://learn.sparkfun.com/tutorials/i2c/all
https://www.best-microcontroller-projects.com/i2c-tutorial.html

How I2C Communication Works and How To Use It with Arduino


https://en.wikipedia.org/wiki/I%C2%B2C

source

ESP32-CAM Video Streaming and Face Recognition with Arduino IDE

$
0
0



For complete project details (schematics + source code), visit ► https://randomnerdtutorials.com/esp32-cam-video-streaming-face-recognition-arduino-ide/
Buy the ESP32-CAM for less than $10 ► https://makeradvisor.com/tools/esp32-cam/

This video is a quick getting started guide for the ESP32-CAM board. We’ll show you how to setup a video streaming web server with face recognition and detection in less than 5 minutes using the CameraWebServer example.

Like my page on Facebook:
http://www.facebook.com/RandomNerdTutorials
Add me on Google+:
https://plus.google.com/+RuiSantosdotme
Follow me on twitter:

Subscribe for more projects like this!
http://bit.ly/subscribeRNT

source





Latest Images