blemasle / arduino-as1115

Easy to use 7 segments writer

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

AS1115

Build Status License

Display strings to up to 8 7 segments displays using an AMS' AS1115.
Reading the 16 keys state is also supported.

Features

  • Display strings on up to 8 7 segments displays using char arrays.
  • Variable display intensity.
  • Read the state of the 16 keys at once.
  • Support for low power Shutdown mode

Usage

Unlike most Arduino library, no default instance is created when the library is included. It's up to you to create one with the appropriate chip I2C address.

#include <Arduino.h>
#include <AS1115.h>

AS1115 as = AS1115(0x00);

See included examples for furher usage.

About

Easy to use 7 segments writer

License:MIT License


Languages

Language:C++ 100.0%