├── .gitignore ├── LICENSE ├── Makefile ├── README.md └── tech ├── .buildinfo └── source ├── _static ├── Mazi-Logo.png ├── cc.large.png ├── etcher.jpg ├── favicon.ico ├── mazi_logo.jpg ├── photo1.png ├── photo2.png ├── photo3.png ├── pi@.png ├── raspberry.jpg ├── raspi-config.png └── theme_overrides.css ├── _templates └── layout.html ├── accessPoint.rst ├── apps.rst ├── backend.rst ├── boot.rst ├── captive.rst ├── captive.rst.save ├── conf.py ├── data_collection.rst ├── dhcpServer.rst ├── dns.rst ├── dnsmasq.rst ├── download.rst ├── forwarding.rst ├── hostapd.rst ├── image.rst ├── index.rst ├── internet.rst ├── logging.rst ├── mv.save ├── plugging.rst ├── portal.rst ├── required.rst ├── sense.rst ├── setup.rst ├── stats.rst ├── wifi-setup ├── wifi-setup.rst ├── writingSD.rst └── writingSD.rst.save /.gitignore: -------------------------------------------------------------------------------- 1 | /tech/build/ -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mazi-project/guides/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mazi-project/guides/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mazi-project/guides/HEAD/README.md -------------------------------------------------------------------------------- /tech/.buildinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mazi-project/guides/HEAD/tech/.buildinfo -------------------------------------------------------------------------------- /tech/source/_static/Mazi-Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mazi-project/guides/HEAD/tech/source/_static/Mazi-Logo.png -------------------------------------------------------------------------------- /tech/source/_static/cc.large.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mazi-project/guides/HEAD/tech/source/_static/cc.large.png -------------------------------------------------------------------------------- /tech/source/_static/etcher.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mazi-project/guides/HEAD/tech/source/_static/etcher.jpg -------------------------------------------------------------------------------- /tech/source/_static/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mazi-project/guides/HEAD/tech/source/_static/favicon.ico -------------------------------------------------------------------------------- /tech/source/_static/mazi_logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mazi-project/guides/HEAD/tech/source/_static/mazi_logo.jpg -------------------------------------------------------------------------------- /tech/source/_static/photo1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mazi-project/guides/HEAD/tech/source/_static/photo1.png -------------------------------------------------------------------------------- /tech/source/_static/photo2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mazi-project/guides/HEAD/tech/source/_static/photo2.png -------------------------------------------------------------------------------- /tech/source/_static/photo3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mazi-project/guides/HEAD/tech/source/_static/photo3.png -------------------------------------------------------------------------------- /tech/source/_static/pi@.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mazi-project/guides/HEAD/tech/source/_static/pi@.png -------------------------------------------------------------------------------- /tech/source/_static/raspberry.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mazi-project/guides/HEAD/tech/source/_static/raspberry.jpg -------------------------------------------------------------------------------- /tech/source/_static/raspi-config.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mazi-project/guides/HEAD/tech/source/_static/raspi-config.png -------------------------------------------------------------------------------- /tech/source/_static/theme_overrides.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mazi-project/guides/HEAD/tech/source/_static/theme_overrides.css -------------------------------------------------------------------------------- /tech/source/_templates/layout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mazi-project/guides/HEAD/tech/source/_templates/layout.html -------------------------------------------------------------------------------- /tech/source/accessPoint.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mazi-project/guides/HEAD/tech/source/accessPoint.rst -------------------------------------------------------------------------------- /tech/source/apps.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mazi-project/guides/HEAD/tech/source/apps.rst -------------------------------------------------------------------------------- /tech/source/backend.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mazi-project/guides/HEAD/tech/source/backend.rst -------------------------------------------------------------------------------- /tech/source/boot.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mazi-project/guides/HEAD/tech/source/boot.rst -------------------------------------------------------------------------------- /tech/source/captive.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mazi-project/guides/HEAD/tech/source/captive.rst -------------------------------------------------------------------------------- /tech/source/captive.rst.save: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mazi-project/guides/HEAD/tech/source/captive.rst.save -------------------------------------------------------------------------------- /tech/source/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mazi-project/guides/HEAD/tech/source/conf.py -------------------------------------------------------------------------------- /tech/source/data_collection.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mazi-project/guides/HEAD/tech/source/data_collection.rst -------------------------------------------------------------------------------- /tech/source/dhcpServer.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mazi-project/guides/HEAD/tech/source/dhcpServer.rst -------------------------------------------------------------------------------- /tech/source/dns.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mazi-project/guides/HEAD/tech/source/dns.rst -------------------------------------------------------------------------------- /tech/source/dnsmasq.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mazi-project/guides/HEAD/tech/source/dnsmasq.rst -------------------------------------------------------------------------------- /tech/source/download.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mazi-project/guides/HEAD/tech/source/download.rst -------------------------------------------------------------------------------- /tech/source/forwarding.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mazi-project/guides/HEAD/tech/source/forwarding.rst -------------------------------------------------------------------------------- /tech/source/hostapd.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mazi-project/guides/HEAD/tech/source/hostapd.rst -------------------------------------------------------------------------------- /tech/source/image.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mazi-project/guides/HEAD/tech/source/image.rst -------------------------------------------------------------------------------- /tech/source/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mazi-project/guides/HEAD/tech/source/index.rst -------------------------------------------------------------------------------- /tech/source/internet.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mazi-project/guides/HEAD/tech/source/internet.rst -------------------------------------------------------------------------------- /tech/source/logging.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mazi-project/guides/HEAD/tech/source/logging.rst -------------------------------------------------------------------------------- /tech/source/mv.save: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tech/source/plugging.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mazi-project/guides/HEAD/tech/source/plugging.rst -------------------------------------------------------------------------------- /tech/source/portal.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mazi-project/guides/HEAD/tech/source/portal.rst -------------------------------------------------------------------------------- /tech/source/required.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mazi-project/guides/HEAD/tech/source/required.rst -------------------------------------------------------------------------------- /tech/source/sense.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mazi-project/guides/HEAD/tech/source/sense.rst -------------------------------------------------------------------------------- /tech/source/setup.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mazi-project/guides/HEAD/tech/source/setup.rst -------------------------------------------------------------------------------- /tech/source/stats.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mazi-project/guides/HEAD/tech/source/stats.rst -------------------------------------------------------------------------------- /tech/source/wifi-setup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mazi-project/guides/HEAD/tech/source/wifi-setup -------------------------------------------------------------------------------- /tech/source/wifi-setup.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mazi-project/guides/HEAD/tech/source/wifi-setup.rst -------------------------------------------------------------------------------- /tech/source/writingSD.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mazi-project/guides/HEAD/tech/source/writingSD.rst -------------------------------------------------------------------------------- /tech/source/writingSD.rst.save: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mazi-project/guides/HEAD/tech/source/writingSD.rst.save --------------------------------------------------------------------------------