@EdForceOne thanks for trying I am going to start a version that runs in the browser so you don't have to install Node.js and all the other stuff and if that works then it will be easier to integrate into Lichess web later.
I will try to create a downloadable exe to make installation easier, but I think creating Browser version will be easier for everyone.
In the meantime since you already did most of the hard stuff, just try this:
Open a terminal or CMD and go to the folder where you downloaded the files. Type the following
node --version
This is to check that node was installed correctly, you should see something like
v12.16.2
You need v12 or higher
Then make sure all dependencies are installed, most likely this is the part you missed. Use this command:
npm install
You will see some messages, even some warnings are ok, but hopefully no errors.
Then to run the application, and I think is not in the guide and is most important thing, you need to do this command:
node app.js
And this will show you some colorful ascii art and then some messages regarding configuration and connection
If configured properly that will be all. Please make sure LiveChess 2.XX is running in your machine, since the connection is not directly to the board, the connection is made to LiveChess which in turn is connected to one or more boards through serial, USB or BlueTooth . This is important since sometimes LiveChess does not see the board, just make LiveChess sees the board and pieces are shown.
There is also an option to run the app in verbose mode so it is possible to see everything that is happening, may help you figure it out what may be wrong. For that just run
node app.js --verbose true
Thanks again for trying
@EdForceOne thanks for trying I am going to start a version that runs in the browser so you don't have to install Node.js and all the other stuff and if that works then it will be easier to integrate into Lichess web later.
I will try to create a downloadable exe to make installation easier, but I think creating Browser version will be easier for everyone.
In the meantime since you already did most of the hard stuff, just try this:
Open a terminal or CMD and go to the folder where you downloaded the files. Type the following
node --version
This is to check that node was installed correctly, you should see something like
v12.16.2
You need v12 or higher
Then make sure all dependencies are installed, most likely this is the part you missed. Use this command:
npm install
You will see some messages, even some warnings are ok, but hopefully no errors.
Then to run the application, and I think is not in the guide and is most important thing, you need to do this command:
node app.js
And this will show you some colorful ascii art and then some messages regarding configuration and connection
If configured properly that will be all. Please make sure LiveChess 2.XX is running in your machine, since the connection is not directly to the board, the connection is made to LiveChess which in turn is connected to one or more boards through serial, USB or BlueTooth . This is important since sometimes LiveChess does not see the board, just make LiveChess sees the board and pieces are shown.
There is also an option to run the app in verbose mode so it is possible to see everything that is happening, may help you figure it out what may be wrong. For that just run
node app.js --verbose true
Thanks again for trying