Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/simplefoc_library/examples/foc_pendulum.md
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@ PciManager.registerListener(&listenerPB);
And that is it the pendulum is ready, let's setup the motor.

### Motor code
First we need to define the `BLDCMotor` class with the number od pole pairs(`11`).
First we need to define the `BLDCMotor` class with the number of pole pairs(`11`).
```cpp
// define BLDC motor
BLDCMotor motor = BLDCMotor(11);
Expand Down
2 changes: 1 addition & 1 deletion docs/simplefoc_library/examples/gimbal_velocity_example.md
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ And that is it, let's setup the motor.


## Motor code
First we need to define the `BLDCMotor` class with the number od pole pairs (`14`)
First we need to define the `BLDCMotor` class with the number of pole pairs (`14`)
```cpp
// define BLDC motor
BLDCMotor motor = BLDCMotor(14);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ And that is it, let's setup the motor.


## Motor code
First we need to define the `BLDCMotor` class with the number od pole pairs (`11`)
First we need to define the `BLDCMotor` class with the number of pole pairs (`11`)
```cpp
// define BLDC motor
BLDCMotor motor = BLDCMotor(11);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ And that is it, let's setup the motor.


## Motor code
First we need to define the `BLDCMotor` class with the number od pole pairs (`11`)
First we need to define the `BLDCMotor` class with the number of pole pairs (`11`)
```cpp
// define BLDC motor
BLDCMotor motor = BLDCMotor(11);
Expand Down Expand Up @@ -294,4 +294,4 @@ void loop() {
// user communication
command.run();
}
```
```
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ And that is it, let's setup the motor.


## Motor code
First we need to define the `BLDCMotor` class with the number od pole pairs (`14`)
First we need to define the `BLDCMotor` class with the number of pole pairs (`14`)
```cpp
// define BLDC motor
BLDCMotor motor = BLDCMotor(14);
Expand Down