Brayden Anderson

Name
Brayden Anderson
Location
Salt Lake City, Utah
GitHub
https://github.com/braydenanderson2014

Libraries

ArrayList A templated class for creating dynamic or fixed size arrays. Based off of Java's ArrayList class.
BasicLinkedList A templated class for creating dynamic Linked Lists. A Linked List is a Linked List where each node points to the next node in the list.
DoubleLinkedList A templated class for creating dynamic Double Linked Lists. A Double Linked List is a Linked List where each node points to the next node and the previous node.
Hashtable This library provides an easy and efficient way to create dynamic Hash Tables in Arduino projects. It supports various operations such as insert, remove, among others.
SDList A Simple ArrayList Implementation that saves memory by dumping contents into an SD Card.
SimpleProperties This library provides an easy and efficient way to create and save "Properties". This Library is built on the Hashtable Library, and Mimicks the Java Properties Class.
SimpleVector A Templated Library for creating dynamic arrays in Arduino projects. It's purpose is meant to be used for Number types, but can be used for any type though it is not recommended as it has not been tested on other types.
SuperTimers A Simple Timer Implementation that allows you to set a time and then check if the time has passed. You can set time in millis or minutes.
UnorderedMap A Wrapper Library that is built on the Hashtable Library. The Eventual plan is to add more functionality to the library.