-
Notifications
You must be signed in to change notification settings - Fork 0
Home
This git repo contains all the information regarding the code and the operation of the in-situ syringe sampler.
Arudino Pro Mini: https://www.arduino.cc/en/Main/ArduinoBoardProMini
DS3231: https://www.adafruit.com/product/255?gclid=CjwKEAjwytLKBRCX547gve7EsE4SJAD3IZV6LZmdi1gVDyf8VflWTTILIjjUT_hW0VeiC9H7PhuYORoCRaTw_wcB
ADC1115: https://www.adafruit.com/product/1085
uSD card reader: https://www.adafruit.com/product/254
Mosfet board
Pump
Syringe Holder
Used Arudino 1.8
traceResearch
├── Arudino libraries/
│ ├── Adafruit_ADS1X15-master-modified
│ ├── Low-Power-master
│ ├── RTClib-master-modified
│ └── SD_modified
├── Diagrams/
│ ├── Arudino Current Draw
│ ├── Arudino Pinout
│ ├── Flowrate data new motor controller
│ ├── Mosfet Pinout
│ ├── Pump Circuit Diagram
│ ├── Sample-times
│ └── SDcard_EEPROM format
├── Essential Code/
│ ├── Macro Excel Sheets
│ │ ├── ConfigFileSet
│ │ └── SampleTableCreate
│ ├── OperationMode
│ └── SetupMode
└── Examples/
└── Contains a bunch of testing arudino code
Contains all the libraries that are used by the code. No outside libraries are needed since all these libraries are modified to work with the code.
Contains calibration/data for motor etc. The data from these sheets are used to calibrate the flow rates etc
Here contains the essential code to run the program. The two main programs are setupMode and OperationMode. First the setupMode is run to set up the system, then the operation Mode is run to actually execute the program. This is explain more later. Also, the Macro excel sheets are used for proper formatting of the files on the SD card. It will also guarantee the correct naming convention of the files generated.
Here contains Arudino sketches for various testing code that was used in development. These sketches are used for isolating certain features for testing or validation. Code in this directory is not needed but can be used for debugging.