UNPKG

jvsveml6070

Version:

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

23 lines (22 loc) 607 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.IntegrationTime = void 0; var IntegrationTime; (function (IntegrationTime) { /** * 1⁄2T. */ IntegrationTime[IntegrationTime["IT_HALF_T"] = 0] = "IT_HALF_T"; /** * 1T. */ IntegrationTime[IntegrationTime["IT_1T"] = 1] = "IT_1T"; /** * 2T. */ IntegrationTime[IntegrationTime["IT_2T"] = 2] = "IT_2T"; /** * 4T. */ IntegrationTime[IntegrationTime["IT_4T"] = 3] = "IT_4T"; })(IntegrationTime = exports.IntegrationTime || (exports.IntegrationTime = {}));