- Building Wireless Sensor Networks Using Arduino
- Matthijs Kooijman
- 193字
- 2021-07-09 21:44:34
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, folder names, filenames, file extensions, pathnames, dummy URLs, user input, and configuration values are shown as follows: "Sending a packet is handled by the sendPacket()
function."
A block of code is set as follows:
// the loop function runs over and over again forever void loop() { digitalWrite(13, HIGH); // turn the LED on (HIGH is the voltage level) delay(1000); // wait for a second digitalWrite(13, LOW); // turn the LED off by making the voltage LOW delay(1000); // wait for a second }
Any command-line input or output is written as follows:
openssl rand -hex 16
New terms and important words are shown in bold. Words that you see on the screen, for example, in menus or dialog boxes, also appears in bold like this: "Click on the Update Firmware button to replace the firmware of your device."
推薦閱讀
- HTML5+CSS3王者歸來
- FuelPHP Application Development Blueprints
- Visual Basic .NET程序設計(第3版)
- Java范例大全
- Mobile Web Performance Optimization
- Java系統分析與架構設計
- Beginning C++ Game Programming
- Unity 2018 Shaders and Effects Cookbook
- Fast Data Processing with Spark(Second Edition)
- Lift Application Development Cookbook
- Java程序設計與項目案例教程
- 平面設計經典案例教程:CorelDRAW X6
- 3ds Max印象 電視欄目包裝動畫與特效制作
- Distributed Computing in Java 9
- Android Sensor Programming By Example