Skip to content

Files

Latest commit

17b2259 · Feb 2, 2023

History

History

host

Host Software

This is the software that connects to all the floor tiles and controls what they do.

Generate SSL Certs

You need to have SSL setup for connections to the ESP32 nodes (instructions).

mkdir cert
cd cert
openssl genrsa -out key.pem
openssl req -new -key key.pem -out csr.pem
openssl x509 -req -days 9999 -in csr.pem -signkey key.pem -out cert.pem