كتاب Make - Getting Started with Arduino
منتدى هندسة الإنتاج والتصميم الميكانيكى
بسم الله الرحمن الرحيم

أهلا وسهلاً بك زائرنا الكريم
نتمنى أن تقضوا معنا أفضل الأوقات
وتسعدونا بالأراء والمساهمات
إذا كنت أحد أعضائنا يرجى تسجيل الدخول
أو وإذا كانت هذة زيارتك الأولى للمنتدى فنتشرف بإنضمامك لأسرتنا
وهذا شرح لطريقة التسجيل فى المنتدى بالفيديو :
http://www.eng2010.yoo7.com/t5785-topic
وشرح لطريقة التنزيل من المنتدى بالفيديو:
http://www.eng2010.yoo7.com/t2065-topic
إذا واجهتك مشاكل فى التسجيل أو تفعيل حسابك
وإذا نسيت بيانات الدخول للمنتدى
يرجى مراسلتنا على البريد الإلكترونى التالى :

Deabs2010@yahoo.com


-----------------------------------
-Warning-

This website uses cookies
We inform you that this site uses own, technical and third parties cookies to make sure our web page is user-friendly and to guarantee a high functionality of the webpage.
By continuing to browse this website, you declare to accept the use of cookies.
منتدى هندسة الإنتاج والتصميم الميكانيكى
بسم الله الرحمن الرحيم

أهلا وسهلاً بك زائرنا الكريم
نتمنى أن تقضوا معنا أفضل الأوقات
وتسعدونا بالأراء والمساهمات
إذا كنت أحد أعضائنا يرجى تسجيل الدخول
أو وإذا كانت هذة زيارتك الأولى للمنتدى فنتشرف بإنضمامك لأسرتنا
وهذا شرح لطريقة التسجيل فى المنتدى بالفيديو :
http://www.eng2010.yoo7.com/t5785-topic
وشرح لطريقة التنزيل من المنتدى بالفيديو:
http://www.eng2010.yoo7.com/t2065-topic
إذا واجهتك مشاكل فى التسجيل أو تفعيل حسابك
وإذا نسيت بيانات الدخول للمنتدى
يرجى مراسلتنا على البريد الإلكترونى التالى :

Deabs2010@yahoo.com


-----------------------------------
-Warning-

This website uses cookies
We inform you that this site uses own, technical and third parties cookies to make sure our web page is user-friendly and to guarantee a high functionality of the webpage.
By continuing to browse this website, you declare to accept the use of cookies.



 
الرئيسيةالبوابةأحدث الصورالتسجيلدخولحملة فيد واستفيدجروب المنتدى

شاطر
 

 كتاب Make - Getting Started with Arduino

اذهب الى الأسفل 
كاتب الموضوعرسالة
Admin
مدير المنتدى
مدير المنتدى
Admin

عدد المساهمات : 18726
التقييم : 34712
تاريخ التسجيل : 01/07/2009
الدولة : مصر
العمل : مدير منتدى هندسة الإنتاج والتصميم الميكانيكى

كتاب Make - Getting Started with Arduino  Empty
مُساهمةموضوع: كتاب Make - Getting Started with Arduino    كتاب Make - Getting Started with Arduino  Emptyالأحد 24 مارس 2024, 1:29 am

أخواني في الله
أحضرت لكم كتاب
Make - Getting Started with Arduino
Massimo Banzi
co-founder of Arduino

كتاب Make - Getting Started with Arduino  M_g_s_15
و المحتوى كما يلي :


Table of Contents
2Preface
Acknowledgments
How to Contact Us
1. Introduction
Intended Audience
Interaction Design is the design of any
interactive experience.
What Is Physical Computing?
2. The Arduino Way
Prototyping
Tinkering
Patching
Circuit Bending
Keyboard Hacks
We Love Junk!
Hacking Toys
Collaboration
3. The Arduino Platform
3The Arduino Hardware
14 Digital IO pins (pins 0–13)
6 Analogue In pins (pins 0–5)
6 Analogue Out pins (pins 3, 5, 6, 9, 10, and
11)
The Software (IDE)
Installing Arduino on Your Computer
Installing Drivers: Macintosh
Installing Drivers: Windows
Port Identification: Macintosh
Port Identification: Windows
4. Really Getting Started with Arduino
Anatomy of an Interactive Device
Sensors and Actuators
Blinking an LED
Pass Me the Parmesan
Arduino Is Not for Quitters
Real Tinkerers Write Comments
The Code, Step by Step
What We Will Be Building
What Is Electricity?
Using a Pushbutton to Control the LED
How Does This Work?
One Circuit, A Thousand Behaviours
5. Advanced Input and Output
4Trying Out Other On/Off Sensors
Switches
Thermostats
Magnetic switches (also known as "reed
relays")
Carpet switches
Tilt switches
Controlling Light with PWM
Use a Light Sensor Instead of the Pushbutton
Analogue Input
Try Other Analogue Sensors
Serial Communication
Driving Bigger Loads (Motors, Lamps, and the
Like)
Complex Sensors
6. Talking to the Cloud
Digital Output
Digital Output
Analog Output
Digital Input
Analog Input
Serial Communication
Planning
Coding
Assembling the Circuit
Here's How to Assemble It:
7. Troubleshooting
5Understanding
Understanding
Simplification and segmentation
Exclusion and certainty
Testing the Board
Testing Your Breadboarded Circuit
Isolating Problems
Problems with the IDE
How to Get Help Online
A. The Breadboard
B. Reading Resistors and Capacitors
C. Arduino Quick Reference
6STRUCTURE
SPECIAL SYMBOLS
; (semicolon)
{} (curly braces)
comments
CONSTANTS
VARIABLES
boolean
char
byte
int
unsigned int
long
unsigned long
float
double
string
array
CONTROL STRUCTURES
if … else
for
switch case
while
do … while
break
continue
return
ARITHMETIC AND FORMULAS
COMPARISON OPERATORS
7BOOLEAN OPERATORS
COMPOUND OPERATORS
increment and decrement (–– and ++)
+= , –=, *= and /=
INPUT AND OUTPUT FUNCTIONS
pinMode(pin, mode)
digitalWrite(pin, value)
int digitalRead(pin)
int analogRead(pin)
analogWrite(pin, value)
shiftOut(dataPin, clockPin, bitOrder, value)
unsigned long pulseIn(pin, value)
TIME FUNCTIONS
unsigned long millis()
delay(ms)
delayMicroseconds(us)
MATH FUNCTIONS
min(x, y)
max(x, y)
abs(x)
constrain(x, a, b)
map(value, fromLow, fromHigh, toLow,
toHigh)
double pow(base, exponent)
double sqrt(x)
double sin(rad)
double cos(rad)
double tan(rad)
8RANDOM NUMBER FUNCTIONS
randomSeed(seed)
long random(max) long random(min, max)
SERIAL COMMUNICATION
Serial.begin(speed)
Serial.print(data) Serial.print(data, encoding)
Serial.println(data) Serial.println(data,
encoding)
int Serial.available()
int Serial.read()
Serial.flush()
D. Reading Schematic Diagrams


كلمة سر فك الضغط : books-world.net
The Unzip Password : books-world.net
أتمنى أن تستفيدوا من محتوى الموضوع وأن ينال إعجابكم

رابط من موقع عالم الكتب لتنزيل كتاب Make - Getting Started with Arduino
رابط مباشر لتنزيل كتاب Make - Getting Started with Arduino
الرجوع الى أعلى الصفحة اذهب الى الأسفل
 
كتاب Make - Getting Started with Arduino
الرجوع الى أعلى الصفحة 
صفحة 2 من اصل 1
 مواضيع مماثلة
-
» كتاب Make: Lego and Arduino Projects
» كتاب Make: Basic Arduino Projects - 26 Experiments with Microcontrollers and Electronics
» كتاب Make - Getting Started with CNC
» كتاب Make: Action - Movement, Light, and Sound with Arduino and Raspberry Pi
» كتاب Make - Getting Started with littleBits

صلاحيات هذا المنتدى:لاتستطيع الرد على المواضيع في هذا المنتدى
منتدى هندسة الإنتاج والتصميم الميكانيكى :: المنتديات الهندسية :: منتدى الكتب والمحاضرات الهندسية :: منتدى الكتب والمحاضرات الهندسية الأجنبية-
انتقل الى: