Installing Nyx Lab
nyx-lab.AppImage (make sure that libfuse2 is installed)
Not available yet
Not available yet
Installing Nyx Assistant
nyx-assistant.AppImage (make sure that libfuse2 is installed)
Not available yet
Not available yet
Installing Nyx Node
On a POSIX environment (one optional dependency: zlib1g-dev):
git clone https://github.com/nyxlib/nyx-node.git
mkdir ./nyx-node/build/
cd ./nyx-node/build/
cmake ..
make
sudo make installIn 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> -NYX_MQTT_BUFF_SIZE=<MQTT BUFFER SIZE>
lib_deps = https://github.com/nyxlib/nyx-node.gitOn an Arduino environment with Ethernet, add in your platformio.ini:
[env]
build_flags = -DNYX_HAS_ETHERNET -DNYX_RAM_SIZE=<RAM SIZE> -NYX_MQTT_BUFF_SIZE=<MQTT BUFFER SIZE>
lib_deps = https://github.com/nyxlib/nyx-node.gitSee https://github.com/nyxlib/nyx-node/.
Installing Nyx Stream
Make sure that Redis is installed (see https://github.com/redis/redis/).
On a POSIX environment (no dependency):
git clone https://github.com/nyxlib/nyx-stream.git
make
sudo make installSee https://github.com/nyxlib/nyx-stream/.
Installing INDI 🡒 Nyx Bridge
On a POSIX environment (two dependencies: libxml2-dev and libindi-dev):
git clone https://github.com/nyxlib/INDI-Nyx-Bridge.git
make
sudo make installSee https://github.com/nyxlib/INDI-Nyx-Bridge/.