├── .gitignore ├── AS3935_example └── AS3935_example.ino ├── AS3935_log_cnts └── AS3935_log_cnts.ino ├── README.md ├── as3935_timedistance.png ├── datasheets ├── AS3935+Schematic+and+Mechanical.pdf └── AS3935.pdf ├── library └── AS3935 │ ├── AS3935.cpp │ ├── AS3935.h │ └── keywords.txt ├── lightning_signature.gif ├── log ├── p5_control_and_log ├── data │ └── lightning_log.csv ├── p5_control_and_log.pde └── sketch.properties └── p5_screenshot.png /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evsc/ThunderAndLightning/HEAD/.gitignore -------------------------------------------------------------------------------- /AS3935_example/AS3935_example.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evsc/ThunderAndLightning/HEAD/AS3935_example/AS3935_example.ino -------------------------------------------------------------------------------- /AS3935_log_cnts/AS3935_log_cnts.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evsc/ThunderAndLightning/HEAD/AS3935_log_cnts/AS3935_log_cnts.ino -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evsc/ThunderAndLightning/HEAD/README.md -------------------------------------------------------------------------------- /as3935_timedistance.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evsc/ThunderAndLightning/HEAD/as3935_timedistance.png -------------------------------------------------------------------------------- /datasheets/AS3935+Schematic+and+Mechanical.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evsc/ThunderAndLightning/HEAD/datasheets/AS3935+Schematic+and+Mechanical.pdf -------------------------------------------------------------------------------- /datasheets/AS3935.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evsc/ThunderAndLightning/HEAD/datasheets/AS3935.pdf -------------------------------------------------------------------------------- /library/AS3935/AS3935.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evsc/ThunderAndLightning/HEAD/library/AS3935/AS3935.cpp -------------------------------------------------------------------------------- /library/AS3935/AS3935.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evsc/ThunderAndLightning/HEAD/library/AS3935/AS3935.h -------------------------------------------------------------------------------- /library/AS3935/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evsc/ThunderAndLightning/HEAD/library/AS3935/keywords.txt -------------------------------------------------------------------------------- /lightning_signature.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evsc/ThunderAndLightning/HEAD/lightning_signature.gif -------------------------------------------------------------------------------- /log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evsc/ThunderAndLightning/HEAD/log -------------------------------------------------------------------------------- /p5_control_and_log/data/lightning_log.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evsc/ThunderAndLightning/HEAD/p5_control_and_log/data/lightning_log.csv -------------------------------------------------------------------------------- /p5_control_and_log/p5_control_and_log.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evsc/ThunderAndLightning/HEAD/p5_control_and_log/p5_control_and_log.pde -------------------------------------------------------------------------------- /p5_control_and_log/sketch.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evsc/ThunderAndLightning/HEAD/p5_control_and_log/sketch.properties -------------------------------------------------------------------------------- /p5_screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evsc/ThunderAndLightning/HEAD/p5_screenshot.png --------------------------------------------------------------------------------