- Jul 26, 2024
-
-
EJ Finneran authored
-
EJ Finneran authored
This reverts commit 82ca2b12
-
- Jul 18, 2021
-
-
Micah Elizabeth Scott authored
-
- Jan 06, 2019
-
-
Micah Elizabeth Scott authored
Tidying up examples/html/random-color-pixel-strip.html
-
Micah Elizabeth Scott authored
Example systemd services for auto-starting in Linux
-
- Jan 03, 2019
-
-
TheTechromancer authored
-
TheTechromancer authored
-
TheTechromancer authored
-
TheTechromancer authored
-
- Dec 26, 2018
-
-
Yannis.Kalligeros authored
-
- Apr 24, 2018
-
-
Micah Elizabeth Scott authored
Avoid reallocating the packet buffer at every frame.
-
- Apr 23, 2018
-
-
Simon authored
-
- Apr 05, 2018
-
-
Micah Elizabeth Scott authored
Add comma missing from default color config
-
Micah Elizabeth Scott authored
Remove tabs introduced by SPI change
-
- Mar 27, 2018
-
-
Ian Muldoon authored
-
- Mar 07, 2018
-
-
Evan Owens authored
-
- Jan 22, 2018
-
-
Micah Elizabeth Scott authored
-
Micah Elizabeth Scott authored
New HTML example.
-
Micah Elizabeth Scott authored
added ability to run several demo effects in a queue
-
Micah Elizabeth Scott authored
Add "flip" argument to ledGrid() and ledGrid8x8()
-
Micah Elizabeth Scott authored
Fix cmake comments
-
Micah Elizabeth Scott authored
Adds OPC message relaying (forwarding) over a second socket
-
Micah Elizabeth Scott authored
-
Micah Elizabeth Scott authored
add vs2017 linux remote project files & add APA102 support for raspberry pi 3
-
- Jan 21, 2018
-
-
Lance Gilbert authored
-
Lance Gilbert authored
-
Lance Gilbert authored
-
Lance Gilbert authored
-
- Dec 08, 2017
-
-
Pat Long authored
-
- Oct 15, 2017
-
-
Joakim Söderberg authored
See #92 - Turn off libwebsockets options properly (including SSL since it's not used) - Default WITH_SYSTEMD_USER to OFF, since running as a non-root user means we need to setup udev rules which is not done yet - Added some TODO:s on possible improvements
-
- Oct 07, 2017
-
-
Micah Elizabeth Scott authored
Fix broken link to OPC python client examples
-
Micah Elizabeth Scott authored
Python: opc.py - added set_interpolation
-
- Sep 17, 2017
-
-
Landon Spear authored
-
- Aug 13, 2017
-
-
Micah Elizabeth Scott authored
Fix CMAKE instructions
-
- Aug 09, 2017
-
-
Robert Jones authored
Submodules must be present prior to running cmake.
-
- Aug 01, 2017
-
-
Micah Elizabeth Scott authored
Added CSharp .NET Core examples
-
Micah Elizabeth Scott authored
CMake, Systemd, debian package support
-
- Jul 29, 2017
-
-
Joakim Söderberg authored
-
- Jul 22, 2017
-
-
Joakim Söderberg authored
CMake support was added as an alternative to the pure Makefile that already exists. CMake supports generating build files for a large set of different platforms. Makefiles, XCode project, Visual Studio and so on... The CMake project includes build rules for installing, including running the server as a daemon using SystemD. Adding similar support for init would be possible as well. CMake is similar to configure + autoconf, so it is possible to turn on and off different features before compiling. The main reason for this change was to create an easily reproducible way to install the Fadecandy server as a daemon. The target for these efforts was mainly the Raspberry Pi platform using the Raspbian distribution that uses Debian packages for installation. So this current implementation has focused on enabling building Debian Packages. However CMake/CPack supports other installers for other platforms such as RPM, NSIS and OSX installers to name a few. Adding support for those wouldn't be hard. Also to support the use case of running the server as a system daemon, I have also added a default config path that the fcserver tries to read under: /etc/fcserver/config.json If no config is given on the command line explicitly, fcserver first looks here before using the default config. To build using CMake (Tested to work on Raspbian and OSX): ```bash mkdir build cd build cmake .. make make install # Manual install (see below for debian package) ``` To list available CMake options: ```bash cmake -LH .. ``` To build the debian package: ```bash cpack -G DEB # Must be done after build instructions above. ``` By default the debian package runs a post-installation script that will create a "fadecandy" user that the daemon is run under. This can be turned off using a CMake option.
-
- Jun 18, 2017
-
-
Micah Elizabeth Scott authored
-