Details

Microcontroller Prototypes with Arduino and a 3D Printer


Microcontroller Prototypes with Arduino and a 3D Printer

Learn, Program, Manufacture
1. Aufl.

von: Dimosthenis E. Bolanakis

86,99 €

Verlag: Wiley
Format: EPUB
Veröffentl.: 09.04.2021
ISBN/EAN: 9781119782681
Sprache: englisch
Anzahl Seiten: 352

DRM-geschütztes eBook, Sie benötigen z.B. Adobe Digital Editions und eine Adobe ID zum Lesen.

Beschreibungen

<b>Microcontroller Prototypes with Arduino and a 3D Printer</b> <p><b>Discover a complete treatment of microcomputer programming and application development with Arduino and 3D printers</b><p><i>Microcontroller Prototypes with Arduino and a 3D Printer: Learn, Program, Manufacture</i> 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.<p>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:<ul><li>A thorough introduction to the art of embedded computers, including their interdisciplinarity, TPACK analysis, and the impact of microcontroller technology on the maker industry</li><li>An exploration of embedded programming with Arduino, including number representation and special-function codes and C common language reference</li><li>A discussion of hardware interfaces with the outside world, including digital pin interface, analog pin interface, UART serial interface, I2C, and SPI</li><li>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</li><li>A variety of supplementary resources—including source codes and examples—hosted on an accompanying website to be maintained by the author: www.mikroct.com.</li></ul><p>Perfect for researchers and undergraduate students in electrical and electronic engineering or computer engineering, <i>Microcontroller Prototypes with Arduino and a 3D Printer: Learn, Program, Manufacture</i> will also earn a place in the libraries of hardware engineers, embedded system designers, system engineers, and electronic engineers.
<p>About the Author xi</p> <p>List of Figures xii</p> <p>List of Tables xxvi</p> <p>Preface xxvii</p> <p>Acknowledgments xxx</p> <p>Abbreviations xxxi</p> <p>Syllabus xxxv</p> <p><b>1 The Art of Embedded Computers 1</b></p> <p>Overview of Embedded Computers and Their Interdisciplinarity 1</p> <p>Computer vs. Embedded Computer Programming and Application Development 2</p> <p>Group 1: Programmable Logic Devices 3</p> <p>Group 2: Reconfigurable Computers 4</p> <p>Group 3: Microcomputers 4</p> <p>Group 4: Single-Board Computers 6</p> <p>Group 5: Mobile Computing Devices 6</p> <p>TPACK Analysis Toward Teaching and Learning Microcomputers 7</p> <p>TPACK Analysis of the Interdisciplinary Microcontroller Technology 7</p> <p>Content Knowledge (The What) 8</p> <p>Technology Knowledge (The Why) 9</p> <p>Pedagogical Knowledge (The How) 11</p> <p>From Computational Thinking (CT) to Micro-CT (μCT) 12</p> <p>CT Requirement and Embedded Computers 13</p> <p>Microcomputers and Abstraction Process 14</p> <p>The μCT Concept: An Onion Learning Framework 15</p> <p>“Transparent” Teaching Methods 17</p> <p>The Impact of Microcontroller Technology on the Maker Industry 19</p> <p>Hardware Advancement in μC Technology 20</p> <p>Software Advancement in μC Technology 23</p> <p>The Impact of Arduino on the μC Community 23</p> <p>Where Is Creativity in Embedded Computing Devices Hidden? 26</p> <p>Creativity in Mobile Computing Devices: Travel Light, Innovate Readily! 26</p> <p>Communication with the Outside World: Sensors, Actuators, and Interfaces 28</p> <p>Conclusion 30</p> <p><b>2 Embedded Programming with Arduino 31</b></p> <p>Number Representation and Special-Function Codes 31</p> <p>Arduino and C Common Language Reference 34</p> <p>Working with Data (Variables, Constants, and Arrays) 36</p> <p>Arduino UART Interface to the Outside World (Printing Data) 39</p> <p>Arduino Ex.2–1 40</p> <p>Arduino Ex.2–2 44</p> <p>Program Flow of Control (Arithmetic and Bitwise Operations) 47</p> <p>Arduino UART Interface (Flow of Control and Arithmetic/Bitwise Examples) 52</p> <p>Arduino Ex.2–3 52</p> <p>Arduino Ex.2–4 53</p> <p>Arduino Ex.2–5 54</p> <p>Arduino Ex.2–6 59</p> <p>Arduino Ex.2–7 63</p> <p>Code Decomposition (Functions and Directives) 69</p> <p>Arduino Ex.2–8 69</p> <p>Conclusion 72</p> <p>Problem 2–1 (Data Output from the μC Device: Datatypes and Bytes Reserved by the hw) 73</p> <p>Problem 2–2 (Data Output from the μC Device: Logical Operators in Control Flow) 73</p> <p>Problem 2–3 (Data Input to the μC Device: Arithmetic and Bitwise Operations) 73</p> <p>Problem 2–4 (Code Decomposition) 73</p> <p><b>3 Hardware Interface with the Outside World 75</b></p> <p>Digital Pin Interface 75</p> <p>Arduino Ex.3.1 76</p> <p>Arduino Ex.3.2 77</p> <p>Arduino Ex.3.3 81</p> <p>Arduino Ex.3.4 82</p> <p>Arduino Ex.3.5 84</p> <p>Analog Pin Interface 86</p> <p>Arduino Ex.3.6 87</p> <p>Arduino Ex.3.7 91</p> <p>Interrupt Pin Interface 91</p> <p>Arduino Ex.3.8 94</p> <p>UART Serial Interface 96</p> <p>Arduino Ex.3.9 97</p> <p>Arduino Ex.3.10 98</p> <p>Arduino Ex.3.11 99</p> <p>SPI Serial Interface 101</p> <p>Arduino Ex.3.12 103</p> <p>Arduino Ex.3.13 110</p> <p>Arduino Ex.3.14 115</p> <p>Arduino Ex.3.15 121</p> <p>I2C Serial Interface 122</p> <p>Arduino Ex.3.16 125</p> <p>Arduino Ex.3.17 130</p> <p>Arduino Ex.3.18 135</p> <p>Arduino Ex.3.19 142</p> <p>Conclusion 146</p> <p>Problem 3.1 (Data Input and Output to/from the μC Using Push-Button and LED IO Units) 147</p> <p>Problem 3.2 (PWM) 147</p> <p>Problem 3.3 (UART, SPI, I2C) 147</p> <p><b>4 Sensors and Data Acquisition 149</b></p> <p>Environmental Measurements with Arduino Uno 149</p> <p>Arduino Ex.4–1 150</p> <p>DAQ Accompanying Software of the Ex.4–1 157</p> <p>DAQ Accompanying Software with Graphical Monitoring Feature Via gnuplot 166</p> <p>Arduino Ex.4–2 169</p> <p>Orientation, Motion, and Gesture Detection with Teensy 3.2 171</p> <p>Arduino Ex.4–3 173</p> <p>Arduino Ex.4–4 174</p> <p>Arduino Ex.4–5 177</p> <p>Arduino Ex.4–6 184</p> <p>DAQ Accompanying Software for Orientation, Motion, and Gesture Detection with gnuplot 191</p> <p>Real Time Monitoring with Open GL 193</p> <p>Distance Detection and 1D Gesture Recognition with TinyZero 200</p> <p>Arduino Ex.4–7 201</p> <p>Arduino Ex.4–8 205</p> <p>DAQ Accompanying Software for Distance Measurements 209</p> <p>Color Sensing and Wireless Monitoring with Micro:bit 211</p> <p>Arduino Ex.4–9 212</p> <p>Arduino Ex.4–10 216</p> <p>Open GL Example Applying to RGB Sensing 220</p> <p>Arduino Ex.4–11 222</p> <p>Conclusion 226</p> <p>Problem 4–1 (Data Acquisition of Atmospheric Pressure) 226</p> <p>Problem 4–2 (Fusion of Linear Acceleration and Barometric Altitude) 226</p> <p>Problem 4–3 (1D Gesture Recognition) 226</p> <p>Problem 4–4 (Color Sensing) 226</p> <p><b>5 Tinkering and Prototyping with 3D Printing Technology 227</b></p> <p>Tinkering with a Low-cost RC Car 227</p> <p>Arduino Ex.5.1 231</p> <p>Arduino Ex.5.2 236</p> <p>A Prototype Interactive Game for Sensory Play 237</p> <p>Hardware Boards of the Prototype System 238</p> <p>Assembly Process of the 3D Printed Parts of the System’s Enclosure 243</p> <p>Firmware Code Design and User Instructions 249</p> <p>Arduino Ex.5.3 250</p> <p>Arduino Ex.5.4 253</p> <p>Arduino Ex.5.5 256</p> <p>Arduino Ex.5.6 260</p> <p>3D Printing 262</p> <p>Modeling 3D Objects with FreeCAD Software 262</p> <p>Preparing the 3D Prints with Ultimaker Cura Software 269</p> <p>3D Printing with Prima Creator P120 272</p> <p>Presentation of the Rest 3D Models of the Prototype Interactive Game 276</p> <p>PrototypeB (Modeling the battery.stl Part) 276</p> <p>PrototypeC (Modeling the booster.stl Part) 278</p> <p>PrototypeD (Modeling the speaker.stl Part) 283</p> <p>PrototypeE (Modeling the cover.stl Part) 284</p> <p>PrototypeF (Modeling the button.stl Part) 287</p> <p>PrototypeG (Modeling the sensor.stl Part) 290</p> <p>PrototypeH (Modeling the front.stl Part) 290</p> <p>Conclusion 294</p> <p>Problem 5.1 (Tinkering with a Low-cost RC Car) 294</p> <p>Problem 5.2 (A Prototype Interactive Game for Sensory Play) 294</p> <p>Problem 5.3 (A Prototype Interactive Game for Sensory Play) 295</p> <p>Problem 5.4 (A Prototype Interactive Game for Sensory Play) 296</p> <p>Problem 5.5 (3D Printing) 296</p> <p>References 297</p> <p>Index 301</p>
<p><b>Dimosthenis E. Bolanakis, PhD</b>, is Special Lab and Teaching Personnel at Hellenic Air Force Academy in Athens, Greece. He received his doctorate in Education Sciences in 2016 from the University of Ioannina in Greece. He has co-authored over thirty papers on research into engineering education and three books.</p>
<p><b>Discover a complete treatment of microcomputer programming and application development with Arduino and 3D printers</b></p><p><i>Microcontroller Prototypes with Arduino and a 3D Printer: Learn, Program, Manufacture</i> 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.</p><p>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:</p><ul><li>A thorough introduction to the art of embedded computers, including their interdisciplinarity, TPACK analysis, and the impact of microcontroller technology on the maker industry</li><li>An exploration of embedded programming with Arduino, including number representation and special-function codes and C common language reference</li><li>A discussion of hardware interfaces with the outside world, including digital pin interface, analog pin interface, UART serial interface, I2C, and SPI</li><li>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</li><li>A variety of supplementary resources—including source codes and examples—hosted on an accompanying website to be maintained by the author: www.mikroct.com.</li></ul><p>Perfect for researchers and undergraduate students in electrical and electronic engineering or computer engineering, <i>Microcontroller Prototypes with Arduino and a 3D Printer: Learn, Program, Manufacture</i> will also earn a place in the libraries of hardware engineers, embedded system designers, system engineers, and electronic engineers.</p>

Diese Produkte könnten Sie auch interessieren:

Bandwidth Efficient Coding
Bandwidth Efficient Coding
von: John B. Anderson
PDF ebook
114,99 €
Bandwidth Efficient Coding
Bandwidth Efficient Coding
von: John B. Anderson
EPUB ebook
114,99 €