bjoernh / matrixserver

LEDCube screenserver and application libraries

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Build Status

LEDCube matrixserver

This is a screenserver for the purpose of being used with differently orientated LED Matrix panels. It currently has been implemented for the LEDCube project, but it can also be used in simple, planar screen orientations, as well as other complex screen orientations.

Install and Update quickfix

should work: wget -O - https://raw.githubusercontent.com/squarewavedot/matrixserver/master/Update.sh | bash

Dependencies

on raspbian and ubuntu: sudo apt install git libeigen3-dev cmake wiringpi libboost-all-dev libasound2-dev libprotobuf-dev protobuf-compiler libimlib2-dev

Building

make sure you have cloned with submodules git clone --recursive
tested on ubuntu, raspbian & macOS

cd build && cmake .. && make

Quickstart

If you have an IceBreaker board with HUB75 PMOD:

The Project is divided into multiple modules:

  • common

    • protobuf message definition for communication
      • multiple communication classes

          * IPC (boost message queue, currently the most efficient local communication)
          * UnixSocket
          * TCPSocket (remote communication possible)
        
      • Screen & Color classes

  • renderer

    • different renderers for interface with physical or virtual displays
    • multiple renderers can be used at the same time. i.e. SimulatorRenderer(remote over network) && HardwareRenderer
    • currently implemented:
  • server & application

    • server logic
    • application interface library (applications link against this)
    • cubeapplication interface with convenient setPixel3D etc. methods
  • exampleApplications

  • server_* folders:

    • these are main.cpp with setups for servers with the different renderers
      • server_FPGA
        • the Icebreaker USB FTDI Renderer
      • server_FPGA_RPISPI
        • the Icebreaker native Raspberry Pi SPI renderer (more infos soon)
      • server_testapp
        • if you have installed OpenCV this target will be available. It shows the Screens as simple OpenCV windows (useful for debugging)
      • server_simulator

About

LEDCube screenserver and application libraries

License:GNU General Public License v3.0


Languages

Language:C++ 96.4%Language:CMake 1.8%Language:C 1.7%Language:Shell 0.1%