UNPKG

jvsveml6070

Version:

Node.js package for the Vishay VEML6070 UVA Light Sensor, written in TypeScript.

15 lines (14 loc) 484 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.ShutdownMode = void 0; var ShutdownMode; (function (ShutdownMode) { /** * Disabled. */ ShutdownMode[ShutdownMode["DISABLED"] = 0] = "DISABLED"; /** * Enabled (reduces power consumption to less than 1 μA according to the datasheet). */ ShutdownMode[ShutdownMode["ENABLED"] = 1] = "ENABLED"; })(ShutdownMode = exports.ShutdownMode || (exports.ShutdownMode = {}));