├── 072-0503 Supplemental SPI Information for the OPC N3 Issue 2 101218.pdf ├── AQ ├── AQplotter │ ├── AQDataplot.py │ ├── AQMapfunctions.py │ ├── AQfunctions.py │ ├── Dashbord.gif │ ├── GRIMM.py │ ├── Genlivehtml.py │ ├── OPCN2BinsConversions.csv │ ├── OPCN3BinsConversions.csv │ ├── OPCPM.py │ └── README.md ├── MulOPCData.py ├── OPCData │ └── creatdic.txt ├── OPCscripts │ ├── DHT.py │ ├── DHT │ │ ├── .github │ │ │ ├── ISSUE_TEMPLATE.md │ │ │ └── PULL_REQUEST_TEMPLATE.md │ │ ├── .gitignore │ │ ├── Adafruit_DHT │ │ │ ├── Beaglebone_Black.py │ │ │ ├── Raspberry_Pi.py │ │ │ ├── Raspberry_Pi_2.py │ │ │ ├── Test.py │ │ │ ├── __init__.py │ │ │ ├── common.py │ │ │ └── platform_detect.py │ │ ├── LICENSE │ │ ├── MANIFEST.in │ │ ├── README.md │ │ ├── examples │ │ │ ├── AdafruitDHT.py │ │ │ ├── google_spreadsheet.py │ │ │ └── simpletest.py │ │ ├── setup.py │ │ └── source │ │ │ ├── Beaglebone_Black │ │ │ ├── bbb_dht_read.c │ │ │ ├── bbb_dht_read.h │ │ │ ├── bbb_mmio.c │ │ │ └── bbb_mmio.h │ │ │ ├── Raspberry_Pi │ │ │ ├── pi_dht_read.c │ │ │ ├── pi_dht_read.h │ │ │ ├── pi_mmio.c │ │ │ └── pi_mmio.h │ │ │ ├── Raspberry_Pi_2 │ │ │ ├── pi_2_dht_read.c │ │ │ ├── pi_2_dht_read.h │ │ │ ├── pi_2_mmio.c │ │ │ └── pi_2_mmio.h │ │ │ ├── Test │ │ │ ├── test_dht_read.c │ │ │ └── test_dht_read.h │ │ │ ├── _Beaglebone_Black_Driver.c │ │ │ ├── _Raspberry_Pi_2_Driver.c │ │ │ ├── _Raspberry_Pi_Driver.c │ │ │ ├── _Test_Driver.c │ │ │ ├── common_dht_read.c │ │ │ └── common_dht_read.h │ ├── GPS2.py │ ├── opcn2_rec.py │ ├── opcn3_rec.py │ ├── sds_rec.py │ ├── start.py │ ├── status.py │ └── variables.py ├── rpiWebServer │ ├── interface.py │ ├── readme.md │ ├── static │ │ ├── justgage.js │ │ ├── raphael-2.1.4.min.js │ │ └── style.css │ └── templates │ │ └── index.html └── teamviewer-host_14.1.18533_armhf.deb ├── Casesetup.jpg ├── LICENSE ├── OPCN3-OPCN2.jpg ├── OPCN3.jpg ├── OPCN3_rec.py ├── OPCN3_test.py ├── README.md ├── Runexample.gif ├── SDSsetup.jpg └── variables.png /072-0503 Supplemental SPI Information for the OPC N3 Issue 2 101218.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JarvisSan22/OPC-N3_python/HEAD/072-0503 Supplemental SPI Information for the OPC N3 Issue 2 101218.pdf -------------------------------------------------------------------------------- /AQ/AQplotter/AQDataplot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JarvisSan22/OPC-N3_python/HEAD/AQ/AQplotter/AQDataplot.py -------------------------------------------------------------------------------- /AQ/AQplotter/AQMapfunctions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JarvisSan22/OPC-N3_python/HEAD/AQ/AQplotter/AQMapfunctions.py -------------------------------------------------------------------------------- /AQ/AQplotter/AQfunctions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JarvisSan22/OPC-N3_python/HEAD/AQ/AQplotter/AQfunctions.py -------------------------------------------------------------------------------- /AQ/AQplotter/Dashbord.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JarvisSan22/OPC-N3_python/HEAD/AQ/AQplotter/Dashbord.gif -------------------------------------------------------------------------------- /AQ/AQplotter/GRIMM.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JarvisSan22/OPC-N3_python/HEAD/AQ/AQplotter/GRIMM.py -------------------------------------------------------------------------------- /AQ/AQplotter/Genlivehtml.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JarvisSan22/OPC-N3_python/HEAD/AQ/AQplotter/Genlivehtml.py -------------------------------------------------------------------------------- /AQ/AQplotter/OPCN2BinsConversions.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JarvisSan22/OPC-N3_python/HEAD/AQ/AQplotter/OPCN2BinsConversions.csv -------------------------------------------------------------------------------- /AQ/AQplotter/OPCN3BinsConversions.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JarvisSan22/OPC-N3_python/HEAD/AQ/AQplotter/OPCN3BinsConversions.csv -------------------------------------------------------------------------------- /AQ/AQplotter/OPCPM.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JarvisSan22/OPC-N3_python/HEAD/AQ/AQplotter/OPCPM.py -------------------------------------------------------------------------------- /AQ/AQplotter/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JarvisSan22/OPC-N3_python/HEAD/AQ/AQplotter/README.md -------------------------------------------------------------------------------- /AQ/MulOPCData.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JarvisSan22/OPC-N3_python/HEAD/AQ/MulOPCData.py -------------------------------------------------------------------------------- /AQ/OPCData/creatdic.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /AQ/OPCscripts/DHT.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JarvisSan22/OPC-N3_python/HEAD/AQ/OPCscripts/DHT.py -------------------------------------------------------------------------------- /AQ/OPCscripts/DHT/.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JarvisSan22/OPC-N3_python/HEAD/AQ/OPCscripts/DHT/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /AQ/OPCscripts/DHT/.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JarvisSan22/OPC-N3_python/HEAD/AQ/OPCscripts/DHT/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /AQ/OPCscripts/DHT/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JarvisSan22/OPC-N3_python/HEAD/AQ/OPCscripts/DHT/.gitignore -------------------------------------------------------------------------------- /AQ/OPCscripts/DHT/Adafruit_DHT/Beaglebone_Black.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JarvisSan22/OPC-N3_python/HEAD/AQ/OPCscripts/DHT/Adafruit_DHT/Beaglebone_Black.py -------------------------------------------------------------------------------- /AQ/OPCscripts/DHT/Adafruit_DHT/Raspberry_Pi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JarvisSan22/OPC-N3_python/HEAD/AQ/OPCscripts/DHT/Adafruit_DHT/Raspberry_Pi.py -------------------------------------------------------------------------------- /AQ/OPCscripts/DHT/Adafruit_DHT/Raspberry_Pi_2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JarvisSan22/OPC-N3_python/HEAD/AQ/OPCscripts/DHT/Adafruit_DHT/Raspberry_Pi_2.py -------------------------------------------------------------------------------- /AQ/OPCscripts/DHT/Adafruit_DHT/Test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JarvisSan22/OPC-N3_python/HEAD/AQ/OPCscripts/DHT/Adafruit_DHT/Test.py -------------------------------------------------------------------------------- /AQ/OPCscripts/DHT/Adafruit_DHT/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JarvisSan22/OPC-N3_python/HEAD/AQ/OPCscripts/DHT/Adafruit_DHT/__init__.py -------------------------------------------------------------------------------- /AQ/OPCscripts/DHT/Adafruit_DHT/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JarvisSan22/OPC-N3_python/HEAD/AQ/OPCscripts/DHT/Adafruit_DHT/common.py -------------------------------------------------------------------------------- /AQ/OPCscripts/DHT/Adafruit_DHT/platform_detect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JarvisSan22/OPC-N3_python/HEAD/AQ/OPCscripts/DHT/Adafruit_DHT/platform_detect.py -------------------------------------------------------------------------------- /AQ/OPCscripts/DHT/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JarvisSan22/OPC-N3_python/HEAD/AQ/OPCscripts/DHT/LICENSE -------------------------------------------------------------------------------- /AQ/OPCscripts/DHT/MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JarvisSan22/OPC-N3_python/HEAD/AQ/OPCscripts/DHT/MANIFEST.in -------------------------------------------------------------------------------- /AQ/OPCscripts/DHT/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JarvisSan22/OPC-N3_python/HEAD/AQ/OPCscripts/DHT/README.md -------------------------------------------------------------------------------- /AQ/OPCscripts/DHT/examples/AdafruitDHT.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JarvisSan22/OPC-N3_python/HEAD/AQ/OPCscripts/DHT/examples/AdafruitDHT.py -------------------------------------------------------------------------------- /AQ/OPCscripts/DHT/examples/google_spreadsheet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JarvisSan22/OPC-N3_python/HEAD/AQ/OPCscripts/DHT/examples/google_spreadsheet.py -------------------------------------------------------------------------------- /AQ/OPCscripts/DHT/examples/simpletest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JarvisSan22/OPC-N3_python/HEAD/AQ/OPCscripts/DHT/examples/simpletest.py -------------------------------------------------------------------------------- /AQ/OPCscripts/DHT/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JarvisSan22/OPC-N3_python/HEAD/AQ/OPCscripts/DHT/setup.py -------------------------------------------------------------------------------- /AQ/OPCscripts/DHT/source/Beaglebone_Black/bbb_dht_read.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JarvisSan22/OPC-N3_python/HEAD/AQ/OPCscripts/DHT/source/Beaglebone_Black/bbb_dht_read.c -------------------------------------------------------------------------------- /AQ/OPCscripts/DHT/source/Beaglebone_Black/bbb_dht_read.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JarvisSan22/OPC-N3_python/HEAD/AQ/OPCscripts/DHT/source/Beaglebone_Black/bbb_dht_read.h -------------------------------------------------------------------------------- /AQ/OPCscripts/DHT/source/Beaglebone_Black/bbb_mmio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JarvisSan22/OPC-N3_python/HEAD/AQ/OPCscripts/DHT/source/Beaglebone_Black/bbb_mmio.c -------------------------------------------------------------------------------- /AQ/OPCscripts/DHT/source/Beaglebone_Black/bbb_mmio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JarvisSan22/OPC-N3_python/HEAD/AQ/OPCscripts/DHT/source/Beaglebone_Black/bbb_mmio.h -------------------------------------------------------------------------------- /AQ/OPCscripts/DHT/source/Raspberry_Pi/pi_dht_read.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JarvisSan22/OPC-N3_python/HEAD/AQ/OPCscripts/DHT/source/Raspberry_Pi/pi_dht_read.c -------------------------------------------------------------------------------- /AQ/OPCscripts/DHT/source/Raspberry_Pi/pi_dht_read.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JarvisSan22/OPC-N3_python/HEAD/AQ/OPCscripts/DHT/source/Raspberry_Pi/pi_dht_read.h -------------------------------------------------------------------------------- /AQ/OPCscripts/DHT/source/Raspberry_Pi/pi_mmio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JarvisSan22/OPC-N3_python/HEAD/AQ/OPCscripts/DHT/source/Raspberry_Pi/pi_mmio.c -------------------------------------------------------------------------------- /AQ/OPCscripts/DHT/source/Raspberry_Pi/pi_mmio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JarvisSan22/OPC-N3_python/HEAD/AQ/OPCscripts/DHT/source/Raspberry_Pi/pi_mmio.h -------------------------------------------------------------------------------- /AQ/OPCscripts/DHT/source/Raspberry_Pi_2/pi_2_dht_read.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JarvisSan22/OPC-N3_python/HEAD/AQ/OPCscripts/DHT/source/Raspberry_Pi_2/pi_2_dht_read.c -------------------------------------------------------------------------------- /AQ/OPCscripts/DHT/source/Raspberry_Pi_2/pi_2_dht_read.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JarvisSan22/OPC-N3_python/HEAD/AQ/OPCscripts/DHT/source/Raspberry_Pi_2/pi_2_dht_read.h -------------------------------------------------------------------------------- /AQ/OPCscripts/DHT/source/Raspberry_Pi_2/pi_2_mmio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JarvisSan22/OPC-N3_python/HEAD/AQ/OPCscripts/DHT/source/Raspberry_Pi_2/pi_2_mmio.c -------------------------------------------------------------------------------- /AQ/OPCscripts/DHT/source/Raspberry_Pi_2/pi_2_mmio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JarvisSan22/OPC-N3_python/HEAD/AQ/OPCscripts/DHT/source/Raspberry_Pi_2/pi_2_mmio.h -------------------------------------------------------------------------------- /AQ/OPCscripts/DHT/source/Test/test_dht_read.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JarvisSan22/OPC-N3_python/HEAD/AQ/OPCscripts/DHT/source/Test/test_dht_read.c -------------------------------------------------------------------------------- /AQ/OPCscripts/DHT/source/Test/test_dht_read.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JarvisSan22/OPC-N3_python/HEAD/AQ/OPCscripts/DHT/source/Test/test_dht_read.h -------------------------------------------------------------------------------- /AQ/OPCscripts/DHT/source/_Beaglebone_Black_Driver.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JarvisSan22/OPC-N3_python/HEAD/AQ/OPCscripts/DHT/source/_Beaglebone_Black_Driver.c -------------------------------------------------------------------------------- /AQ/OPCscripts/DHT/source/_Raspberry_Pi_2_Driver.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JarvisSan22/OPC-N3_python/HEAD/AQ/OPCscripts/DHT/source/_Raspberry_Pi_2_Driver.c -------------------------------------------------------------------------------- /AQ/OPCscripts/DHT/source/_Raspberry_Pi_Driver.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JarvisSan22/OPC-N3_python/HEAD/AQ/OPCscripts/DHT/source/_Raspberry_Pi_Driver.c -------------------------------------------------------------------------------- /AQ/OPCscripts/DHT/source/_Test_Driver.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JarvisSan22/OPC-N3_python/HEAD/AQ/OPCscripts/DHT/source/_Test_Driver.c -------------------------------------------------------------------------------- /AQ/OPCscripts/DHT/source/common_dht_read.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JarvisSan22/OPC-N3_python/HEAD/AQ/OPCscripts/DHT/source/common_dht_read.c -------------------------------------------------------------------------------- /AQ/OPCscripts/DHT/source/common_dht_read.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JarvisSan22/OPC-N3_python/HEAD/AQ/OPCscripts/DHT/source/common_dht_read.h -------------------------------------------------------------------------------- /AQ/OPCscripts/GPS2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JarvisSan22/OPC-N3_python/HEAD/AQ/OPCscripts/GPS2.py -------------------------------------------------------------------------------- /AQ/OPCscripts/opcn2_rec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JarvisSan22/OPC-N3_python/HEAD/AQ/OPCscripts/opcn2_rec.py -------------------------------------------------------------------------------- /AQ/OPCscripts/opcn3_rec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JarvisSan22/OPC-N3_python/HEAD/AQ/OPCscripts/opcn3_rec.py -------------------------------------------------------------------------------- /AQ/OPCscripts/sds_rec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JarvisSan22/OPC-N3_python/HEAD/AQ/OPCscripts/sds_rec.py -------------------------------------------------------------------------------- /AQ/OPCscripts/start.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JarvisSan22/OPC-N3_python/HEAD/AQ/OPCscripts/start.py -------------------------------------------------------------------------------- /AQ/OPCscripts/status.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JarvisSan22/OPC-N3_python/HEAD/AQ/OPCscripts/status.py -------------------------------------------------------------------------------- /AQ/OPCscripts/variables.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JarvisSan22/OPC-N3_python/HEAD/AQ/OPCscripts/variables.py -------------------------------------------------------------------------------- /AQ/rpiWebServer/interface.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JarvisSan22/OPC-N3_python/HEAD/AQ/rpiWebServer/interface.py -------------------------------------------------------------------------------- /AQ/rpiWebServer/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JarvisSan22/OPC-N3_python/HEAD/AQ/rpiWebServer/readme.md -------------------------------------------------------------------------------- /AQ/rpiWebServer/static/justgage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JarvisSan22/OPC-N3_python/HEAD/AQ/rpiWebServer/static/justgage.js -------------------------------------------------------------------------------- /AQ/rpiWebServer/static/raphael-2.1.4.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JarvisSan22/OPC-N3_python/HEAD/AQ/rpiWebServer/static/raphael-2.1.4.min.js -------------------------------------------------------------------------------- /AQ/rpiWebServer/static/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JarvisSan22/OPC-N3_python/HEAD/AQ/rpiWebServer/static/style.css -------------------------------------------------------------------------------- /AQ/rpiWebServer/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JarvisSan22/OPC-N3_python/HEAD/AQ/rpiWebServer/templates/index.html -------------------------------------------------------------------------------- /AQ/teamviewer-host_14.1.18533_armhf.deb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JarvisSan22/OPC-N3_python/HEAD/AQ/teamviewer-host_14.1.18533_armhf.deb -------------------------------------------------------------------------------- /Casesetup.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JarvisSan22/OPC-N3_python/HEAD/Casesetup.jpg -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JarvisSan22/OPC-N3_python/HEAD/LICENSE -------------------------------------------------------------------------------- /OPCN3-OPCN2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JarvisSan22/OPC-N3_python/HEAD/OPCN3-OPCN2.jpg -------------------------------------------------------------------------------- /OPCN3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JarvisSan22/OPC-N3_python/HEAD/OPCN3.jpg -------------------------------------------------------------------------------- /OPCN3_rec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JarvisSan22/OPC-N3_python/HEAD/OPCN3_rec.py -------------------------------------------------------------------------------- /OPCN3_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JarvisSan22/OPC-N3_python/HEAD/OPCN3_test.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JarvisSan22/OPC-N3_python/HEAD/README.md -------------------------------------------------------------------------------- /Runexample.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JarvisSan22/OPC-N3_python/HEAD/Runexample.gif -------------------------------------------------------------------------------- /SDSsetup.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JarvisSan22/OPC-N3_python/HEAD/SDSsetup.jpg -------------------------------------------------------------------------------- /variables.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JarvisSan22/OPC-N3_python/HEAD/variables.png --------------------------------------------------------------------------------