If you have read this book, please leave a review on Amazon.com. Potential readers can then use your unbiased opinion to help them make purchase decisions. Thank you. The $5 campaign runs from December 15th 2020 to January 13th 2021.
This is the code repository for Learn Arduino Prototyping in 10 days, published by Packt. It contains all the supporting project files necessary to work through the book from start to finish.
The single-chip computer board Arduino is small in size but vast in scope, capable of being used for electronic projects from robotics through to home automation. The most popular embedded platform in the world, Arduino users range from school children to industry experts, all incorporating it into their designs.
Arduino Development Cookbook comprises clear and step-by-step recipes that give you the toolbox of techniques to construct any Arduino project, from the simple to the advanced. Each chapter gives you more essential building blocks for Arduino development, from learning about programming buttons through to operating motors, managing sensors, and controlling displays. Throughout, you'll find tips and tricks to help you troubleshoot your development problems and push your Arduino project to the next level!
All of the code is organized into folders. Each folder starts with a number followed by the application name. For example, Chapter02.
The code will look like the following:
// Signal a quick LOW just before giving a HIGH signal
digitalWrite(3, LOW);
delayMicroseconds(2);
// After 2 micro-seconds of LOW signal, give a HIGH signal
// to trigger the sensor
digitalWrite(3, HIGH);
// Keep the digital signal HIGH forat least 10 micro-seconds
// (required by HC-SR04 to activate emission of ultra-sonic
// waves)
delayMicroseconds(10);
// After 10 micro-seconds, send a LOW signal
digitalWrite(3, LOW);
If you have already purchased a print or Kindle version of this book, you can get a DRM-free PDF version at no cost.
Simply click on the link to claim your free PDF.