├── .gitignore ├── dcp.py ├── main.py ├── protocol.py ├── rpc.py ├── server.py ├── templates ├── device.html ├── discover.html ├── inm0.html └── inm1.html └── util.py /.gitignore: -------------------------------------------------------------------------------- 1 | __pycache__ 2 | -------------------------------------------------------------------------------- /dcp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfredkrohmer/profinet/HEAD/dcp.py -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfredkrohmer/profinet/HEAD/main.py -------------------------------------------------------------------------------- /protocol.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfredkrohmer/profinet/HEAD/protocol.py -------------------------------------------------------------------------------- /rpc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfredkrohmer/profinet/HEAD/rpc.py -------------------------------------------------------------------------------- /server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfredkrohmer/profinet/HEAD/server.py -------------------------------------------------------------------------------- /templates/device.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfredkrohmer/profinet/HEAD/templates/device.html -------------------------------------------------------------------------------- /templates/discover.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfredkrohmer/profinet/HEAD/templates/discover.html -------------------------------------------------------------------------------- /templates/inm0.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfredkrohmer/profinet/HEAD/templates/inm0.html -------------------------------------------------------------------------------- /templates/inm1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfredkrohmer/profinet/HEAD/templates/inm1.html -------------------------------------------------------------------------------- /util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfredkrohmer/profinet/HEAD/util.py --------------------------------------------------------------------------------