{"id":13802501,"url":"https://github.com/neliogodoi/MicroPython-VEML6075","last_synced_at":"2025-05-13T13:31:32.376Z","repository":{"id":81135434,"uuid":"210198731","full_name":"neliogodoi/MicroPython-VEML6075","owner":"neliogodoi","description":" Driver base for the VEML6075 UV Light Sensor","archived":false,"fork":false,"pushed_at":"2019-09-30T22:38:35.000Z","size":255,"stargazers_count":2,"open_issues_count":0,"forks_count":1,"subscribers_count":3,"default_branch":"master","last_synced_at":"2024-04-22T12:36:21.328Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/neliogodoi.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null}},"created_at":"2019-09-22T18:57:28.000Z","updated_at":"2023-10-11T11:59:44.000Z","dependencies_parsed_at":null,"dependency_job_id":"88fc8afc-9359-4b69-8453-bfcab3647eed","html_url":"https://github.com/neliogodoi/MicroPython-VEML6075","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/neliogodoi%2FMicroPython-VEML6075","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/neliogodoi%2FMicroPython-VEML6075/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/neliogodoi%2FMicroPython-VEML6075/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/neliogodoi%2FMicroPython-VEML6075/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/neliogodoi","download_url":"https://codeload.github.com/neliogodoi/MicroPython-VEML6075/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":225218079,"owners_count":17439713,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-08-04T00:01:45.941Z","updated_at":"2024-11-18T17:31:29.919Z","avatar_url":"https://github.com/neliogodoi.png","language":"Python","readme":"# MicroPython-VEML6075\n Driver base for the VEML6075 UV Light Sensor\n \n\u003e The VEML6075 senses UVA and UVB light and incorporates photodiode, amplifiers, and analog/digital circuits into a single chip using a CMOS process. When the UV sensor is applied, it is able to detect UVA and UVB intensity to provide a measure of the signal strength as well as allowing for UVI measurement.\n \n### \u003cb\u003eDataSheet:\u003c/b\u003e\nhttps://www.digchip.com/datasheets/parts/datasheet/3951/VEML6075-pdf.php (in 09/21/2019) or file \u003ci\u003e['VEML6075_datasheet.pdf'](https://github.com/neliogodoi/MicroPython-VEML6075/blob/master/VEML6075_datasheet.pdf)\u003c/i\u003e\u003cbr\u003e\n\n## \u003cb\u003eKey features:\u003c/b\u003e\n\n* Package type: surface mount\n* Dimensions (L x W x H in mm): 2.0 x 1.25 x 1.0\n* Integrated modules: ultraviolet sensor (UV), and signal conditioning IC\n* Converts solar UV light intensity to digital data\n* Excellent UVA and UVB sensitivity\n* Reliable performance of UV radiation measurement under long time solar UV exposure\n* 16-bit resolution per channel\n* UVA and UVB individual channel solution\n* Low power consumption\n* Temperature compensation: -40 °C to +85 °C\n* Output type: I2C bus\n* Operation voltage: 1.7V to 3.6V\n\n## \u003cb\u003eFiles:\u003c/b\u003e\n\n**'veml6075.py'**  Version for *Developers* of driver for geral devices compatibles of MicroPython - ESP8266, ESP32 and LoPy.\u003cbr\u003e\n\n**'veml6075_lowmem.py':** Version *Low Memory* of driver for geral devices compatibles of MicroPython - **No Documenteded**\n\n## \u003cb\u003eTests:\u003c/b\u003e\n#### ESP8266\n```python\nimport veml6075\nfrom machine import I2C, Pin\n\ni2c = I2C(sda=Pin(4), scl=Pin(5))\nsensor = veml6075.VEML6075(i2c=i2c)\n\nsensor.uv_index\n```\n#### ESP32\n```python\nimport  veml6075\nfrom machine import I2C, Pin\n\ni2c = I2C(sda=Pin(21), scl=Pin(22))\nsensor = veml6075.VEML6075(i2c=i2c)\n\nsensor.uv_index\n```\n#### LoPy\n```python\nimport veml6075\nfrom machine import I2C\n\ni2c = I2C(0, I2C.MASTER, baudrate=100000)\nsensor = veml6075.VEML6075(i2c=i2c)\n\nsensor.uv_index\n```\n\n## \u003cb\u003eDriver Benchmark for Memory Consumed*:\u003c/b\u003e\n\u003e MicroPython v1.11-8-g48dcbbe60 on 2019-05-29; ESP module with ESP8266\n\n|       |ESP8266|ESP32|LoPy|\n|------:|:-----:|:---:|:--:|\n|Total Memory device (Kb)|64|520|200|\n|MicroPython Consumes (kb)|31,75|388,25| |\n|Memory Free (Kb)|32.25|111.75||\n|Driver Uses  Memory  (Kb)|2.75|3.52|-|\n","funding_links":[],"categories":["Libraries"],"sub_categories":["Sensors"],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fneliogodoi%2FMicroPython-VEML6075","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fneliogodoi%2FMicroPython-VEML6075","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fneliogodoi%2FMicroPython-VEML6075/lists"}