├── .gitignore ├── LICENSE.md ├── LMP91000.cpp ├── LMP91000.h ├── README.md ├── examples ├── Chronoamperometry │ └── Chronoamperometry.ino ├── CyclicVoltammetry │ └── CyclicVoltammetry.ino └── NormalPulseVoltammetry │ └── NormalPulseVoltammetry.ino ├── extras └── hardware │ ├── LMP91000.brd │ └── LMP91000.sch ├── keywords.txt └── library.properties /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinnesLab/LMP91000/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinnesLab/LMP91000/HEAD/LICENSE.md -------------------------------------------------------------------------------- /LMP91000.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinnesLab/LMP91000/HEAD/LMP91000.cpp -------------------------------------------------------------------------------- /LMP91000.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinnesLab/LMP91000/HEAD/LMP91000.h -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinnesLab/LMP91000/HEAD/README.md -------------------------------------------------------------------------------- /examples/Chronoamperometry/Chronoamperometry.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinnesLab/LMP91000/HEAD/examples/Chronoamperometry/Chronoamperometry.ino -------------------------------------------------------------------------------- /examples/CyclicVoltammetry/CyclicVoltammetry.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinnesLab/LMP91000/HEAD/examples/CyclicVoltammetry/CyclicVoltammetry.ino -------------------------------------------------------------------------------- /examples/NormalPulseVoltammetry/NormalPulseVoltammetry.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinnesLab/LMP91000/HEAD/examples/NormalPulseVoltammetry/NormalPulseVoltammetry.ino -------------------------------------------------------------------------------- /extras/hardware/LMP91000.brd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinnesLab/LMP91000/HEAD/extras/hardware/LMP91000.brd -------------------------------------------------------------------------------- /extras/hardware/LMP91000.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinnesLab/LMP91000/HEAD/extras/hardware/LMP91000.sch -------------------------------------------------------------------------------- /keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinnesLab/LMP91000/HEAD/keywords.txt -------------------------------------------------------------------------------- /library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinnesLab/LMP91000/HEAD/library.properties --------------------------------------------------------------------------------