Skip to content

GIBIS-UNIFESP/wiRedPanda

Repository files navigation

WiRedPanda GitHub All Releases GitHub release (latest by date) GitHub codecov

WiRedPanda is a free software designed to help students learn about logic circuits and simulate them in an easy and friendly way.

The main features of the software are:

  • Works on Windows, macOS and Linux;
  • Real time logic simulation;
  • User-friendly interface;
  • It's intuitive and easy to use;
  • Export your work as an image or a PDF.

Leia-me em português. Léame en español.

Main screen

Downloads

Compiled binaries for Windows, Linux and macOS are available here.

Building

On Windows

For Qt5 select this: qt5

Or for Qt6 select these: qt6

Then open WPanda.pro in Qt Creator and press Ctrl+R to build and run.

On Linux & macOS

Dependencies

Qt 5.12.0+ or 6.2.0+ and the QtMultimedia module is needed for building.

On distros such as Arch Linux, Gentoo, Manjaro, Debian Testing, etc., Qt 5.12+ can be installed from the standard repos.

  • Debian Testing
sudo apt install qtbase5-dev qt5-make qtbase5-dev-tools qtchooser libqt5multimedia5-dev
  • Arch Linux-based
sudo pacman -S qt5-base qt5-multimedia
  • macOS
brew install qt5
  • Others

Qt5 may be installed directly from the Qt website, from unofficial installers such as aqtinstall, from community-maintained repositories or built from source.

Here's how one could use aqtinstall to install Qt 5.15.2 on a Debian-based distro.

sudo apt-get update
sudo apt-get install libgl1-mesa-dev libxcb-xinerama0 libpulse-dev git python3 python3-pip python3-venv -y
python3 -m venv ~/venv
~/venv/bin/pip install aqtinstall==3.1.*
~/venv/bin/aqt install-qt linux desktop 5.15.2 --outputdir ~/Qt
PATH=~/Qt/5.15.2/gcc_64/bin:$PATH
export PATH

Build process

git clone https://github.com/GIBIS-UNIFESP/wiredpanda
mkdir wiredpanda/build
cd wiredpanda/build
qmake ../WPanda.pro
make -j

This process could take a while. Once concluded, the binary will be located at wiredpanda/build/app/wiredpanda, on Linux, and at wiredpanda/build/app/wiredpanda.app/Contents/MacOS/wiredpanda on macOS.

Licensing

WiRedPanda is licensed under the GNU General Public License, Version 3.0.

See LICENSE for the full license text.

Copyright (C) 2024 - Davi Morales, Fábio Cappabianco, Lucas Lellis, Rodrigo Torres and Vinícius Miguel.

This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.

This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
GNU General Public License for more details.

You should have received a copy of the GNU General Public License
along with this program.  If not, see <http://www.gnu.org/licenses/>.