- Arduino Robotic Projects
- Richard Grimmett
- 222字
- 2021-09-03 09:59:23
Conventions
In this book, you will find a number of styles of text that distinguish between different kinds of information. Here are some examples of these styles, and an explanation of their meaning.
Code words in text, database table names, folder names, filenames, file extensions, pathnames, dummy URLs, user input, and Twitter handles are shown as follows: "Arduino will then move to the loop()
function and begin executing the statements there."
A block of code is set as follows:
// Pin D7 has an LED connected on FLORA. // give it a name: int led = 7; // the setup routine runs once when you press RESET: void setup() { // initialize the digital pin as an output. pinMode(led, OUTPUT); } // the loop routine runs over and over again forever: void loop() { digitalWrite(led, HIGH); // turn the LED on delay(100); // wait for a second digitalWrite(led, LOW); // turn the LED off delay(1000); // wait for a second }
New terms and important words are shown in bold. Words that you see on the screen, in menus or dialog boxes for example, appear in the text like this: "Select the TFTDisplayText example by navigating to Examples | TFT | Arduino | TFTDisplayText."
Note
Warnings or important notes appear in a box like this.
Tip
Tips and tricks appear like this.
- CMDB分步構建指南
- Beginning Java Data Structures and Algorithms
- Vue.js 2 and Bootstrap 4 Web Development
- Java開發入行真功夫
- 編寫高質量代碼:改善C程序代碼的125個建議
- Nginx Essentials
- C/C++程序員面試指南
- Learning Unreal Engine Android Game Development
- Mastering ArcGIS Enterprise Administration
- 快速入門與進階:Creo 4·0全實例精講
- Java語言程序設計實用教程(第2版)
- HTML5 Canvas核心技術:圖形、動畫與游戲開發
- Raspberry Pi開發實戰
- HTML5+jQuery Mobile移動應用開發
- JavaWeb入門經典