├── LICENSE ├── README.md ├── docs ├── LICENSE.txt ├── edgex.md ├── img │ ├── board_uart_1.jpg │ └── board_uart_2.jpg ├── index.md ├── mfx-1.md └── mfx-mini.md ├── mfx-1 └── edgex │ └── package.sh ├── mkdocs.yml └── scripts ├── pppd-creator.sh └── setup-zeromq.sh /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainflux/gateways/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainflux/gateways/HEAD/README.md -------------------------------------------------------------------------------- /docs/LICENSE.txt: -------------------------------------------------------------------------------- 1 | ../LICENSE -------------------------------------------------------------------------------- /docs/edgex.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainflux/gateways/HEAD/docs/edgex.md -------------------------------------------------------------------------------- /docs/img/board_uart_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainflux/gateways/HEAD/docs/img/board_uart_1.jpg -------------------------------------------------------------------------------- /docs/img/board_uart_2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainflux/gateways/HEAD/docs/img/board_uart_2.jpg -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainflux/gateways/HEAD/docs/index.md -------------------------------------------------------------------------------- /docs/mfx-1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainflux/gateways/HEAD/docs/mfx-1.md -------------------------------------------------------------------------------- /docs/mfx-mini.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainflux/gateways/HEAD/docs/mfx-mini.md -------------------------------------------------------------------------------- /mfx-1/edgex/package.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainflux/gateways/HEAD/mfx-1/edgex/package.sh -------------------------------------------------------------------------------- /mkdocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainflux/gateways/HEAD/mkdocs.yml -------------------------------------------------------------------------------- /scripts/pppd-creator.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainflux/gateways/HEAD/scripts/pppd-creator.sh -------------------------------------------------------------------------------- /scripts/setup-zeromq.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainflux/gateways/HEAD/scripts/setup-zeromq.sh --------------------------------------------------------------------------------