ponsato / ducopanel

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

DucoPanel

Desktop App to manage all your AVR miners in a simple way, being able to upload the code to any Arduino board (through Arduino-Cli), mine with all the boards or with the ones you choose, mine with the PC (choosing the cores you want), and much more.

You can also connect to your official wallet and perform any operation without leaving the application, as well as see the live status of the network and servers.

This development makes everything related to DuinoCoin even easier, based exclusively on the official tools.

ElectronJs has been used for this purpose.

N|Solid

Requirements

It is necessary to have Python 3 and Arduino CLI installed in the environment, both with global enviroment variables declared.

You can download them from the following links:

Or execute this command:

sudo apt install python3 python3-pip

For Linux, you have to run the following command to avoid having to grant read permissions to the USB ports every time the computer is restarted:

sudo usermod -aG dialout username

This will add the current user to the dialout group. Login and out it to take effect.

Arduino-Cli

It is necessary to install Arduino-Cli and create an enviroment variable for it to be able to upload code to the arduino boards. For that, in Linux you have to follow the following commands:

curl -fsSL https://raw.githubusercontent.com/arduino/arduino-cli/master/install.sh | BINDIR=~/local/bin sh

export PATH=$PATH:/local/bin

sudo reboot

Once finished you have to install the arduino avr library with the following command:

arduino-cli core install arduino:avr

In windows follow these steps:

To use

To clone and run this repository you'll need Git and Node.js (which comes with npm) installed on your computer. From your command line:

# Clone this repository
git clone https://github.com/ponsato/ducopanel.git
# Go into the repository
cd ducopanel
# Install dependencies
npm install
# Run the app
npm start

A windows window will open with the development mode, and you are ready to start writing code.

Learn more about Electron and its API in the documentation.

Precompile app

To precompile the application in an .exe that we can run in any computer (for now only windows, later linux and mac), we have to place ourselves in the root of the project and run it:

npm run make

In the /out folder, a folder will be created with the name of the project and the corresponding architecture (x64, linux, etc.), where the executable file will be located among other files. This is a precompiled version, when everything is ready I will update the documentation with the steps to obtain a production version for each of the operating systems.

This folder with all the contents of the application can be packed and run on any other device with the corresponding operating system. In this way, the result of the development can be tested without the need for a production version.

Installer

You can then run the following command (be careful with the architecture you are using):

For Windows:

npm run-script build

For Linux:

npm run-script buildLinux

For Linux Arm (raspberry Pi):

npm run-script buildLinuxArm

The installation files shall be created in:

/dist/installers/

To close Ducopanel, or any of the windows that open internally, press alt + F4.

To uninstall it, do it as you would uninstall any other program.

Downloads

⚠️ NOTICE: .exe binaries may be detected as a virus by your antivirus software. This is a false positive caused by pyinstallers bootloader, read about it here. Duino-Coin is not a virus.

You can download the installer for the latest version for Windows and Debian 64-bit here:

About


Languages

Language:Python 31.7%Language:HTML 23.4%Language:JavaScript 22.2%Language:C++ 10.0%Language:CSS 8.3%Language:C 4.3%Language:Makefile 0.2%