I have just changed over to 2025.2.0 and the external components change has caused an issue with VEML6075 UVA Detectors.
Currently the config looks like this
includes:
- veml6075_custom_sensor.h
libraries:
- "Wire"
- "https://github.com/sparkfun/SparkFun_VEML6075_Arduino_Library"
and
# UV 6075 Sensor
- platform: custom
lambda: |-
auto veml6075 = new VEML6075CustomSensor(50000);
App.register_component(veml6075);
return {veml6075->uva_sensor, veml6075->uvb_sensor};
sensors:
- name: "uva"
id: zelva_uva
unit_of_measurement: "µW/c²"
accuracy_decimals: 0
- name: "uvb"
id: zelva_uvb
unit_of_measurement: "µW/c²"
accuracy_decimals: 0
Has anyone been able to convert this to an external_component ?