Beginning C for Arduino : learn C programming for the Arduino /

Beginning C for Arduino, Second Edition is written for those who have no prior experience with microcontrollers or programming but would like to experiment and learn both. Updated with new projects and new boards, this book introduces you to the C programming language, reinforcing each programming s...

Full description

Saved in:
Bibliographic Details
Main Author: Purdum, Jack J. (Author)
Format: eBook
Language:English
Published: [New York] : Apress : Distributed to the Book trade worldwide by Springer Science+Business Media, [2015]
Edition:Second edition.
Series:Technology in action series.
Subjects:
Online Access:CONNECT
CONNECT
LEADER 07524cam a2200733Ii 4500
001 in00006064548
006 m o d
007 cr cnu|||unuuu
008 150702t20152015nyua o 001 0 eng d
005 20220713134017.7
010 |a  2015944814 
035 |a 1WRLDSHRocn912875060 
040 |a N$T  |b eng  |e rda  |e pn  |c N$T  |d N$T  |d GW5XE  |d IDEBK  |d YDXCP  |d UPM  |d UMI  |d VLB  |d COO  |d OCLCF  |d B24X7  |d EBLCP  |d DEBSZ  |d DEBBG  |d OCLCQ  |d IAO  |d JBG  |d IAD  |d IAS  |d ICN  |d SOI  |d ILO  |d Z5A  |d LIV  |d OCLCQ  |d MERUC  |d ESU  |d U3W  |d IOG  |d CEF  |d DEHBZ  |d OCLCQ  |d UKUOY  |d AU@  |d OCLCQ  |d WYU  |d UKMGB  |d UAB  |d UKAHL  |d OCLCQ  |d AUD  |d OCLCQ  |d CNCEN  |d SFB  |d WURST  |d LVT  |d VT2  |d LEAUB  |d UKBTH  |d BRF  |d DCT  |d TOH  |d TAC  |d DST  |d OCLCO 
015 |a GBB8M4370  |2 bnb 
016 7 |a 019139852  |2 Uk 
019 |a 914301320  |a 966385714  |a 972036260  |a 1054013125  |a 1105791880  |a 1126460432  |a 1136190562  |a 1159658602  |a 1160266429  |a 1162705774  |a 1163745481  |a 1178554096  |a 1181785845  |a 1192335278  |a 1203993256  |a 1204151787  |a 1206409005  |a 1227400402  |a 1228050904  |a 1228512801  |a 1237459801  |a 1240524989  |a 1244634344  |a 1300566347  |a 1302700168  |a 1303328879 
020 |a 9781484209400  |q (electronic bk.) 
020 |a 1484209400  |q (electronic bk.) 
020 |a 1484209419 
020 |a 9781484209417 
020 |z 9781484209417 
024 7 |a 10.1007/978-1-4842-0940-0  |2 doi 
024 8 |a 9781484209400 
035 |a (OCoLC)912875060  |z (OCoLC)914301320  |z (OCoLC)966385714  |z (OCoLC)972036260  |z (OCoLC)1054013125  |z (OCoLC)1105791880  |z (OCoLC)1126460432  |z (OCoLC)1136190562  |z (OCoLC)1159658602  |z (OCoLC)1160266429  |z (OCoLC)1162705774  |z (OCoLC)1163745481  |z (OCoLC)1178554096  |z (OCoLC)1181785845  |z (OCoLC)1192335278  |z (OCoLC)1203993256  |z (OCoLC)1204151787  |z (OCoLC)1206409005  |z (OCoLC)1227400402  |z (OCoLC)1228050904  |z (OCoLC)1228512801  |z (OCoLC)1237459801  |z (OCoLC)1240524989  |z (OCoLC)1244634344  |z (OCoLC)1300566347  |z (OCoLC)1302700168  |z (OCoLC)1303328879 
037 |a CL0500000622  |b Safari Books Online 
050 4 |a QA76.73.A73  |b P87 2015eb 
082 0 4 |a 629.895  |2 23 
049 |a TXMM 
100 1 |a Purdum, Jack J.  |q (Jack Jay),  |e author. 
245 1 0 |a Beginning C for Arduino :  |b learn C programming for the Arduino /  |c Jack Purdum, Ph. D. 
250 |a Second edition. 
264 1 |a [New York] :  |b Apress :  |b Distributed to the Book trade worldwide by Springer Science+Business Media,  |c [2015] 
264 4 |c ©2015 
300 |a 1 online resource :  |b illustrations 
336 |a text  |b txt  |2 rdacontent 
337 |a computer  |b c  |2 rdamedia 
338 |a online resource  |b cr  |2 rdacarrier 
347 |a text file 
490 1 |a Technology in action 
500 |a "Extras online"--Cover. 
588 0 |a Vendor-supplied metadata. 
520 |a Beginning C for Arduino, Second Edition is written for those who have no prior experience with microcontrollers or programming but would like to experiment and learn both. Updated with new projects and new boards, this book introduces you to the C programming language, reinforcing each programming structure with a simple demonstration of how you can use C to control the Arduino family of microcontrollers. Author Jack Purdum uses an engaging style to teach good programming techniques using examples that have been honed during his 25 years of university teaching. Beginning C for Arduino, Second Edition will teach you: The C programming language How to use C to control a microcontroller and related hardware How to extend C by creating your own libraries, including an introduction to object-oriented programming During the course of the book, you will learn the basics of programming, such as working with data types, making decisions, and writing control loops. You'll then progress onto some of the trickier aspects of C programming, such as using pointers effectively, working with the C preprocessor, and tackling file I/O. Each chapter ends with a series of exercises and review questions to test your knowledge and reinforce what you have learned. 
505 8 |a Loading and Running Your First ProgramWriting Your First Program; What the Program Does; Compiling and Uploading a Program; Summary; Chapter 2: Arduino C; The Building Blocks of All Programming Languages; Expressions; Statements; Operator Precedence; Statement Blocks; Function Blocks; The Five Program Steps; 1. Initialization Step; 2. Input Step; 3. Process Step; 4. Output Step; 5. Termination Step; The Purpose of the Five Program Steps; A Revisit to Your First Program; The setup() Function; The loop() Function; Arduino Program Requirements; The Blink Program; Program Comments. 
505 8 |a Single-Line CommentsMulti-line Comments; When to Use Comments; The setup() Function in Blink; How to Find Information About Library Functions; The loop() Function; delay(): Good News, Bad News; Summary; Chapter 3: Arduino C Data Types; Keywords in C; Variable Names in C; The boolean Data Type; Walking Through the Function Call to ReadSwitchState (); Binary Numbers; The char Data Type and Character Sets; Generating a Table of ASCII Characters; The byte Data Type; The int Data Type; The word Data Type; The long Data Type; The float and double Data Types; Floating Point Precision. 
505 8 |a The string Data TypeString Data Type; Which Is Better: String or strings Built from char Arrays?; The void Data Type; The array Data Type; Array Generalizations; Defining vs. Declaring Variables; Language Errors; Symbol Tables; lvalues and rvalues; Understanding an Assignment Statement; The Bucket Analogy; Using the cast Operator; The Cast Rule; Silent Casts; Summary; Chapter 4: Decision Making in C; Relational Operators; The if Statement; What if Expression1 Is Logic True?; What if Expression1 Is Logic False?; Braces or No Braces?; A Modified Blink Program; The Circuit. 
505 8 |a Circuit Resistor ValuesThe Modified Blink Program; const Keyword; Software Modifications to the Alternate Blink Program; The if-else Statement Block; Cascading if statements; The Increment and Decrement Operators; Two Types of Increment Operators (++); Two Flavors of the Decrement Operator( -- ); Precedence of Operators; The switch statement; A switch Variation, the Ellipsis Operator (...); Which to Use: Cascading if-else or switch?; The goto Statement; Getting Rid of Magic Numbers; The C Preprocessor; Heads or Tails; Initialization Step; Input Step; Process Step; Output Step; Termination Step. 
542 |f Copyright © 2015 By Jack Purdum, Ph.D.  |g 2015 
546 |a English. 
590 |a O'Reilly Online Learning Platform: Academic Edition (SAML SSO Access) 
650 0 |a Arduino (Programmable controller) 
650 0 |a C (Computer program language) 
650 0 |a Programmable controllers. 
650 0 |a Computer input-output equipment. 
730 0 |a WORLDSHARE SUB RECORDS 
773 0 |t Springer eBooks 
776 0 8 |i Print version:  |a Purdum, Jack.  |t Beginning C for Arduino : learn C programming for the Arduino.  |b Second edition.  |d [Berkeley, California] : Apress, ©2015  |h xxvi, 360 pages  |z 9781484209417 
830 0 |a Technology in action series. 
856 4 0 |u https://go.oreilly.com/middle-tennessee-state-university/library/view/-/9781484209400/?ar  |z CONNECT  |3 O'Reilly  |t 0 
949 |a ho0 
994 |a 92  |b TXM 
998 |a wi  |d z 
999 f f |s c0458dd8-e861-4fa9-a7de-163dd699bdef  |i d0ff552f-722e-41e1-b93b-5d5193afd10b  |t 0 
952 f f |a Middle Tennessee State University  |b Main  |c James E. Walker Library  |d Electronic Resources  |t 1  |e QA76.73.A73 P87 2015eb  |h Library of Congress classification 
856 4 0 |3 O'Reilly  |t 0  |u https://go.oreilly.com/middle-tennessee-state-university/library/view/-/9781484209400/?ar  |z CONNECT