Search found 9 matches

by Frank
Saturday 19. February 2022, 14:58
Forum: Raspberry Pi
Topic: Setting up an HD44780 display with piCorePlayer
Replies: 2
Views: 17546

Easier way

EDIT: This version caused glitches on my VFD. I would recommend to go the harder way (posted above) if using a VFD. Update: Easier Way Install python3 and rpi-gpio extensions Install script from Github Update hd44780.py with my updated version from here Adapt the config file according to your needs
by Frank
Thursday 22. July 2021, 14:25
Forum: Other Stuff
Topic: Setup tvheadend and FritzBox 6591 on Windows 10
Replies: 1
Views: 13687

Re: Setup tvheadend and FritzBox 6591 on Windows 10

For my specific setup (with a 4300GE and internal GPU), 2 settings were crucial to make it work: In tvheadend, the bind ip address for the FritzBox must be set to the tvheadend server ip. In Kodi, hardware acceleration must be disabled (in player settings). By the way: The same applies for VLC.
by Frank
Monday 19. July 2021, 20:18
Forum: Other Stuff
Topic: Setup tvheadend and FritzBox 6591 on Windows 10
Replies: 1
Views: 13687

Setup tvheadend and FritzBox 6591 on Windows 10

First of all: I have tried 2 configurations on the Windows 10 PC: tvheadend on current Ubuntu and WSL2 tvheadend on Ubuntu 16.04 LTS and WSL1 As I didn't get the WSL2 version to work, I will only follow the WSL1 way, here. So, step by step: As described here , install WSL1 via Powershell: dism.exe /...
by Frank
Thursday 15. July 2021, 00:32
Forum: Raspberry Pi
Topic: Setting up an HD44780 display with piCorePlayer
Replies: 2
Views: 17546

Setting up lcd_lms.pl

EDIT: Ported to Python3 Just use the script from here Now, I want to use the lcd_lms.pl script from https://github.com/jscrane/lcd_lms Therefore, we need to install a few Perl modules, using the cpan command (configure cpan to use sudo if asked to): [list] [*]cpan install Date::Parse [*]In my case,...
by Frank
Wednesday 14. July 2021, 18:32
Forum: Raspberry Pi
Topic: Setting up an HD44780 display with piCorePlayer
Replies: 2
Views: 17546

Setting up an HD44780 display with piCorePlayer

install nano, autoconf, automake, libtool, compiletc, squashfs-tools export CFLAGS="-Os -pipe" export CXXFLAGS="-Os -pipe" export LDFLAGS="-Wl,-O1" install libugpio-dev. Maybe needs to be built from sources from here: https://github.com/mhei/libugpio/ . Do all of the f...
by Frank
Thursday 28. November 2019, 23:07
Forum: Arduino
Topic: Flashing Digistump Clones with Arduino as ISP
Replies: 0
Views: 29330

Flashing Digistump Clones with Arduino as ISP

Command line for flashing with Leonardo and reset enabled fuses: "C:\Program Files (x86)\Arduino\hardware\tools\avr/bin/avrdude" -C"C:\Program Files (x86)\Arduino\hardware\tools\avr/etc/avrdude.conf" -v -p attiny85 -carduino -PCOM3 -b57600 -Uflash:w:"c:\tmp\t85_default.hex&q...
by Frank
Thursday 28. November 2019, 21:15
Forum: Arduino
Topic: Flashing Arduinos with Leonardo as ISP
Replies: 0
Views: 8088

Flashing Arduinos with Leonardo as ISP

Need to append this to programmers.txt: arduinoispleo.name=Arduino as ISP (Leonardo) arduinoispleo.communication=serial arduinoispleo.protocol=arduino arduinoispleo.speed=19200 arduinoispleo.program.protocol=arduino arduinoispleo.program.speed=19200 arduinoispleo.program.tool=avrdude arduinoispleo.p...
by Frank
Sunday 4. August 2019, 23:44
Forum: Arduino
Topic: DAB+-Radio with the Monkeyboard
Replies: 0
Views: 8205

DAB+-Radio with the Monkeyboard

On www.monkeyboard.org, I could buy one of these cool DAB+ boards. What could be better than taking an Arduino and an LCD and building my own DAB+ radio? :mrgreen: First of all: Don't try to get the 3.3V UART interface running at 115200 baud with an Arduino Pro Mini (or similar) - it just won't work...