├── .gitattributes ├── .gitignore ├── Documentation ├── Coulomb Counter 4150fc.pdf ├── LTC4150_BOB.pdf └── spreadsheet.ods ├── Hardware ├── LTC4150_BOB.brd └── LTC4150_BOB.sch ├── LICENSE.md ├── Production Files └── LTC4150_BOB-Panel-v10.brd ├── README.md └── Software └── Arduino ├── coulomb_7seg └── coulomb_7seg.ino ├── coulomb_interrupt └── coulomb_interrupt.ino └── coulomb_polling └── coulomb_polling.ino /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkfun/LTC4150_Coulomb_Counter_BOB/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkfun/LTC4150_Coulomb_Counter_BOB/HEAD/.gitignore -------------------------------------------------------------------------------- /Documentation/Coulomb Counter 4150fc.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkfun/LTC4150_Coulomb_Counter_BOB/HEAD/Documentation/Coulomb Counter 4150fc.pdf -------------------------------------------------------------------------------- /Documentation/LTC4150_BOB.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkfun/LTC4150_Coulomb_Counter_BOB/HEAD/Documentation/LTC4150_BOB.pdf -------------------------------------------------------------------------------- /Documentation/spreadsheet.ods: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkfun/LTC4150_Coulomb_Counter_BOB/HEAD/Documentation/spreadsheet.ods -------------------------------------------------------------------------------- /Hardware/LTC4150_BOB.brd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkfun/LTC4150_Coulomb_Counter_BOB/HEAD/Hardware/LTC4150_BOB.brd -------------------------------------------------------------------------------- /Hardware/LTC4150_BOB.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkfun/LTC4150_Coulomb_Counter_BOB/HEAD/Hardware/LTC4150_BOB.sch -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkfun/LTC4150_Coulomb_Counter_BOB/HEAD/LICENSE.md -------------------------------------------------------------------------------- /Production Files/LTC4150_BOB-Panel-v10.brd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkfun/LTC4150_Coulomb_Counter_BOB/HEAD/Production Files/LTC4150_BOB-Panel-v10.brd -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkfun/LTC4150_Coulomb_Counter_BOB/HEAD/README.md -------------------------------------------------------------------------------- /Software/Arduino/coulomb_7seg/coulomb_7seg.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkfun/LTC4150_Coulomb_Counter_BOB/HEAD/Software/Arduino/coulomb_7seg/coulomb_7seg.ino -------------------------------------------------------------------------------- /Software/Arduino/coulomb_interrupt/coulomb_interrupt.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkfun/LTC4150_Coulomb_Counter_BOB/HEAD/Software/Arduino/coulomb_interrupt/coulomb_interrupt.ino -------------------------------------------------------------------------------- /Software/Arduino/coulomb_polling/coulomb_polling.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkfun/LTC4150_Coulomb_Counter_BOB/HEAD/Software/Arduino/coulomb_polling/coulomb_polling.ino --------------------------------------------------------------------------------