- 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.
- C#高級編程(第10版) C# 6 & .NET Core 1.0 (.NET開發經典名著)
- ThinkPHP 5實戰
- Python測試開發入門與實踐
- 利用Python進行數據分析(原書第3版)
- Android系統原理及開發要點詳解
- HTML 5與CSS 3權威指南(第3版·上冊)
- QlikView Unlocked
- 跟戴銘學iOS編程:理順核心知識點
- 大數據時代的企業升級之道(全3冊)
- SQL Server實例教程(2008版)
- Ionic3與CodePush初探:支持跨平臺與熱更新的App開發技術
- 軟件設計模式(Java版)
- Vue.js 3.x高效前端開發(視頻教學版)
- Lync Server Cookbook
- Kotlin核心編程