Skip to content

Commit a11819c

Browse files
committed
spellchk
1 parent c8f77fc commit a11819c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

content/micropython/01.basics/08.reference/reference.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1095,7 +1095,7 @@ SPI communication is initialized using the `SPI` object from the `machine` modul
10951095

10961096
`spi = machine.SPI(port, baudrate, polarity, phase)`
10971097

1098-
SPI is initalized by importing the `machine` module and specifying a number of parameters, such as baudrate and polarity.
1098+
SPI is initialized by importing the `machine` module and specifying a number of parameters, such as baudrate and polarity.
10991099

11001100
**Example:**
11011101

@@ -1256,7 +1256,7 @@ The frequency for the clock is set during initialization. See [begin()](#wirebeg
12561256

12571257
MicroPython has a built in class called `SoftI2C` (as in software I2C). Software I2C does not use a dedicated hardware I2C peripheral, but instead relies on the CPU to handle the clock signal, communication protocol etc.
12581258

1259-
`SoftI2C` is avaialable through the `machine` module, and uses the same API as hardware I2C, with a few additional methods.
1259+
`SoftI2C` is available through the `machine` module, and uses the same API as hardware I2C, with a few additional methods.
12601260

12611261
- `softi2c = machine.SoftI2C(scl,sda,freq,timeout)` - creates the `softi2c` object with specified pins, frequency and timeout.
12621262
- `softi2c.start()` - create the start condition for initializing communication over I2C (SDA goes to **LOW** while SCL is **HIGH**).

0 commit comments

Comments
 (0)