Skip to content

Commit

Permalink
remove terminal from chapters
Browse files Browse the repository at this point in the history
  • Loading branch information
snowwolf007cn committed Apr 21, 2024
1 parent 2eb59b5 commit abb3d5c
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/ch21_analog_read_serial.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ ufmt::uwriteln!(&mut serial, "{}",sensor_value).unwrap_infallible();
cargo build
cargo run
```
如果您此时尚未退出或者退出后通过VS Code的串行监视器连接到板卡串口,您应该会看到稳定的 范围从 0 到 1023 的数字流,与旋钮的位置相关。 当您转动电位器时,这些数字几乎会立即响应。
通过VS Code的串行监视器连接到板卡串口,您应该会看到稳定的 范围从 0 到 1023 的数字流,与旋钮的位置相关。 当您转动电位器时,这些数字几乎会立即响应。

完整代码如下:
src/main.js
Expand Down
2 changes: 1 addition & 1 deletion src/ch23_digital_read_serial.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ ufmt::uwriteln!(&mut serial, "{}",sensor_value).unwrap_infallible();
cargo build
cargo run
```
如果您此时尚未退出或者退出后通过VS Code的串行监视器连接到板卡串口,如果开关打开,您将看到一串“0”;如果开关关闭,您将看到“1”。
通过VS Code的串行监视器连接到板卡串口,如果开关打开,您将看到一串“0”;如果开关关闭,您将看到“1”。

完整代码如下:
src/main.rs
Expand Down
2 changes: 1 addition & 1 deletion src/ch34_input_pullup_serial.md
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ ufmt::uwriteln!(&mut serial, "{}", is_high).unwrap_infallible();
cargo build
cargo run
```
如果您此时尚未退出或者退出后通过VS Code的串行监视器连接到板卡串口,如果按钮按下,您将看到一串false,如果按钮松开,您将看到true流。 当开关处于高电平时,引脚 13 上的 LED 将亮起,而当开关处于低电平时,引脚 13 上的 LED 将熄灭。
通过VS Code的串行监视器连接到板卡串口,如果按钮按下,您将看到一串false,如果按钮松开,您将看到true流。 当开关处于高电平时,引脚 13 上的 LED 将亮起,而当开关处于低电平时,引脚 13 上的 LED 将熄灭。

完整代码如下:

Expand Down
2 changes: 1 addition & 1 deletion src/ch51_create_a_led_dimmer.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ cargo build
cargo run
```

运行本示例,需要使用VS Code的串行监视器,并使用十六进制或者二进制格式发送一个字节的数据。
使用VS Code的串行监视器,并使用十六进制或者二进制格式发送一个字节的数据。

完整代码如下:

Expand Down

0 comments on commit abb3d5c

Please sign in to comment.