Ajout matériel SM309

Bonjour,

J’ai installé un module on/off dimmable de Samotech.
Il est reconnue et pilotable dans l’application Hue de philips.
Il est par contre mal reconnue par le plug-in philipshue dans Jeedom.
En sélectionnant default_nocolor j’arrive à faire un on et un off mais je n’ai pas de retour d’état.

Serait-il possible de le rajouter dans la liste ?

voici ce que retourne l’API Hue :

{
	"state": {
		"on": false,
		"bri": 254,
		"alert": "none",
		"mode": "homeautomation",
		"reachable": true
	},
	"swupdate": {
		"state": "notupdatable",
		"lastinstall": "2022-01-13T19:36:53"
	},
	"type": "Dimmable light",
	"name": "Module plafonnier Chambre",
	"modelid": "SM309",
	"manufacturername": "Samotech",
	"productname": "Dimmable light",
	"capabilities": {
		"certified": false,
		"control": {},
		"streaming": {
			"renderer": false,
			"proxy": false
		}
	},
	"config": {
		"archetype": "ceilingsquare",
		"function": "functional",
		"direction": "omnidirectional"
	},
	"uniqueid": "..:..:..:..:..:..:..:..-..",
	"swversion": "2.5.3_r49"
}

et ici un png du module SM309
sm309

Merci pour votre aide.
Bonne année et meilleurs voeux

Bonjour,

En creusant un peu voici le .json qui fonctionne pour cet équipement (micro module on/off dimable)
Si c’est possible de l’inclure à l’occasion d’une prochaine MaJ :slight_smile:
Merci.

{
  "SM309": {
    "name": "Samotech SM309",
    "configuration" :{
      "gammut" : "-"
    },
    "commands": [
      {
        "name": "Etat Luminosité",
        "type": "info",
        "subtype": "numeric",
        "display": {
          "generic_type": "LIGHT_STATE"
        },
        "isVisible": 0,
        "isHistorized": 0,
        "logicalId": "luminosity_state"
      },
     
      {
        "name": "On",
        "type": "action",
        "subtype": "other",
        "display": {
          "generic_type": "LIGHT_ON"
        },
        "value" : "Etat Luminosité",
        "isVisible": 0,
        "isHistorized": 0,
        "logicalId": "on"
      },
      {
        "name": "Off",
        "type": "action",
        "subtype": "other",
        "display": {
          "generic_type": "LIGHT_OFF"
        },
        "value" : "Etat Luminosité",
        "isVisible": 0,
        "isHistorized": 0,
        "logicalId": "off"
      },
      {
        "name": "Luminosité",
        "type": "action",
        "subtype": "slider",
        "display": {
          "generic_type": "LIGHT_SLIDER"
        },
        "configuration" :{
          "minValue" : 0,
          "maxValue" : 254
        },
        "template":{
          "dashboard" : "light",
          "mobile" : "light"
        },
        "value" : "Etat Luminosité",
        "isVisible": 1,
        "isHistorized": 0,
        "logicalId": "luminosity"
      },
      {
        "name": "Transition status",
        "type": "info",
        "subtype": "numeric",
        "display": {
          "generic_type": "DONT"
        },
        "isVisible": 0,
        "isHistorized": 0,
        "logicalId": "transition_state"
      },
      {
        "name": "Transition",
        "type": "action",
        "subtype": "slider",
        "display": {
          "generic_type": "DONT"
        },
        "configuration" :{
          "minValue" : 0,
          "maxValue" : 1800
        },
        "value" : "Transition status",
        "isVisible": 0,
        "isHistorized": 0,
        "logicalId": "transition"
      }
    ]
  }
}