Skip to content

brunocmo/indi-esp

Repository files navigation

Project Setup

First things first, there is nothing special you need to develop for INDI. You can use any IDE, or none at all. You only need basic standard tools for C++ development.

Dependencies

This will install the minimum dependencies for driver development. You may need additional dev libraries depending on your own driver's requirements.

sudo apt install build-essential devscripts debhelper fakeroot cdbs software-properties-common cmake
sudo add-apt-repository ppa:mutlaqja/ppa
sudo apt install libindi-dev libnova-dev libz-dev libgsl-dev

Compiling

First create a build folder in your project's folder, move into it and configure the project with cmake.

mkdir build
cd build
cmake -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_BUILD_TYPE=Debug ../

Now we can build our executable.

make

And install it.

sudo make install

Run

With INDI SERVER installed at your machine, run the command.

indiserver -v indi_esp32

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published