Sunday, May 29, 2016

Arduino for Beginner - Week1 Lesson2 - Series of Light On

This tutorial will help you to make a series of light will turn on each time in series with a simple push button.
You can download the schematic and also the code from this link  

Arduino for Beginner - Week 1 Lesson 1 - Simple Circuit

This lesson will teach you how you can just build a simple circuit with Arduino, LED and a push button. You will also see the tutorial on my video.

Arduino for Beginner - Arduino Board

I will show you the description of all pins on the Arduino Board so you can see how it work and use it at the right way.

Arduino for Beginner - Introduction to IDE

You will learn about the IDE and program to use for Arduino development or projects such as Arduino IDE and fritzing.

Arduino for Beginner - Electronic Symbol


This video will handle the common symbol those are used in the course of Arduino for Beginner so you can see and understand when you see them in the schematic circuit.

Tuesday, May 3, 2016

Business card design and mockup

Today I just want to show you a quick tip about designing a business card mockup so you can easily show it to your customer about the way it look in real life and they can feel that it is modern and like it. I used Adobe Photoshop to do this so I would recommended you to use Adobe Photoshop any version from CS2 up to CC.
For this tutorial section I used Adobe Photoshop CS5 so it works nice and fast enough for my computer.

So  get in to the tutorial now:



How to Share With Just Friends
How to share with just friends.
Posted by Facebook on Freitag, 5. Dezember 2014

Sunday, May 1, 2016

Smart LED WB2812b

How it work
This LED is very special because it can change the color up to three colors(Red, Green and Blue) range from 0-255 on each color.

Circuit
VDD = Voltage in (3.5v - 5.3v)
DOUT = Data Output
DIN = Data Input
VSS = Ground

Arduino Chapter 1 - LED fade

How it work
This example will guide you to make a fade on LED using Arduino IDE. As the previous lesson you saw how you can bright an LED up and turn it back off and now I am going to show you about you can make it fade ON and fade OFF. 

Requirements
- Arduino board
- Breadboard
- hook-up wires
- LED 3v
- 220 Ohms or 250 Ohms resister

Code
int led = 9; // the PWM pin the LED is attached to
int brightness = 0; // how bright the LED is
int fadeAmount = 5; // how many points to fade the LED by

// the setup routine runs once when you press reset:
void setup() {
// declare pin 9 to be an output:
pinMode(led, OUTPUT);
}


// the loop routine runs over and over again forever:
void loop() {
// set the brightness of pin 9:
analogWrite(led, brightness);
// change the brightness for next time through the loop:
brightness = brightness + fadeAmount;
// reverse the direction of the fading at the ends of the fade:
if (brightness == 0 || brightness == 255) {
fadeAmount = -fadeAmount ;

}
// wait for 30 milliseconds to see the dimming effect
delay(30);
}

Arduino Chapter 1 - Digital Read Serial

How it work
This example will show you how to tract and display the switch state. It will show you when the switch is pressed and released.

Requirement

- Arduino or Genuino Board
- A momentary switch, button, toggle switch or switch button
- 10k ohm resistor
- hook-up wires
- breadboard


Cuircuit

Code
// digital pin 2 has a pushbutton attached to it. Give it a name:
int pushButton = 2;
// the setup routine runs once when you press reset:


void setup() {

// initialize serial communication at 9600 bits per second:
Serial.begin(9600);
// make the pushbutton's pin an input:
pinMode(pushButton, INPUT);
}


// the loop routine runs over and over again forever:
void loop() {

// read the input pin:
int buttonState = digitalRead(pushButton);
// print out the state of the button:
Serial.println(buttonState);
delay(1); // delay in between reads for stability
}


Visitors