seeul8er / RepPanel_sim

PC simulator project for RepPanel, an embedded GUI for Duet based 3D printers

Home Page:https://github.com/seeul8er/RepPanel_ESP32

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Simulator project for RepPanel embedded GUI

BASED ON: Simulator project for LittlevGL embedded GUI Library
Simulates the RepPanel GUI on a desktop development maching for easier & faster testing.

To compile & run make sure you have all dependencies installed. Then run:

cmake .
make
./bin/main

Also works from a IDEs like CLion and Eclipse.

User GUI on LittlevGL Simulator

The LittlevGL is written mainly for microcontrollers and embedded systems however you can run the library on your PC as well without any embedded hardware. The code written on PC can be simply copied when your are using an embedded system.

Using a PC simulator instead of an embedded hardware has several advantages:

  • Costs $0 because you you don't have to buy design PCB
  • Fast because you don't have to design an manufacture PCB
  • Collaborative because any number of developers can work without hardware requirements
  • Developer friendly because much easier and faster to debug on PC

Requirements

  • The PC simulator is cross platform. Windows, Linux and OSX are supported, however on Windows it's easier to get started with a another simulator project.
  • SDL a low level driver library to use graphics, handle mouse, keyboard etc.
  • This project (configured for Eclipse CDT IDE)

Usage

Get the PC project

Clone the PC project and the related sub modules:

git clone --recursive https://github.com/littlevgl/pc_simulator_sdl_eclipse.git

or download it as zip here.

Install SDL

You can download SDL from https://www.libsdl.org/

On Linux you can install it via terminal:

sudo apt-get update && sudo apt-get install -y build-essential libsdl2-dev

Install Eclipse CDT or get CLion

Download and install Eclipse CDT from http://www.eclipse.org/cdt/

Import the PC simulator project

  1. Open Eclipse CDT
  2. Click File->Import and choose General->Existing project into Workspace
  3. Browse the root directory of the project and click Finish
  4. Build your project and run it

Docker

  1. Build the docker container
docker build -t lvgl_simulator .
  1. Run the docker container
docker run lvgl_simulator

GUI with docker is platform dependent. For example, on macOS you can follow this tutorial and run a command similar to:

docker run -e DISPLAY=10.103.56.101:0 lvgl_simulator

For Linux environments with X Server, the following will the docker run command. Note that the first command, xhost + grants access to X server to everyone.

xhost +
docker run -e DISPLAY=$DISPLAY -v /tmp/.X11-unix/:/tmp/.X11-unix:ro -t lvgl_simulator

About

PC simulator project for RepPanel, an embedded GUI for Duet based 3D printers

https://github.com/seeul8er/RepPanel_ESP32

License:MIT License


Languages

Language:C 92.7%Language:Makefile 7.3%Language:Dockerfile 0.0%Language:CMake 0.0%