The chat responses are generated using Generative AI technology for intuitive search and may not be entirely accurate. They are not intended as professional advice. For full details, including our use rights, privacy practices and potential export control restrictions, please refer to our Generative AI Service Terms of Use and Generative AI Service Privacy Information. As this is a test version, please let us know if something irritating comes up. Like you get recommended a chocolate fudge ice cream instead of an energy managing application. If that occurs, please use the feedback button in our contact form!
Skip to content
Enlighted

The Enlighted lighting solution optimizes energy savings while enhancing occupant productivity, well-being, and security.

Auto Mode for a Fixture¶

Sets the sensors to Auto mode. In this mode, the level of occupancy in the area determines the fixture dim level.

Request¶

POST https://{em_ip_address_or_hostname}/ems/api/org/fixture/v1/op/auto
 <fixtures>
  <fixture>
    <id>27</id>
  </fixture>
</fixtures>

Parameters¶

NameDescription
Request
em_ip_address_or_hostnameThe Enlighted Manage (EM) IP address or hostname
fixture_idThe fixture or sensor identifier. Use the Fixture ID returned in the Get Sensor Details by Floor API or in EM, select Facility > Floor in the left panel, Floor Plan tab, and double-click the fixture icon in the floor plan to obtain the Fixture ID.
Response
status0 – Auto mode successful; lights are dimmed based on occupancy
1 – Auto mode unsuccessful

Sample Request¶

Sets the sensor with ID ‘27’ to auto mode. The response is successful, which means lights are dimmed based on occupancy level.

POST https://192.80.3.2/ems/api/org/v1/op/auto
<fixtures>
 <fixture>
 <id>27</id>
 </fixture>
</fixtures>

Sample Response¶

{
  "status": "0"
}