Home > Science, Technology & Agriculture > Electronics and communications engineering > Microcontroller Prototypes with Arduino and a 3D Printer: Learn, Program, Manufacture
13%
Microcontroller Prototypes with Arduino and a 3D Printer: Learn, Program, Manufacture

Microcontroller Prototypes with Arduino and a 3D Printer: Learn, Program, Manufacture

          
5
4
3
2
1

International Edition


Premium quality
Premium quality
Bookswagon upholds the quality by delivering untarnished books. Quality, services and satisfaction are everything for us!
Easy Return
Easy return
Not satisfied with this product! Keep it in original condition and packaging to avail easy return policy.
Certified product
Certified product
First impression is the last impression! Address the book’s certification page, ISBN, publisher’s name, copyright page and print quality.
Secure Checkout
Secure checkout
Security at its finest! Login, browse, purchase and pay, every step is safe and secured.
Money back guarantee
Money-back guarantee:
It’s all about customers! For any kind of bad experience with the product, get your actual amount back after returning the product.
On time delivery
On-time delivery
At your doorstep on time! Get this book delivered without any delay.
Quantity:
Add to Wishlist

About the Book

Microcontroller Prototypes with Arduino and a 3D Printer Discover a complete treatment of microcomputer programming and application development with Arduino and 3D printers Microcontroller Prototypes with Arduino and a 3D Printer: Learn, Program, Manufacture delivers a comprehensive guide to learning microcontrollers that’s perfectly suited to educators, researchers, and manufacturers. The book provides readers with a seasoned expert’s perspective on the process of microcomputer programming and application development. Carefully designed and written example code and explanatory figures accompany the text, helping the reader fully understand and retain the concepts described within. The book focuses on demonstrating how to craft creative and innovative solutions in embedded systems design by providing practical and illustrative methods and examples. An accompanying website includes functioning and tested source code and learning exercises and the book relies on freeware development tools for the creation of firmware and software code, 3D printed enclosures, and debugging. It allows the reader to work with modern sensors and collect sensor data to a host PC for offline analysis. Readers will also benefit from the inclusion of: A thorough introduction to the art of embedded computers, including their interdisciplinarity, TPACK analysis, and the impact of microcontroller technology on the maker industry An exploration of embedded programming with Arduino, including number representation and special-function codes and C common language reference A discussion of hardware interfaces with the outside world, including digital pin interface, analog pin interface, UART serial interface, I2C, and SPI A treatment of sensors and data acquisition, including environmental measurements with Arduino Uno, orientation and motion detection with Teensy, gesture recognition with TinyZero, and color sensing with Micro:bit A variety of supplementary resources—including source codes and examples—hosted on an accompanying website to be maintained by the author: www.mikroct.com. Perfect for researchers and undergraduate students in electrical and electronic engineering or computer engineering, Microcontroller Prototypes with Arduino and a 3D Printer: Learn, Program, Manufacture will also earn a place in the libraries of hardware engineers, embedded system designers, system engineers, and electronic engineers.

Table of Contents:
About the Author xi List of Figures xii List of Tables xxvi Preface xxvii Acknowledgments xxx Abbreviations xxxi Syllabus xxxv 1 The Art of Embedded Computers 1 Overview of Embedded Computers and Their Interdisciplinarity 1 Computer vs. Embedded Computer Programming and Application Development 2 Group 1: Programmable Logic Devices 3 Group 2: Reconfigurable Computers 4 Group 3: Microcomputers 4 Group 4: Single-Board Computers 6 Group 5: Mobile Computing Devices 6 TPACK Analysis Toward Teaching and Learning Microcomputers 7 TPACK Analysis of the Interdisciplinary Microcontroller Technology 7 Content Knowledge (The What) 8 Technology Knowledge (The Why) 9 Pedagogical Knowledge (The How) 11 From Computational Thinking (CT) to Micro-CT (μCT) 12 CT Requirement and Embedded Computers 13 Microcomputers and Abstraction Process 14 The μCT Concept: An Onion Learning Framework 15 “Transparent” Teaching Methods 17 The Impact of Microcontroller Technology on the Maker Industry 19 Hardware Advancement in μC Technology 20 Software Advancement in μC Technology 23 The Impact of Arduino on the μC Community 23 Where Is Creativity in Embedded Computing Devices Hidden? 26 Creativity in Mobile Computing Devices: Travel Light, Innovate Readily! 26 Communication with the Outside World: Sensors, Actuators, and Interfaces 28 Conclusion 30 2 Embedded Programming with Arduino 31 Number Representation and Special-Function Codes 31 Arduino and C Common Language Reference 34 Working with Data (Variables, Constants, and Arrays) 36 Arduino UART Interface to the Outside World (Printing Data) 39 Arduino Ex.2–1 40 Arduino Ex.2–2 44 Program Flow of Control (Arithmetic and Bitwise Operations) 47 Arduino UART Interface (Flow of Control and Arithmetic/Bitwise Examples) 52 Arduino Ex.2–3 52 Arduino Ex.2–4 53 Arduino Ex.2–5 54 Arduino Ex.2–6 59 Arduino Ex.2–7 63 Code Decomposition (Functions and Directives) 69 Arduino Ex.2–8 69 Conclusion 72 Problem 2–1 (Data Output from the μC Device: Datatypes and Bytes Reserved by the hw) 73 Problem 2–2 (Data Output from the μC Device: Logical Operators in Control Flow) 73 Problem 2–3 (Data Input to the μC Device: Arithmetic and Bitwise Operations) 73 Problem 2–4 (Code Decomposition) 73 3 Hardware Interface with the Outside World 75 Digital Pin Interface 75 Arduino Ex.3.1 76 Arduino Ex.3.2 77 Arduino Ex.3.3 81 Arduino Ex.3.4 82 Arduino Ex.3.5 84 Analog Pin Interface 86 Arduino Ex.3.6 87 Arduino Ex.3.7 91 Interrupt Pin Interface 91 Arduino Ex.3.8 94 UART Serial Interface 96 Arduino Ex.3.9 97 Arduino Ex.3.10 98 Arduino Ex.3.11 99 SPI Serial Interface 101 Arduino Ex.3.12 103 Arduino Ex.3.13 110 Arduino Ex.3.14 115 Arduino Ex.3.15 121 I2C Serial Interface 122 Arduino Ex.3.16 125 Arduino Ex.3.17 130 Arduino Ex.3.18 135 Arduino Ex.3.19 142 Conclusion 146 Problem 3.1 (Data Input and Output to/from the μC Using Push-Button and LED IO Units) 147 Problem 3.2 (PWM) 147 Problem 3.3 (UART, SPI, I2C) 147 4 Sensors and Data Acquisition 149 Environmental Measurements with Arduino Uno 149 Arduino Ex.4–1 150 DAQ Accompanying Software of the Ex.4–1 157 DAQ Accompanying Software with Graphical Monitoring Feature Via gnuplot 166 Arduino Ex.4–2 169 Orientation, Motion, and Gesture Detection with Teensy 3.2 171 Arduino Ex.4–3 173 Arduino Ex.4–4 174 Arduino Ex.4–5 177 Arduino Ex.4–6 184 DAQ Accompanying Software for Orientation, Motion, and Gesture Detection with gnuplot 191 Real Time Monitoring with Open GL 193 Distance Detection and 1D Gesture Recognition with TinyZero 200 Arduino Ex.4–7 201 Arduino Ex.4–8 205 DAQ Accompanying Software for Distance Measurements 209 Color Sensing and Wireless Monitoring with Micro:bit 211 Arduino Ex.4–9 212 Arduino Ex.4–10 216 Open GL Example Applying to RGB Sensing 220 Arduino Ex.4–11 222 Conclusion 226 Problem 4–1 (Data Acquisition of Atmospheric Pressure) 226 Problem 4–2 (Fusion of Linear Acceleration and Barometric Altitude) 226 Problem 4–3 (1D Gesture Recognition) 226 Problem 4–4 (Color Sensing) 226 5 Tinkering and Prototyping with 3D Printing Technology 227 Tinkering with a Low-cost RC Car 227 Arduino Ex.5.1 231 Arduino Ex.5.2 236 A Prototype Interactive Game for Sensory Play 237 Hardware Boards of the Prototype System 238 Assembly Process of the 3D Printed Parts of the System’s Enclosure 243 Firmware Code Design and User Instructions 249 Arduino Ex.5.3 250 Arduino Ex.5.4 253 Arduino Ex.5.5 256 Arduino Ex.5.6 260 3D Printing 262 Modeling 3D Objects with FreeCAD Software 262 Preparing the 3D Prints with Ultimaker Cura Software 269 3D Printing with Prima Creator P120 272 Presentation of the Rest 3D Models of the Prototype Interactive Game 276 PrototypeB (Modeling the battery.stl Part) 276 PrototypeC (Modeling the booster.stl Part) 278 PrototypeD (Modeling the speaker.stl Part) 283 PrototypeE (Modeling the cover.stl Part) 284 PrototypeF (Modeling the button.stl Part) 287 PrototypeG (Modeling the sensor.stl Part) 290 PrototypeH (Modeling the front.stl Part) 290 Conclusion 294 Problem 5.1 (Tinkering with a Low-cost RC Car) 294 Problem 5.2 (A Prototype Interactive Game for Sensory Play) 294 Problem 5.3 (A Prototype Interactive Game for Sensory Play) 295 Problem 5.4 (A Prototype Interactive Game for Sensory Play) 296 Problem 5.5 (3D Printing) 296 References 297 Index 301


Best Sellers


Product Details
  • ISBN-13: 9781119782612
  • Publisher: John Wiley & Sons Inc
  • Publisher Imprint: John Wiley & Sons Inc
  • Height: 244 mm
  • No of Pages: 352
  • Spine Width: 22 mm
  • Weight: 822 gr
  • ISBN-10: 1119782619
  • Publisher Date: 29 Apr 2021
  • Binding: Hardback
  • Language: English
  • Returnable: N
  • Sub Title: Learn, Program, Manufacture
  • Width: 170 mm


Similar Products

How would you rate your experience shopping for books on Bookswagon?

Add Photo
Add Photo

Customer Reviews

REVIEWS           
Click Here To Be The First to Review this Product
Microcontroller Prototypes with Arduino and a 3D Printer: Learn, Program, Manufacture
John Wiley & Sons Inc -
Microcontroller Prototypes with Arduino and a 3D Printer: Learn, Program, Manufacture
Writing guidlines
We want to publish your review, so please:
  • keep your review on the product. Review's that defame author's character will be rejected.
  • Keep your review focused on the product.
  • Avoid writing about customer service. contact us instead if you have issue requiring immediate attention.
  • Refrain from mentioning competitors or the specific price you paid for the product.
  • Do not include any personally identifiable information, such as full names.

Microcontroller Prototypes with Arduino and a 3D Printer: Learn, Program, Manufacture

Required fields are marked with *

Review Title*
Review
    Add Photo Add up to 6 photos
    Would you recommend this product to a friend?
    Tag this Book
    Read more
    Does your review contain spoilers?
    What type of reader best describes you?
    I agree to the terms & conditions
    You may receive emails regarding this submission. Any emails will include the ability to opt-out of future communications.

    CUSTOMER RATINGS AND REVIEWS AND QUESTIONS AND ANSWERS TERMS OF USE

    These Terms of Use govern your conduct associated with the Customer Ratings and Reviews and/or Questions and Answers service offered by Bookswagon (the "CRR Service").


    By submitting any content to Bookswagon, you guarantee that:
    • You are the sole author and owner of the intellectual property rights in the content;
    • All "moral rights" that you may have in such content have been voluntarily waived by you;
    • All content that you post is accurate;
    • You are at least 13 years old;
    • Use of the content you supply does not violate these Terms of Use and will not cause injury to any person or entity.
    You further agree that you may not submit any content:
    • That is known by you to be false, inaccurate or misleading;
    • That infringes any third party's copyright, patent, trademark, trade secret or other proprietary rights or rights of publicity or privacy;
    • That violates any law, statute, ordinance or regulation (including, but not limited to, those governing, consumer protection, unfair competition, anti-discrimination or false advertising);
    • That is, or may reasonably be considered to be, defamatory, libelous, hateful, racially or religiously biased or offensive, unlawfully threatening or unlawfully harassing to any individual, partnership or corporation;
    • For which you were compensated or granted any consideration by any unapproved third party;
    • That includes any information that references other websites, addresses, email addresses, contact information or phone numbers;
    • That contains any computer viruses, worms or other potentially damaging computer programs or files.
    You agree to indemnify and hold Bookswagon (and its officers, directors, agents, subsidiaries, joint ventures, employees and third-party service providers, including but not limited to Bazaarvoice, Inc.), harmless from all claims, demands, and damages (actual and consequential) of every kind and nature, known and unknown including reasonable attorneys' fees, arising out of a breach of your representations and warranties set forth above, or your violation of any law or the rights of a third party.


    For any content that you submit, you grant Bookswagon a perpetual, irrevocable, royalty-free, transferable right and license to use, copy, modify, delete in its entirety, adapt, publish, translate, create derivative works from and/or sell, transfer, and/or distribute such content and/or incorporate such content into any form, medium or technology throughout the world without compensation to you. Additionally,  Bookswagon may transfer or share any personal information that you submit with its third-party service providers, including but not limited to Bazaarvoice, Inc. in accordance with  Privacy Policy


    All content that you submit may be used at Bookswagon's sole discretion. Bookswagon reserves the right to change, condense, withhold publication, remove or delete any content on Bookswagon's website that Bookswagon deems, in its sole discretion, to violate the content guidelines or any other provision of these Terms of Use.  Bookswagon does not guarantee that you will have any recourse through Bookswagon to edit or delete any content you have submitted. Ratings and written comments are generally posted within two to four business days. However, Bookswagon reserves the right to remove or to refuse to post any submission to the extent authorized by law. You acknowledge that you, not Bookswagon, are responsible for the contents of your submission. None of the content that you submit shall be subject to any obligation of confidence on the part of Bookswagon, its agents, subsidiaries, affiliates, partners or third party service providers (including but not limited to Bazaarvoice, Inc.)and their respective directors, officers and employees.

    Accept

    New Arrivals


    Inspired by your browsing history


    Your review has been submitted!

    You've already reviewed this product!
    ASK VIDYA