All Projects → leinardi → Androidthings Drivers

leinardi / Androidthings Drivers

Licence: apache-2.0
Android Things open source peripheral drivers

Programming Languages

java
68154 projects - #9 most used programming language

Projects that are alternatives of or similar to Androidthings Drivers

MPU-9250-Sensors-Data-Collect
MPU9250 (MPU6500 + AK8963) I2C Driver in Python for Raspbery PI
Stars: ✭ 51 (+70%)
Mutual labels:  i2c, driver
pwm-pca9685-rs
Platform-agnostic Rust driver for the PCA9685 I2C 16-channel, 12-bit PWM/Servo/LED controller
Stars: ✭ 19 (-36.67%)
Mutual labels:  i2c, driver
embedded-sht
Embedded SHT Drivers for Sensirion Temperature and Humidity Sensors - Download the Zip Package from the Release Page
Stars: ✭ 53 (+76.67%)
Mutual labels:  i2c, driver
Diozero
Java Device I/O library that is portable across Single Board Computers. Tested with Raspberry Pi, Odroid C2, BeagleBone Black, Next Thing CHIP, Asus Tinker Board and Arduinos. Supports GPIO, I2C, SPI as well as Serial communication. Also known to work with Udoo Quad.
Stars: ✭ 167 (+456.67%)
Mutual labels:  raspberry-pi, i2c
Cylon
JavaScript framework for robotics, drones, and the Internet of Things (IoT)
Stars: ✭ 3,862 (+12773.33%)
Mutual labels:  raspberry-pi, i2c
Johnny Five
JavaScript Robotics and IoT programming framework, developed at Bocoup.
Stars: ✭ 12,498 (+41560%)
Mutual labels:  raspberry-pi, i2c
embedded-ccs811-rs
Platform agnostic Rust driver for the CCS811 ultra-low power digital gas sensor for monitoring indoor air quality
Stars: ✭ 12 (-60%)
Mutual labels:  i2c, driver
Ha4iot
Open Source Home Automation system for .NET
Stars: ✭ 146 (+386.67%)
Mutual labels:  raspberry-pi, i2c
Ssd1306
Driver for SSD1306, SSD1331, SSD1351, IL9163, ILI9341, ST7735, PCD8544, Nokia 5110 displays running on Arduino/ESP32/Linux (Rasperry) platforms
Stars: ✭ 303 (+910%)
Mutual labels:  raspberry-pi, i2c
I2c Bus
I2C serial bus access with Node.js
Stars: ✭ 253 (+743.33%)
Mutual labels:  raspberry-pi, i2c
Awesome Android Things
A curated list of awesome android things tutorials, libraries and much more at one place
Stars: ✭ 883 (+2843.33%)
Mutual labels:  driver, android-things
Contrib Drivers
Open source peripheral drivers
Stars: ✭ 539 (+1696.67%)
Mutual labels:  driver, android-things
Piscope
Turn your Raspberry Pi into an Oscilloscope/XY Plotter with Python
Stars: ✭ 155 (+416.67%)
Mutual labels:  raspberry-pi, i2c
Hackpi
Hacking tool inside a Raspberry Pi zero
Stars: ✭ 218 (+626.67%)
Mutual labels:  raspberry-pi, driver
Ofxgpio
Library C++ for raspberrypi and orangepi, GPIO interfaces compatible with openframeworks.
Stars: ✭ 155 (+416.67%)
Mutual labels:  raspberry-pi, i2c
embedded-sps
Embedded i2c Driver for Sensirion Particulate Matter Sensors - Download the Zip Package from the Release Page
Stars: ✭ 36 (+20%)
Mutual labels:  i2c, driver
Android Things Electricity Monitor
Electricity Monitor using Android Things and Firebase Realtime Database
Stars: ✭ 118 (+293.33%)
Mutual labels:  raspberry-pi, android-things
Periph
Go·Hardware·Lean
Stars: ✭ 1,700 (+5566.67%)
Mutual labels:  raspberry-pi, i2c
arduino-sht
Repository for Sensirion humidity and temperature sensor support on Arduino
Stars: ✭ 43 (+43.33%)
Mutual labels:  i2c, driver
Rppal
A Rust library that provides access to the Raspberry Pi's GPIO, I2C, PWM, SPI and UART peripherals.
Stars: ✭ 463 (+1443.33%)
Mutual labels:  raspberry-pi, i2c

Android Things user-space drivers

Build Status GitHub license

Sample peripheral drivers for Android Things.

NOTE: these drivers are not production-ready. They are offered as sample implementations of Android Things user space drivers for common peripherals as part of the Developer Preview release. There is no guarantee of correctness, completeness or robustness.

How to use a driver

For your convenience, drivers in this repository are also published to JCenter as Maven artifacts. Look at their artifact and group ID in their build.gradle and add them as dependencies to your own project.

For example, to use the sh1106 driver, version 1.0, simply add the line below to your project's build.gradle:

dependencies {
    compile 'com.leinardi.android.things:driver-sh1106:1.0'
}

Current contrib drivers

Driver Type Usage (add to your gradle dependencies) Note
driver-ds3231 real-time clock (RTC) implementation 'com.leinardi.android.things:driver-ds3231:1.0' Maven metadata URI changelog sample driver-ds3231-receiver
driver-epaperdriverhat E-Paper Driver HAT implementation 'com.leinardi.android.things:driver-epaperdriverhat:1.0' Maven metadata URI changelog sample
driver-hcsr04 ultrasonic ranging module implementation 'com.leinardi.android.things:driver-hcsr04:1.0' Maven metadata URI changelog sample
driver-hd44780 alphanumeric dot matrix LCD implementation 'com.leinardi.android.things:driver-hd44780:1.0' Maven metadata URI changelog sample
driver-lsm9ds1 3D accelerometer, 3D gyroscope, 3D magnetometer and temperature sensor implementation 'com.leinardi.android.things:driver-lsm9ds1:1.0' Maven metadata URI changelog sample
driver-sh1106 OLED display implementation 'com.leinardi.android.things:driver-sh1106:1.0' Maven metadata URI changelog sample
driver-tsl256x light-to-digital converter implementation 'com.leinardi.android.things:driver-tsl256x:1.0' Maven metadata URI changelog sample

Change of group ID and package name

If you are using the version 0.1 of driver-lsm9ds1, driver-pcf8574-hd44780 or driver-sh1106 please be aware that the group ID and package name of these drives have been changed from com.leinardi.androidthings to com.leinardi.android.things. If you want to use a version later than 0.1 you need to update your build.gradle to use the new group id and the imports in your Java/Kotlin files to use the new package name. In addition to this, also the artifact ID of driver-pcf8574-hd44780 has been changed to driver-hd44780.

License

Copyright 2018 Roberto Leinardi.

Licensed to the Apache Software Foundation (ASF) under one or more contributor license agreements. See the NOTICE file distributed with this work for additional information regarding copyright ownership. The ASF licenses this file to you under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at

http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].