Technisat USB IR Empfänger – beliebig programmieren

3. Januar 2010

Der USB IR Empfänger von Technisat funktioniert nur mit der Fernbedienung TTS35AI und TS35. Wenn man diesen nun zu Steuerung von VLC, Winamp, Spotify, Power DVD oder ander Anwendungen benutzten möchte, stellt man sehr schnell fest, dass dies nicht möglich ist. Der Grund hierfür ist, dass sich der USB Receiver als „Tastatur“ – HID-Tastatur – anmeldet. So sind die Tasten die man auf der FB drückt ganz normale Tasten, wie von einer Tastatur.

Um dies zu umgehen muss man für den USB IR folgenden Treiber, statt des standardmäßig installierten HID-Tastatur Treiber installieren: http://home.wanadoo.nl/sjaan.bierman/kbfiltr_ext.zip

Vor der installation muss man die .inf Datei jedoch noch anpassen:

I had a USB keyboard and a gamepad, both if which came with no specific drivers and were running with the same standard USB keyboard drivers, but I wanted to map them separately. The trick is to load the at the right insertion point in the driver stack. I modified the .inf file for GeomanNL’s kbfiltr_ext to do this. I changed it so that it would load for the most specific hardware id for the keyboard I wanted to remap (the device id). This is first entry for listed under Hardware Ids for the device in device manager. For example, my gamepad had HID_04f3&Pid_0103&Rev_0105&MI00 (and the Logitech keyboard a different id).

I then changed the line

Code:
%DDK_Ex% = kbfiltr, *PNP0BAAD

into

Code:
%DDK_Ex% = kbfiltr, HID\VID_04f3&Pid_0103&Rev_0105&MI_00

in the kbfiltr.inf file, and replaced all references to STANDARD_Inst with HID_Keyboard_Inst.

Now the driver would load for the gamepad, and everything worked fine. (I would then use the extended scancodes in my ahk-script to respond to the keypad).

Im Falle des USB IR von Technisat entspricht das der Device ID:
HID\VID_147A&PID_E02D&REV_0005&Col01

Dann den modifizierten Treiber statt der HID-Tastatur im Gerätemanager installieren.
Um die ganzen Signale nun abzufangen nutzt man autohotkey und schreibt folgendes Script z.b. für VLC, Spotify und Winamp

SC102::
IfWinNotExist ahk_class BaseWindow_RootWnd
return
ControlSend, ahk_parent, z
return

SC103::
IfWinNotExist ahk_class BaseWindow_RootWnd
return
ControlSend, ahk_parent, c
return

SC104::
IfWinNotExist ahk_class BaseWindow_RootWnd
return
ControlSend, ahk_parent, b
return

SC105::
DetectHiddenWindows, On
IfWinNotExist ahk_class SpotifyMainWindow
return
ControlSend, ahk_parent, ^{Left}
DetectHiddenWindows, Off
return

SC106::
DetectHiddenWindows, On
IfWinNotExist ahk_class SpotifyMainWindow
return
ControlSend, ahk_parent, {Space}
DetectHiddenWindows, Off
return

SC107::
DetectHiddenWindows, On
IfWinNotExist ahk_class SpotifyMainWindow
return
ControlSend, ahk_parent, ^{Right}
DetectHiddenWindows, Off
return


#IfWinActive, , VLC (Direct3D output)
{
SC11C::Send {Space}
SC150::Send ^{Down}
SC148::Send ^{Up}
SC14B::Send ^{Left}
SC14D::Send ^{Right}
SC132::Send m
SC143::Send f
}

QUELLE: http://www.autohotkey.com/forum/topic10416.html

Druckerserver Linksys WPS54G – WPA2 fähig machen

24. November 2009

Druckerserver Linksys WPS54G kommt vom Werk ohne WPA2 Verschlüsselung. Es gibt jedoch einen Trick wie man dies trotzdem benutzen kann: Über ein Firmwareupdate! Danach funktioniert es einwandfrei.

Okay, I’ve got version 1 of the hardware and have finally succeeded in FINDING and installing the v. 6049 firmware, and setting up WPA2. I can confirm that it now works wirelessly with WPA2 encryption on my home network.

Download from: here (filename: WPS54Gv1_6049 ) or here This sub-branch of the Linksys site still gives you the option to download fw for both versions of the hardware. Select hardware version 1 and it offers you fw v. 6049, select version 2 and you get 6051. Get it while it’s hot, Linksys could realise at any time that they’ve actually got a usable download posted, and will probably take it down as soon as they do…

I used the BiAdmin utility to upgrade the firmware, as described by Pieterw earlier in this thread. Once the upgrade’s complete, however, BiAdmin doesn’t seem to support the WPA2 setup. For that you have to access the print server via its web-based admin screen. Do this with the print server wired to the router. Then, when you’ve set up the SSID and password, disconnect from the router, power it down then power it up again after a few seconds. Once it’s wirelessly connected you can’t access the web-based admin screen, but it will print! And BiAdmin will also recognise it on the network.

(Quelle: http://forums.linksysbycisco.com/linksys/board/message?board.id=Wireless_Print_Servers&thread.id=3299&view=by_date_ascending&page=3 )

Geld für alte Handys

10. September 2009

Unter https://www.asgoodas.nu kann man den Wert seines alten Handys aufgrund des Zustandes erfahren. Man schickt es ein und bekommt die „Abwrackprämie“ zzgl. Versandkosten erstattet.

So kann man noch aus alten Elektronik Artikeln Geld machen.

Spotify – Ländercode und Einladung umgehen

10. September 2009

Auf der Seite http://spotifyforeveryone.tk kann man sich für Spotify ohne Einladung innerhalb von Sekunden registrieren.

Als schönes Feature kann die Seite automatisch die Länderüberprüfung austricksen, so dass man ohne Barrieren Spotify auch in Deutschland nutzen kann.

Typo3 Anleitung

10. September 2009

45min overview: (DE)

http://typo3.org/documentation/document-library/extension-manuals/ts45min_de/0.5.1/view/toc/0/

xmapp portable + typo3 installieren:

http://www.webmasterpro.de/coding/article/cms-typo3-der-einstieg.html#goto-2-xampp-starten-und-aufraeumen

typo3 workshop:

http://www.sk-typo3.de/Typo3-Workshop.15.0.html

Mehrsprachigkeit einrichten:

http://www.training-typo3.com/2008/12/15/typo3-multi-language/

sehr gute Deutsche Dokumentation:

http://www.typo3.net/uploads/media/dokumentation.pdf

Typo3 vertiefen:

http://typo3.org/documentation/document-library/

Typo3 Backend erklärt (Grundlagen):

http://www.boku.ac.at/typo3einf/ES-Typo3.pdf

Webseite Kompatibilitätstest – IE 6, 7, 8, …

10. September 2009

Eine Vielzahl von Browsern online / portable startbar, so dass ein ausführlicher Kompatibilitätstest der selbst erstellten Homepage ohne weitere Probleme möglich ist.

http://spoon.net/browsers

0180 günstig anrufen

10. September 2009

Auf der Seite http://www.tk-anbieter.de findet man zu einer ganzen Reihe von kostenpflichtigen Rufnummer mit entsprechender Alternativnummer zum Festnetzpreis.

Spotify Werbung unterbinden

9. September 2009

Auf dieser Seite findet man ein Script, welches Spotify automatisch bei Werbung auf Mute stellt

http://cosechapropia.blogspot.com/2009/09/mukote-11-sin-instalacion.html

Geniale Flugsuchmaschine – Tag nach Kosten auswählen

10. August 2009

Hier kann man seine Reisedaten nach Flugkosten ganz Tagesabhängig aussuchen. Dadurch wird es unschlagbar günstig!

http://www.swoodoo.com

„Die Flugsuchmaschine Swoodoo sucht auf Knopfdruck die günstigsten Flüge in alle Welt – und das jetzt noch besser mit neuer Bedienoberfläche und erweiterten Funktionen. …“
„Zeigt zusätzlich auch einen Flugpreisverlauf, der verrät an welchen Tagen Tickets billiger/teurer sind. Preisvergleiche auch bei discountflieger.de plus News möglich.

Virtual Audio Cable – Virtuelle Audiokabel durch den PC verlegen

9. August 2009

Mit „Virtual Audio Cable“ können Sie beliebige Soundsignale in andere Anwendungen leiten.

Sie möchten einen Webradio-Stream zum Bearbeiten direkt in einen Audio-Editor umleiten? Mit dem „Virtual Audio Cable“ ist das problemlos möglich.

Wie der Name bereits verrät, erstellt das Tool ein virtuelles Audiokabel, über das der Audio-Stream geleitet wird. Der Clou: Sie können mehrere Kabel parallel anlegen, die sich aber nicht überschneiden müssen oder automatisch zusammengemixt werden.