Just compiled and flashed it:
- Queries
- All Stories
- Search
- Advanced Search
All Stories
Apr 19 2020
Apr 16 2020
Apr 15 2020
Okay, done!
Yes please!
I fixed the problem, should I create a PR?
Apr 14 2020
Apr 13 2020
Please check latest commit in the repo, it has a debug overlay now, which currently is only implemented for DrawText() and DrawIcon():
The ILI9341 datasheet (https://cdn-shop.adafruit.com/datasheets/ILI9341.pdf ) mentions support for "Vertical Scrolling" which would be great as it's a hardware feature and thus presumably would work rather fast.
The directions seem to be limited so the hardware acceleration will not work for every direction/effect.
Sorry if the title was confusing, just updated it.
No, add implementation, by porting from old firmware version and re-using the DrawIcon() code to reduce image size.
The base class needs some additional love to be able to set this buttons from the child class comfortably.
okay, and what do you mean by dealing? like to improve the look of the bar?
In T1172#16726, @metal_dent wrote:sidebar as in the back and the home buttons?
sidebar as in the back and the home buttons?
The respective code line is https://github.com/apertus-open-source-cinema/AXIOM-Remote/blob/dev/Firmware/UI/Painter.cpp#L448
Apr 11 2020
Apr 10 2020
I just got an e-mail notification about the update.
seems to have solved itself :)
not possible at this stage
We chose USB-C as AXIOM Remote connector as its widely available, mechanically solid, cheap and also connects the remote to any pc.
Apr 3 2020
Apr 1 2020
please elaborate on the "colored" monochrome output mode, not clear for me yet.
Mar 30 2020
Mar 26 2020
Mar 25 2020
Mar 24 2020
Mar 22 2020
new firmware has been built, testing if the fix is working there as well is still to be done.
pip install --force "pypng==0.0.18"
Mar 21 2020
Mar 20 2020
Mar 16 2020
Mar 12 2020
Ohh sorry my bad, Didn't considered 2nd condition.
Thank you for the explanation.
What output do you get?
hey Sebastian,
I am not getting desired output by running 2nd command. Is there some typo ?
Because on switching the last two images in the sequence. i.e -swap 1,2 gives correct output.
Mar 11 2020
Perfect, tested and verified! Thanks!
Will update wiki now.
This should avoid the sample point setting:
Works, many thanks!
Thanks Bertl for the direction.
Mar 9 2020
It seems that the sample point was moved in recent versions so now the samples average the four channels into one gray value.
Mar 5 2020
Plenty of still images can be found here: http://files.apertus.org/AXIOM-Beta/snapshots/
Will try the command itself soon but from just looking at your post: the output file is monochrome but should be color...
Mar 4 2020
I have used the latest stable release of imageMagick (which is ImageMagick 7.0.9-27) to run
cat index.raw12 | convert \( -size 4096x3072 -depth 12 gray:- \) \( -clone 0 -crop -1-1 \) \( -clone 0 -crop -1+0 \) \( -clone 0 -crop +0-1 \) -sample 2048x1536 \( -clone 2,3 -average \) -delete 2,3 -swap 0,1 +swap -combine test_color.png
and according to me it gave the desired output.