- BeagleBone Robotic Projects(Second Edition)
- Dr. Richard Grimmett
- 244字
- 2021-07-02 22:06:37
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:
void loop() {
delay(500);
unsigned int uS1 = sonar1.ping();
unsigned int uS2 = sonar2.ping();
unsigned int uS3 = sonar3.ping();
Serial.print(uS1 / US_ROUNDTRIP_CM);
Serial.print(“,”);
Serial.print(uS2 / US_ROUNDTRIP_CM);
Serial.print(“,”);
Serial.println(uS3 / US_ROUNDTRIP_CM);
}
When we wish to draw your attention to a particular part of a code block, the relevant lines or items are set in bold:
void loop() {
delay(500);
unsigned int uS1 = sonar1.ping();
unsigned int uS2 = sonar2.ping();
unsigned int uS3 = sonar3.ping();
Serial.print(uS1 / US_ROUNDTRIP_CM);
Serial.print(“,”);
Serial.print(uS2 / US_ROUNDTRIP_CM);
Serial.print(“,”);
Serial.println(uS3 / US_ROUNDTRIP_CM);
}
Any command-line input or output is written as follows:
sudo rc_test_motors
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."
Warnings or important notes appear in a box like this.
Tips and tricks appear like this.
- Python自動化運維快速入門
- AIRAndroid應用開發實戰
- PHP+MySQL+Dreamweaver動態網站開發實例教程
- iOS編程基礎:Swift、Xcode和Cocoa入門指南
- 算法訓練營:提高篇(全彩版)
- Mastering Apache Spark 2.x(Second Edition)
- Extending Puppet(Second Edition)
- Microsoft Azure Storage Essentials
- Zabbix Performance Tuning
- Python期貨量化交易實戰
- 深入實踐DDD:以DSL驅動復雜軟件開發
- jQuery從入門到精通(微課精編版)
- After Effects CC案例設計與經典插件(視頻教學版)
- Java EE程序設計與開發實踐教程
- HikariCP數據庫連接池實戰