├── .flake8 ├── .github └── workflows │ └── main.yaml ├── .gitignore ├── .pre-commit-config.yaml ├── LICENSE ├── README.md ├── docs ├── IMG_0716.JPG ├── SA818_moduleV3.4.pdf └── SA818_programming_manual.pdf ├── pylintrc ├── requirements.txt ├── sa818.py └── setup.py /.flake8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x9900/SA818/HEAD/.flake8 -------------------------------------------------------------------------------- /.github/workflows/main.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x9900/SA818/HEAD/.github/workflows/main.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x9900/SA818/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x9900/SA818/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x9900/SA818/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x9900/SA818/HEAD/README.md -------------------------------------------------------------------------------- /docs/IMG_0716.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x9900/SA818/HEAD/docs/IMG_0716.JPG -------------------------------------------------------------------------------- /docs/SA818_moduleV3.4.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x9900/SA818/HEAD/docs/SA818_moduleV3.4.pdf -------------------------------------------------------------------------------- /docs/SA818_programming_manual.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x9900/SA818/HEAD/docs/SA818_programming_manual.pdf -------------------------------------------------------------------------------- /pylintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x9900/SA818/HEAD/pylintrc -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x9900/SA818/HEAD/requirements.txt -------------------------------------------------------------------------------- /sa818.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x9900/SA818/HEAD/sa818.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x9900/SA818/HEAD/setup.py --------------------------------------------------------------------------------