Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove info about F3 mcus from Temperature sensors documentation #9337

Merged
merged 1 commit into from
Oct 3, 2023
Merged
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
17 changes: 0 additions & 17 deletions docs/Temperature sensors.md
Original file line number Diff line number Diff line change
Expand Up @@ -89,23 +89,6 @@ To change for example the configuration of the fourth sensor to label `BATT`, mi

`temp_sensor 3 2 7d01186838f2ff28 5 450 0 BATT`

## Building a custom firmware with temperature sensor support (F3 only)

This needs to be added in the `target.h` file:

```
#define USE_TEMPERATURE_SENSOR
#define TEMPERATURE_I2C_BUS BUS_I2Cx // replace x with the index of the I²C bus the temperature sensors will be connected to

// for LM75 sensors support
#define USE_TEMPERATURE_LM75

// for DS18B20 sensors
#define USE_1WIRE
#define USE_1WIRE_DS2482
#define USE_TEMPERATURE_DS18B20
```

## Configuring the way OSD temperature labels are displayed

You can use the `osd_temp_label_align` setting to chose how the labels for the temperature sensor's values are displayed. Possible alignment values are `LEFT` and `RIGHT`.
Expand Down
Loading