Chameleon Smart Home Controller

Hi,

I am new to this openHab. I have a Chameleon called smart home system at home. This has an HTTPS REST API, where I can read all the items on the network and even controll them. The data is in JSON format.
I want to create a dedicated plugin for this hardware. My question is where can I start, do you know any similar plugin which is work the same way(or closely to this)?

Evening,
Have you had any luck with integration ?

To the best of my knowledge, they do not produce OpenHab-Chameleon integration.

I will also be forced to create a third system that can communicate with both systems and synchronize the values.

Now that I have a control panel, I was able to resolve the connection from the openHAB site.

This is the HTTP Thing implementation:

UID: http:url:0000000000
label: HTTP URL Thing
thingTypeUID: http:url
configuration:
  authMode: DIGEST
  headers:
    - Authorization = Bearer 00000000-0000-0000-0000-000000000000
  ignoreSSLErrors: false
  baseURL: http://0.0.0.0:9000/v1/states
  delay: 0
  stateMethod: GET
  refresh: 30
  commandMethod: PUT
  contentType: text/plain
  timeout: 3000
  bufferSize: 2048
channels:
  - id: Controller_Relay_1
    channelTypeUID: http:switch
    label: Controller Relay
    description: null
    configuration:
      onValue: "1"
      offValue: "0"
      stateExtension: /46
      commandExtension: /46
  - id: Virtual_Dimmer_1
    channelTypeUID: http:number
    label: "Virtual Dimmer #1"
    description: ""
    configuration:
      stateExtension: /91
      commandExtension: /91

On Chameleon site you need to enable REST API.
The GUID on the authorization line is the API key from the REST API config.
At the Channels you must use the RegisterNumber (/91 /46) not the SerialId from Chameleon.