├── .gitignore ├── Makefile ├── README.md ├── edid-rw └── requirements.txt /.gitignore: -------------------------------------------------------------------------------- 1 | venv/ 2 | README.html 3 | -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bulletmark/edid-rw/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bulletmark/edid-rw/HEAD/README.md -------------------------------------------------------------------------------- /edid-rw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bulletmark/edid-rw/HEAD/edid-rw -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | smbus 2 | --------------------------------------------------------------------------------