Jan 31, 2012
Arduino Duemilanove PCB
You can download the following pcb layout and make Arduino Duemilanove PCB from it using Toner Transfer Method.I'm currently making this board will soon update when Im completed with this board.
If you don't know anything about toner transfer method then goto youtube.com search for pcb etching or refer instructibles.com there are plenty of guides there.
Bottom Layer

Top Layer
This is not my development board its image which is taken from arduino website.

The following link is of the Part List for Aruduino Duemilanove - http://www.mediafire.com/?2wea6bg39o9ha2sIf you don't know anything about toner transfer method then goto youtube.com search for pcb etching or refer instructibles.com there are plenty of guides there.
Bottom Layer

Top Layer
This is not my development board its image which is taken from arduino website.
Nov 14, 2011
c program to check whether input alphabet is a vowel or not
c program to check whether input alphabet is a vowel or not:
#include
main()
{
char ch;
printf("Enter a character\n");
scanf("%c",&ch);
if ( ch == 'a' || ch == 'A' || ch == 'e' || ch == 'E' || ch == 'i' || ch == 'I' || ch =='o' || ch=='O' || ch == 'u' || ch == 'U')
printf("%c is a vowel.\n", ch);
else
printf("%c is not a vowel.\n", ch);
return 0;
} Read More......
#include
main()
{
char ch;
printf("Enter a character\n");
scanf("%c",&ch);
if ( ch == 'a' || ch == 'A' || ch == 'e' || ch == 'E' || ch == 'i' || ch == 'I' || ch =='o' || ch=='O' || ch == 'u' || ch == 'U')
printf("%c is a vowel.\n", ch);
else
printf("%c is not a vowel.\n", ch);
return 0;
} Read More......
Subscribe to:
Posts (Atom)

