Need help configuring the RGB controller other than the default

Hi.
Let’s start with the fact that I am a complete beginner and all of my modest setup is done only thanks to the community.
Thank you all very much.
The actual issue:
I have a controller for RGB tapes (arilux LC01) runing Tasmota.
The thing is that I would like to use it rather untypically.
It will not be used for RGB tape, but to control two separate LED strips.
One of them is CCT (winter white-warm white) and the other is a tape with black light (ONLY)
As suggested in the Tasmot help chat, I changed the module type from arilux LC01 (RGB) to LC11 (RGBCCT).
I’ve changed the GPIO PWM assignments to control the outputs I’ve connected my led strips to, and got rid of the “redundant” ones.
I set separate switches for CCT and RGB

Now the connections in the controller look like this:
output “R” - red ( strip 2)
output “G” - warm white ( strip 1)
output “B” - cold white ( strip 1 )
The problem is that while the CCT works and is detected in HomeAssistant perfectly, the red one is configured as RGB all the time (in the attached image).

It has all the attributes of a full RGB control: effects, color wheel, etc.
And I have ONLY the single red tape connected.
I’d like to (by some miraculous means) get rid of all the RGB “advantages”, and leave only the dimming capability on that output.
I’m trying to search for something that could help me, but as I wrote earlier I’m a complete beginner.
Additionally, English is not my language and I use a translator, so I apologize in advance for any mistakes.

OK, I solved this problem myself.
I don’t know if right or wrong, if according to the rules, etc. but it works.
Using information from the sites:

I created a new entity in lights.yaml that has ONLY on/off and dimming.

- platform: mqtt
  schema: template
  name: 'nameofthelight'
  command_topic: "cmnd/onoffanddimmer/Backlog"
  command_on_template: >-
      {% if brightness is defined %}
      Dimmer1 {{ (brightness / 2.55) | int }}; 
      {% endif %}
      {% if state is defined %}
      Power1 1; 
      {%- endif -%}
  command_off_template: "Power1 0"
  state_topic: "tele/onoffanddimmer/STATE"
  state_template: '{{ value_json.POWER1 | lower }}'
  availability_topic: 'tele/onoffanddimmer/LWT'
  payload_available: 'Online'
  payload_not_available: 'Offline'
  brightness_template: '{{ (value_json.Dimmer1 * 2.55) | int }}'

And that’s it.