this process does not succed currently.
for a working way look at:
https://github.com/s-light/acme_ola_crosscompile
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/****************************************************************************** | |
test__RS485_Controllino | |
Test for RS485 HalfDuplex ASCII comunication | |
debugout on usbserial interface: 115200baud | |
hardware: | |
Board: | |
Arduino compatible (with serial port) | |
LED on D2 (livesign) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
RomBOOT | |
AT91Bootstrap 3.7 (Fr 12. Feb 19:04:07 CET 2016) | |
1-Wire: Loading 1-Wire information ... | |
1-Wire: ROM Searching ... Done, 0x0 1-Wire chips found | |
WARNING: 1-Wire: No 1-Wire chip found |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ola_test.cpp | |
// based on example from | |
// http://docs.openlighting.org/ola/doc/latest/dmx_cpp_client_tutorial.html | |
// build for local: | |
// g++ -std=c++11 ola_test.cpp -o ola_test.out $(pkg-config --cflags --libs libola) | |
#include <ola/DmxBuffer.h> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import cProfile | |
cProfile.run("my_pattern.pattern['gradient']._calculate_step()", sort='cumtime') | |
Test for static pattern: | |
'pc': set pixel count 'pc:405' | |
'rc': set repeate count 'rc:1' | |
'rs': set repeate snake 'rs:False' | |
'mo': set mode_16bit 'mo:False' | |
'vh': set value high ' | |
--> 1215 channels |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python3 | |
# coding=utf-8 | |
""" | |
Basic Kivy Rotation Test. | |
minimal setup to test collide_point and rotation behavior | |
""" | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# based on examples found at | |
# https://learn.adafruit.com/running-programs-automatically-on-your-tiny-computer/systemd-writing-and-enabling-a-service | |
# https://medium.com/@johannes_gehrs/getting-started-with-systemd-on-debian-jessie-e024758ca63d | |
# https://www.freedesktop.org/wiki/Software/systemd/NetworkTarget/ | |
# https://www.freedesktop.org/software/systemd/man/systemd.unit.html#Before= | |
# https://www.freedesktop.org/software/systemd/man/systemd.unit.html#Wants= | |
# copy to target with: | |
# sudo cp olad.service /etc/systemd/system/ | |
# enable service |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// bounce ball from border | |
// class concept based on | |
// https://groups.google.com/forum/#!topic/paperjs/Urf_V3kBSBo | |
var Ball = Base.extend({ | |
initialize: function Ball(position, vector) { | |
Base.call(this); | |
this.position = position || view.center; | |
this.vector = vector || new Point({ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
xxx/github/tuio.js-example-webpack[master]$ ./node_modules/webpack/bin/webpack.js --progress | |
Hash: 6986ceecb6f5538a1ed2 | |
Version: webpack 2.3.1 | |
Time: 3574ms | |
Asset Size Chunks Chunk Names | |
bundle.js 1.11 MB 0 [emitted] [big] main | |
bundle.js.map 1.35 MB 0 [emitted] main | |
[0] ./~/buffer/index.js 48.6 kB {0} [built] | |
[5] (webpack)/buildin/global.js 509 bytes {0} [built] | |
[6] ./~/util/util.js 15.6 kB {0} [built] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
light@stefan-Latitude-E6510:~$ date; olad -l4; date | |
Sun Jan 21 15:12:17 CET 2018 | |
olad/Olad.cpp:94: OLA Daemon version 0.10.5 | |
common/io/EPoller.cpp:82: EPOLL_CTL_ADD 5, events 2001, descriptor: 0x42388 | |
olad/OlaDaemon.cpp:121: Using configs in /home/light/.ola | |
common/io/EPoller.cpp:82: EPOLL_CTL_ADD 8, events 2001, descriptor: 0x3bd48 | |
common/thread/Thread.cpp:194: Thread pref-saver, policy SCHED_OTHER, priority 0 | |
common/rdm/PidStoreLoader.cpp:271: Loading DISC_UNIQUE_BRANCH | |
common/rdm/PidStoreLoader.cpp:271: Loading DISC_MUTE | |
common/rdm/PidStoreLoader.cpp:271: Loading DISC_UN_MUTE |
OlderNewer