Octoprint config help

I am trying to integrate octoprint into my home assistant.
octoprint:
host: 172.xxx.xxx.xxx
api_key: xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
name: CR10
port: 5000
bed: true
sensors:
monitored_conditions:
- ‘Current State’
- ‘Job Percentage’
- ‘Temperatures’

My first question is how do i get the temp sensor for the hot end. Secondly, how do i get the temp to show in C instead of F

You need to include: “number_of_tools: 1” place that under “bed: true” and to keep the C instead of the F, you need to place this in your customize.yaml:

sensor.your_printer_actual_tool0_temp:
  unit_of_measurement: 'ºC'
sensor.your_printer_target_tool0_temp:
  unit_of_measurement: 'ºC'
sensor.your_printer_actual_bed_temp:
  unit_of_measurement: 'ºC'
sensor.your_printer_target_bed_temp:
  unit_of_measurement: 'ºC'

I think that will do it for you.

like this?
octoprint:
host: 172.xxx.xxx.xxx
api_key: xxxxxxxxxxxxxxxxxxx
name: CR10
port: 5000
bed: true
number of tools: 2
sensors:
monitored_conditions:
- ‘Current State’
- ‘Job Percentage’
- ‘Temperatures’
- sensor.your_printer_actual_tool0_temp:
unit_of_measurement: ‘ºC’
- sensor.your_printer_target_tool0_temp:
unit_of_measurement: ‘ºC’
- sensor.your_printer_actual_bed_temp:
unit_of_measurement: ‘ºC’
- sensor.your_printer_target_bed_temp:
unit_of_measurement: 'º

No, the customize items will go under the customize section in you configuration.yaml or in the customize.yaml if you split your config. Check this out:

Okay. I’ll give that a try. Thanks