- 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."
推薦閱讀
- C程序設計簡明教程(第二版)
- Angular UI Development with PrimeNG
- JavaScript高效圖形編程
- Visual Basic程序設計教程
- VMware vSphere 6.7虛擬化架構實戰指南
- Nginx Essentials
- RISC-V體系結構編程與實踐(第2版)
- Mastering Backbone.js
- Backbone.js Testing
- 大學計算機基礎實訓教程
- Penetration Testing with the Bash shell
- Learning Cocos2d-JS Game Development
- 算法精解:C語言描述
- HTML5+CSS+JavaScript深入學習實錄
- 三步學Python