- Arduino Wearable Projects
- Tony Olsson
- 186字
- 2021-07-16 20:24:09
Conventions
In this book, you will find a number of text styles 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: "We can include other contexts through the use of the include
directive."
A block of code is set as follows:
//Variable to store the pin int ldrSensor = 10; void setup(){ //Start the serial communication Serial.begin(9600); } void loop(){ //Save the data from the sensor into storeData int storeData=analogRead(ldrSensor); //Re-map storeData to a new range of values int mapValue=map(storeData,130,430,0,2000); //Print the re-mapped value Serial.println(mapValue); //Give the computer some time to print delay(200) }
New terms and important words are shown in bold. Words that you see on the screen, for example, in menus or dialog boxes, appear in the text like this: "Clicking the Next button moves you to the next screen."
推薦閱讀
- C# 2012程序設計實踐教程 (清華電腦學堂)
- Rust編程從入門到實戰
- Java從入門到精通(第4版)
- Python測試開發入門與實踐
- Python Tools for Visual Studio
- Building Mapping Applications with QGIS
- Mastering LibGDX Game Development
- 人人都是網站分析師:從分析師的視角理解網站和解讀數據
- 微信小程序開發解析
- 程序員修煉之道:通向務實的最高境界(第2版)
- 零基礎入門學習Python
- ASP.NET Core 2 Fundamentals
- PHP與MySQL權威指南
- Learning iOS Security
- Tableau Desktop可視化高級應用