├── .github └── workflows │ └── build.yml ├── .gitignore ├── CHANGELOG.md ├── Cargo.toml ├── LICENSE-APACHE ├── LICENSE-MIT ├── README.md ├── examples └── linux.rs ├── release.toml ├── src ├── correction.rs ├── device_impl.rs ├── lib.rs └── types.rs └── tests ├── common └── mod.rs └── integration.rs /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eldruin/veml6030-rs/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eldruin/veml6030-rs/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eldruin/veml6030-rs/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eldruin/veml6030-rs/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE-APACHE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eldruin/veml6030-rs/HEAD/LICENSE-APACHE -------------------------------------------------------------------------------- /LICENSE-MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eldruin/veml6030-rs/HEAD/LICENSE-MIT -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eldruin/veml6030-rs/HEAD/README.md -------------------------------------------------------------------------------- /examples/linux.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eldruin/veml6030-rs/HEAD/examples/linux.rs -------------------------------------------------------------------------------- /release.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eldruin/veml6030-rs/HEAD/release.toml -------------------------------------------------------------------------------- /src/correction.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eldruin/veml6030-rs/HEAD/src/correction.rs -------------------------------------------------------------------------------- /src/device_impl.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eldruin/veml6030-rs/HEAD/src/device_impl.rs -------------------------------------------------------------------------------- /src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eldruin/veml6030-rs/HEAD/src/lib.rs -------------------------------------------------------------------------------- /src/types.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eldruin/veml6030-rs/HEAD/src/types.rs -------------------------------------------------------------------------------- /tests/common/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eldruin/veml6030-rs/HEAD/tests/common/mod.rs -------------------------------------------------------------------------------- /tests/integration.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eldruin/veml6030-rs/HEAD/tests/integration.rs --------------------------------------------------------------------------------