Skip to content

Commit 76809e4

Browse files
committed
Fix README markdown artefacts.
1 parent 350f3d1 commit 76809e4

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ The driver for the official LCD160CR is included in Pyboard firmware. Source is
3434

3535
## 1.1 Interpolation
3636

37-
In camera applications the 8*8 matrix of the AMG8833 gives a "blocky" effect.
37+
In camera applications the 8x8 matrix of the AMG8833 gives a "blocky" effect.
3838
This can be reduced by using bicubic interpolation. Files and
3939
[doc](./interpolate/README.md) for this are in the `interpolate` directory.
4040

@@ -69,7 +69,7 @@ Data access methods:
6969
callback (see commented out code in `cam.py`).
7070
* `__getitem__` Args `row`, `col`. Enables access to the data retrieved by
7171
`refresh`. Return value is a signed integer representing the temperature of
72-
that pixel in °C (or °C * 4 in high resolution mode).
72+
that pixel in °C (or °C x 4 in high resolution mode).
7373
* `temperature` No args. Returns the device temperature in °C as a float.
7474

7575
Mode setting methods:

interpolate/README.md

+6-6
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
# AMG8833 Interpolating Camera
22

3-
The 8*8 resolution of the AMG8833 produces a "blocky" display. The illusion of
3+
The 8x8 resolution of the AMG8833 produces a "blocky" display. The illusion of
44
higher resolution may be achieved using bicubic interpolation. This is
5-
computationally intensive. On a Pyboard 1.1 the frame rate for 32*32 pixels
5+
computationally intensive. On a Pyboard 1.1 the frame rate for 32x32 pixels
66
using Python code is ~1Hz. This can be increased to ~2.5Hz using assembler.
77

88
##### [Main README](../README.md)
99

1010
# 1. Files
1111

12-
* `cam_interp.py` 32*32 pixel demo using the Adafruit 0.96 inch OLED.
12+
* `cam_interp.py` 32x32 pixel demo using the Adafruit 0.96 inch OLED.
1313
* `interpolate.py` Portable interpolator using optimised Python code.
1414
* `interpolate_a.py` Version using Arm Thumb2 Assembler.
1515

@@ -30,9 +30,9 @@ Methods:__
3030

3131
# Usage
3232

33-
Converting a working 8*8 camera application to use interpolation is simple. The
34-
aim is to replace the 8*8 array of pixels with a larger array of smaller
35-
pixels: the `cam_interp.py` demo uses 32*32 squares of size 2*2.
33+
Converting a working 8x8 camera application to use interpolation is simple. The
34+
aim is to replace the 8x8 array of pixels with a larger array of smaller
35+
pixels: the `cam_interp.py` demo uses 32x32 squares of size 2x2.
3636

3737
After instantiating the sensor, create an `Interpolator`:
3838
```python

0 commit comments

Comments
 (0)