Skip to content

Commit c0e51c3

Browse files
Fix typos and add alt text for example chapter09_07
1 parent fd55d6b commit c0e51c3

2 files changed

Lines changed: 6 additions & 5 deletions

File tree

575 KB
Loading

examples/chapter09_07/readme.md

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
# Example Chapter09_07
2+
23
## Controlling a Seven Segment Display
34

45
Example chapter09_07 makes use of object oriented
@@ -8,20 +9,20 @@ programming methods to control a seven segment display.
89

910
In this example, port pins are used to control a
1011
seven segment single-character display. As in most other examples,
11-
both a hardware version for the target system as well as a simlulated
12+
both a hardware version for the target system as well as a simulated
1213
PC version are available. The PC version writes its
1314
character to the output console.
1415

1516
## Application Description
1617

17-
The sixteen hexadecimal digits <img src="https://render.githubusercontent.com/render/math?math=0123456789\text{AbCdEF}">
18+
The sixteen hexadecimal digits $0123456789AbCdEF$
1819
are displayed sequentially, one digit per second.
1920
The dot (_i_._e_., period or decimal point) is toggled
2021
on and off for successive groups of 16 hexadecimal digits.
2122
The user LED is simultaneously toggled at the usual $\frac{1}{2}~\text{Hz}$.
2223

2324
The application task is intuitive and easy to understand.
24-
The followind code snippet from the application task
25+
The following code snippet from the application task
2526
`app::display::task_func`, for instance, depicts the control
2627
responsible for writing the character digit and decimal
2728
point on the seven segment display. The user LED is simultaneously
@@ -70,10 +71,10 @@ portable application layer code.
7071
The screenshot below shows the PC simulation
7172
of the display application task running in a console.
7273

73-
![](./images/seven_segment.pdf)
74+
![screenshot of PC simulation](./images/seven_segment.png)
7475

7576
## Hardware Setup
7677

7778
The hardware setup is shown in the image below.
7879

79-
![](./images/board7.jpg)
80+
![hardware setup](./images/board7.jpg)

0 commit comments

Comments
 (0)