Need help switching driver for new Jasco (embrighten) to fan (from switch)

Phil hasn’t done any work on his drivers in several years and doesn’t support newer devices. @csstup took up support for Phil’s drivers and consolidated all the GE/Jasco into a single driver. You should install his Z-Wave Switch CS driver from his channel here. If your device’s fingerprint is not supported in his driver, post a request here.

EDIT:

If your device fingerprint is this:

  • id: “0063/4944/3138”
    deviceLabel: GE Fan 14314
    manufacturerId: 0x0063
    productType: 0x4944
    productId: 0x3138

Corey’s driver will support it with these capabilities:

name: ge-fan-legacy
components:
- id: main
  capabilities:
  - id: switch
    version: 1
  - id: switchLevel
    version: 1
  - id: fanSpeed
    version: 1
  - id: firmwareUpdate
    version: 1
  - id: refresh
    version: 1
  categories:
  - name: Fan
metadata:
  deviceType: Fan
  ocfDeviceType: oic.d.fan
  deviceTypeId: Fan
  vid: 12a872c0-6b74-3e99-ace1-2ff81e1f283b
  mnmn: SmartThingsCommunity
preferences:
  - title: "LED Indicator"
    name: ledIndicator
    description: "Turn LED indicator on"
    required: true
    preferenceType: enumeration
    definition:
      options:
        0: "Turn on when switch is on"
        1: "Turn on when switch is off"
        2: "Always off"
      default: 0
  - title: "Invert Switch"
    name: invertSwitch
    description: "Invert switch"
    required: true
    preferenceType: enumeration
    definition:
      options:
        0: "No"
        1: "Yes"
      default: 0
3 Likes