Installing Nyx Dashboard
Not available yet
Not available yet
Installing Nyx Assistant
Not available yet
Not available yet
Installing Nyx Node
On a POSIX environment (no dependency):
git clone https://github.com/nyxlib/nyx-node.git
mkdir ./nyx-node/build/
cd ./nyx-node/build/
cmake ..
make
sudo make install
In your CMakeLists.txt, add:
find_package(LibNyxNode REQUIRED)
On an Arduino environment with WIFI, add in your platformio.ini:
[env]
build_flags = -DNYX_HAS_WIFI -DNYX_RAM_SIZE=<RAM SIZE>
lib_deps = https://github.com/nyxlib/nyx-node.git
On an Arduino environment with Ethernet, add in your platformio.ini:
[env]
build_flags = -DNYX_HAS_ETHERNET -DNYX_RAM_SIZE=<RAM SIZE>
lib_deps = https://github.com/nyxlib/nyx-node.git
Installing Nyx Stream
On a POSIX environment (no dependency):
git clone https://github.com/nyxlib/nyx-stream.git
make
sudo make install
Make sure that Redis is installed (see https://github.com/redis/redis/).