- 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."
推薦閱讀
- Microsoft Exchange Server PowerShell Cookbook(Third Edition)
- Machine Learning with R Cookbook(Second Edition)
- Scala Design Patterns
- Mastering Ubuntu Server
- 編寫高質量代碼:改善C程序代碼的125個建議
- Building Cross-Platform Desktop Applications with Electron
- 琢石成器:Windows環境下32位匯編語言程序設計
- SharePoint Development with the SharePoint Framework
- Yii Project Blueprints
- 微服務從小白到專家:Spring Cloud和Kubernetes實戰
- AutoCAD 2009實訓指導
- Python編程:從入門到實踐(第3版)
- OpenCV 3 Blueprints
- Drupal 8 Development:Beginner's Guide(Second Edition)
- MATLAB 2020 GUI程序設計從入門到精通