├── .gitignore ├── LICENSE ├── README.md ├── ino.ini ├── lib └── AS5048A │ ├── AS5048A.cpp │ └── AS5048A.h └── src └── sketch.ino /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoetropeLabs/AS5048A-Arduino/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoetropeLabs/AS5048A-Arduino/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoetropeLabs/AS5048A-Arduino/HEAD/README.md -------------------------------------------------------------------------------- /ino.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoetropeLabs/AS5048A-Arduino/HEAD/ino.ini -------------------------------------------------------------------------------- /lib/AS5048A/AS5048A.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoetropeLabs/AS5048A-Arduino/HEAD/lib/AS5048A/AS5048A.cpp -------------------------------------------------------------------------------- /lib/AS5048A/AS5048A.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoetropeLabs/AS5048A-Arduino/HEAD/lib/AS5048A/AS5048A.h -------------------------------------------------------------------------------- /src/sketch.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZoetropeLabs/AS5048A-Arduino/HEAD/src/sketch.ino --------------------------------------------------------------------------------