- Wearable:Tech Projects with the Raspberry Pi Zero
- Jon Witts
- 219字
- 2021-07-02 19:46:20
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, path names, dummy URLs, user input, and Twitter handles are shown as follows: "We start a while True: loop, which will continue until we stop the program." A block of code is set as follows:
def adxlToRGB(axis):
axes = adxl345.getAxes(True)
absADXL = abs(axes[axis])
if (absADXL >= 1):
absADXL = 1
rgbADXL = int(255 * absADXL)
return rgbADXL
When we wish to draw your attention to a particular part of a code block, the relevant lines or items are set in bold:
def adxlToRGB(axis):
axes = adxl345.getAxes(True)
absADXL = abs(axes[axis])
if (absADXL >= 1):
absADXL = 1
rgbADXL = int(255 * absADXL)
return rgbADXL
Any command-line input or output is written as follows:
sudo nano /lib/systemd/system/wearableHat.service
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: "Click on the blue Select image button and browse to the Jessie Lite zip archive you just downloaded"
- Objective-C Memory Management Essentials
- Vue.js 2 and Bootstrap 4 Web Development
- 編程卓越之道(卷3):軟件工程化
- INSTANT Sencha Touch
- Object-Oriented JavaScript(Second Edition)
- Unity 2018 Shaders and Effects Cookbook
- 21天學通C++(第5版)
- C# and .NET Core Test Driven Development
- 打開Go語言之門:入門、實戰與進階
- Android移動應用開發項目教程
- 精通Spring:Java Web開發與Spring Boot高級功能
- Python應用與實戰
- Android初級應用開發
- Python深度學習(第2版)
- Mastering ASP.NET Web API