View unanswered posts    View active topics

All times are UTC - 6 hours





Post new topic Reply to topic  [ 21 posts ] 
Go to page 1, 2  Next

Print view Previous topic   Next topic  
Author Message
Search for:
PostPosted: Fri Jun 02, 2006 7:18 pm 
Offline
Joined: Sun Aug 28, 2005 7:07 pm
Posts: 821
Location: Melbourne, Australia
Hi folks,

I've found this card very reliable after a few tweaks (and it's incredibly cheap). The remote is a USB thing and is essentially a keyboard.

Re-mapping the keys is a slow process, which I've done, for most of them. This means you can put your keyboard away for TV viewing. It's pretty basic functionality.

http://www.better-access.com/keybindings.sql

To import it, type (logged in as mythtv) ``cat keybindings.sql|mysql -p mythconverg'' and put your mythtv password in when prompted. It will blow away your existing keybindings, so you may want to make a backup first (mysqldump -p mythconverg keybindings > oldkeys.sql).

Mike

ps any tweaks and I'd be glad to modify the sql.[/url]


Top
 Profile  
 
 Post subject:
PostPosted: Tue Jun 06, 2006 7:29 pm 
Offline
Joined: Wed Mar 03, 2004 7:43 pm
Posts: 748
Location: Sydney, Australia
Thanks for your work on this, Mike.

Note to anyone who is going to import this that it will only work if you have a single frontend called saturn :roll:

Some judicious editing of that file may be in order. Or maybe just use MythWeb to set the keybindings manually, using the data that is in the file?

_________________
| Nigel Pearson, nigel.pearson.au@gmail.com
| "Things you own end up owning you" - Tyler, Fight Club


Top
 Profile  
 
PostPosted: Tue Jun 13, 2006 5:29 pm 
Offline
Joined: Sat Jun 03, 2006 6:41 pm
Posts: 4
Hi,
I was going to remap all my keys in this way as well, but I believe I have an even better way of getting the remote working 100%, inlucding the POWER button to run a mythpower script to stop/start mythfrontend (extremely high WAF). The key is that it is a USBHID keyboard (uses usbhid.ko kernel module), and my real keyboard uses the PS2 connection. Therefore I can do anything I like to the usbhid module without affecting any other input devices, this includes remapping the actual keymap for the usbhid keyboard. I'm not sure what happens if you use a USB keyboard as your normal keyboard - I would guess that the keys would end up remapped for the standard keyboard as well, but I'm not sure. Because the keys are actually remapped (e.g. the left button (Vol+ I think) now does a Left Arrow keystroke, and the up button (CH+) now does an Up Arrow keystroke (instead of Ctrl-Pageup or whatever it was)), it also means that the remote works well for many other applications (such as mplayer for video playback).

I found a C program that remapped the keyboard (do a search for usbhid-twinhan.c), which I had to do some tweaking with to get it working to remap the keys for my module. The result is that the remote can be used to control mythtv without remapping any keys in myth, and the power button can be setup to run a script rather than switching to Console6 (Ctrl-Alt-Shift-F6, as it does by default for some reason - so I have it remapped to Alt-F6 which can be mapped to any function).

I am at work at the moment, so I don't have access to the C program, but I will post it tonight as soon as I get home. I have been using myth for a year or 2 now, and it will be great to contribute something to the community for a change, so I hope this will be useful to some of you.

Cheers,
Wayne

manicmike wrote:
Hi folks,

I've found this card very reliable after a few tweaks (and it's incredibly cheap). The remote is a USB thing and is essentially a keyboard.

Re-mapping the keys is a slow process, which I've done, for most of them. This means you can put your keyboard away for TV viewing. It's pretty basic functionality.

http://www.better-access.com/keybindings.sql

To import it, type (logged in as mythtv) ``cat keybindings.sql|mysql -p mythconverg'' and put your mythtv password in when prompted. It will blow away your existing keybindings, so you may want to make a backup first (mysqldump -p mythconverg keybindings > oldkeys.sql).

Mike

ps any tweaks and I'd be glad to modify the sql.[/url]


Top
 Profile  
 
 Post subject:
PostPosted: Tue Jun 13, 2006 10:38 pm 
Offline
Joined: Tue Mar 22, 2005 9:18 pm
Posts: 1422
Location: Brisbane, Queensland, Australia
kearnesw, I would be greatly appreciative if you could come up with a solution that works as I have two of these remotes and would love to use them. It would go a BIG jump forward in the WAF steaks.

Looking forward to it.

_________________
Girkers


Top
 Profile  
 
PostPosted: Wed Jun 14, 2006 2:11 am 
Offline
Joined: Sat Jun 03, 2006 6:41 pm
Posts: 4
Good to hear someone is interested. I just got home, so as promised here is the C progam and some basic instruntions on how to use it.

I'm not sure how to do an attachment, so I have put the text in a quote box at the end of this post. I have only a very vague idea of how the keymaps were originally determined, so don't hassle me about that.

Anyway here is the process:
    Ensure that usbhid has been built as a module, not into the kernel. If it is built into the kernel, then you need to rebuild your kernel and change the usbhid (DeviceDrivers->USBSupport->USB Human Interface Device (full HID) support - ensure this has an <M> next to it and not a <*>) using make menuconfig or similar.
    NOTE: Knoppmyth R5C7 delivers usbhid as a module, so no kernel rebuild is necessary.
    Once you have a usbhid.ko, copy the text for the C program below to a file named usbhid-twinhan.c, making sure to edit the filenamestr (line 99) to point to the usbhid.ko module for your kernel (it is setup for default KnoppMyth R5C7 install).
    Compile the C program using the compile statement in the comment header (gcc usbhid-twinhan.c -o usbhid-twinhan).
    Run the program with no options to "patch" the usbhid module with the updated keymap.
    Reload the usbhid module "modprobe -r usbhid" followed by "modprobe usbhid".

That gets the remote working quite nicely with the default MythTV key bindings. If there are any keys you aren't happy with you can remap their binding in mythfrontend nowdays.

Now if you want the Power button, which is the main reason I went with this method of getting the remote to work (as I couldn't seem to remap the Ctrl-Alt-Shift-F6 as it seems to be hard-wired in Linux to switch consoles). Anyway with the default FluxBox GUI used in Knoppmyth I did the follwoing to remap the new Alt-F6 keystroke for the power button:

    Edit the fluxbox keys file (in my Knoppmyth R5C7 install this seems to be /etc/X11/fluxbox/keys and add the following line "Mod1 F6 :ExecCommand mythpower". In my installation, there was already an entry for Alt-F6 to switch to workspace 6, but who uses workspaces?
    Create a file /usr/local/bin/mythpower cotaining the following (I think I ripped this from Jarrod Wilson's FC4 Myth Guide):
    Quote:
    #!/bin/bash
    PROG=mythfrontend
    STATUS=`ps -e | grep $PROG | grep -v grep | wc -l | awk '{print $1}'`

    if [ `echo $DISPLAY | grep -c ":0"` -ge 1 ]
    then
    if [ $STATUS -eq 0 ]
    then
    ( $PROG & )
    else
    killall $PROG
    fi
    fi
    exit 0

USBHID-TWINHAN.C Code:
Quote:
// TwinHan VisionPlus DVB-T card remote
// Changes the keymaping for usb keyboards so the remote better matches MythTV
// gcc usbhid-twinhan.c -o usbhid-twinhan
// no options for install
// some options for uninstall
// Copyright 2005/07/13 Paul Andreassen

/*
Button keyboard key showkey new key code MythWeb
fullscreen z 2c SKIPCOMMERCIAL
power Ctrl-Alt-Shift-F6 1d-38-2a-40 Alt-F6 changes to console 6
1-9-0 1-9-0 02-0a-0b 1-9-0
record Home 66 r 13 TOGGLERECORD
favourite v 2f / 35 NEXTFAV NEXTFAV
rewind i 17 home 66 PREVVIEW PREVTRACK CLEARMAP DAYLEFT SKIPCOMMBACK
forward n 31 end 6b NEXTVIEW NEXTTRACK LOADCOMMSKIP DAYRIGHT SKIPCOMMERICAL
CH+ pageup 68 up 67 UP CHANNELUP
CH- pagedown 6d down 6c DOWN CHANNELDOWN
play return 1c SELECT
vol+ SHIFT-up 2a-67 right 2a-6a RIGHT RANKINC SEEKFFWD
vol- SHIFT-down 2a-6c left 2a-69 LEFT RACKDEC SEEKRWND
recall c 2e i 17 INFO RETRIEVENEWS INVERTMAP
stop End 6b d 20 DELETE DELETE DELETE DELETE
timeshift/pause t 14 p 19 PAUSE PLAYBACK PAUSE PAUSE
mute m 32 F9 43 MUTE MUTE
cancel Escape 01 ESCAPE
capture p 19 w 11 TOGGLEASPECT
preview k 25 a 1e TOGGLESTRETCH
EPG e 12 s 1f GUIDE
record list l 26 m 32 MENU
tab Tab(beeps) 0f pageup 68 PAGEUP RWND PREVCUT JUMPRWND
teletext a 1e pagedown 6d PAGEDOWN FFWD NEXTCUT JUMPFFWD
*/

#include <stdio.h>

//#define unk KEY_UNKNOWN
#define unk 240

static unsigned char hid_keyboard_orig[256] = {
0, 0, 0, 0, 30, 48, 46, 32, 18, 33, 34, 35, 23, 36, 37, 38,
50, 49, 24, 25, 16, 19, 31, 20, 22, 47, 17, 45, 21, 44, 2, 3,
4, 5, 6, 7, 8, 9, 10, 11, 28, 1, 14, 15, 57, 12, 13, 26,
27, 43, 43, 39, 40, 41, 51, 52, 53, 58, 59, 60, 61, 62, 63, 64,
65, 66, 67, 68, 87, 88, 99, 70,119,110,102,104,111,107,109,106,
105,108,103, 69, 98, 55, 74, 78, 96, 79, 80, 81, 75, 76, 77, 71,
72, 73, 82, 83, 86,127,116,117,183,184,185,186,187,188,189,190,
191,192,193,194,134,138,130,132,128,129,131,137,133,135,136,113,
115,114,unk,unk,unk,121,unk, 89, 93,124, 92, 94, 95,unk,unk,unk,
122,123, 90, 91, 85,unk,unk,unk,unk,unk,unk,unk,unk,unk,unk,unk,
unk,unk,unk,unk,unk,unk,unk,unk,unk,unk,unk,unk,unk,unk,unk,unk,
unk,unk,unk,unk,unk,unk,unk,unk,unk,unk,unk,unk,unk,unk,unk,unk,
unk,unk,unk,unk,unk,unk,unk,unk,unk,unk,unk,unk,unk,unk,unk,unk,
unk,unk,unk,unk,unk,unk,unk,unk,unk,unk,unk,unk,unk,unk,unk,unk,
29, 42, 56,125, 97, 54,100,126,164,166,165,163,161,115,114,113,
150,158,159,128,136,177,178,176,142,152,173,140,unk,unk,unk,unk
};

static unsigned char hid_keyboard_new[256] = {
0, 0, 0, 0,109, 48, 23, 32, 31, 33, 34, 35,102, 36, 30, 50,
67,107, 24, 17, 16, 19, 31, 25, 22, 53, 17, 45, 21, 44, 2, 3,
4, 5, 6, 7, 8, 9, 10, 11, 28, 1, 14,104, 57, 12, 13, 26,
27, 43, 43, 39, 40, 41, 51, 52, 53, 58, 59, 60, 61, 62, 63, 64,
65, 66, 67, 68, 87, 88, 99, 70,119,110, 19,103,111, 32,108,106,
105,105,106, 69, 98, 55, 74, 78, 96, 79, 80, 81, 75, 76, 77, 71,
72, 73, 82, 83, 86,127,116,117,183,184,185,186,187,188,189,190,
191,192,193,194,134,138,130,132,128,unk,131,137,133,135,136,113,
115,114,unk,unk,unk,121,unk, 89, 93,124, 92, 94, 95,unk,unk,unk,
122,123, 90, 91, 85,unk,unk,unk,unk,unk,unk,unk,unk,unk,unk,unk,
unk,unk,unk,unk,unk,unk,unk,unk,unk,unk,unk,unk,unk,unk,unk,unk,
unk,unk,unk,unk,unk,unk,unk,unk,unk,unk,unk,unk,unk,unk,unk,unk,
unk,unk,unk,unk,unk,unk,unk,unk,unk,unk,unk,unk,unk,unk,unk,unk,
unk,unk,unk,unk,unk,unk,unk,unk,unk,unk,unk,unk,unk,unk,unk,unk,
unk, 0, 56,125, 97, 54,100,126,164,166,165,163,161,115,114,113,
150,158,159,128,136,177,178,176,142,152,173,140,unk,unk,unk,unk
};

//static unsigned char hid_keyboard_new[256] = {
// 0, 0, 0, 0,109, 48, 23, 32, 31, 33, 34, 35,102, 36, 30, 50,
// 67,107, 24, 17, 16, 19, 31, 25, 22, 53, 17, 45, 21, 44, 2, 3,
// 4, 5, 6, 7, 8, 9, 10, 11, 28, 1, 14,104, 57, 12, 13, 26,
// 27, 43, 43, 39, 40, 41, 51, 52, 53, 58, 59, 60, 61, 62, 63, **WAK**19,
// 65, 66, 67, 68, 87, 88, 99, 70,119,110, 19,103,111, 32,108,106,
// 105,105,106, 69, 98, 55, 74, 78, 96, 79, 80, 81, 75, 76, 77, 71,
// 72, 73, 82, 83, 86,127,116,117,183,184,185,186,187,188,189,190,
// 191,192,193,194,134,138,130,132,128, **WAK**129,131,137,133,135,136,113,
// 115,114,unk,unk,unk,121,unk, 89, 93,124, 92, 94, 95,unk,unk,unk,
// 122,123, 90, 91, 85,unk,unk,unk,unk,unk,unk,unk,unk,unk,unk,unk,
// unk,unk,unk,unk,unk,unk,unk,unk,unk,unk,unk,unk,unk,unk,unk,unk,
// unk,unk,unk,unk,unk,unk,unk,unk,unk,unk,unk,unk,unk,unk,unk,unk,
// unk,unk,unk,unk,unk,unk,unk,unk,unk,unk,unk,unk,unk,unk,unk,unk,
// unk,unk,unk,unk,unk,unk,unk,unk,unk,unk,unk,unk,unk,unk,unk,unk,
// **WAK**29, 0, 56,125, 97, 54,100,126,164,166,165,163,161,115,114,113,
// 150,158,159,128,136,177,178,176,142,152,173,140,unk,unk,unk,unk
//};

#define SIZE 256
// *** Change the following line to reference the correct kernel module ($KVER)
char filenamestr[]="/lib/modules/2.6.15-chw-2/kernel/drivers/usb/input/usbhid.ko";

int main(int argc, char *argv[])
{
unsigned char *bsearch, *breplace;
FILE *fo;
char unamer[SIZE];
char filename[SIZE];
int pos=0;
unsigned char byte;

if (argc == 1)
{
printf("Installing\n");
bsearch = hid_keyboard_orig;
breplace = hid_keyboard_new;
}
else
{
printf("UN-installing\n");
bsearch = hid_keyboard_new;
breplace = hid_keyboard_orig;
}

if ((fo=popen("uname -r","r"))==NULL)
{
printf("Can't popen uname -r\n");
exit(1);
}

pos=fread(unamer,1,SIZE,fo);
if ((pclose(fo)==-1)||(pos==0)||(pos==SIZE))
{
printf("Error with uname -r\n");
exit(1);
}

unamer[pos-1]=0; // remove trailing \n
pos=snprintf(filename,SIZE,filenamestr,unamer);
if ((pos<0)||(pos>=SIZE))
{
printf("Error with snprintf (%s)\n",filename);
exit(1);
}

if ((fo=fopen(filename,"r+b"))==NULL)
{
printf("Can't open %s\n",filename);
exit(1);
}

printf("Searching %s\n",filename);

pos=0;
while (fread(&byte, 1, 1, fo) == 1)
{
if (byte==bsearch[pos])
{
pos++;
if (pos==256)
{
printf("Found\n");

int back=-pos;
fseek(fo, back, SEEK_CUR);
if (fwrite(breplace, 1, pos, fo)==pos)
{
printf("Wrote ok\n");
}
else
{
printf("Error wrote short\n");
}

pos=0;
break;
}
}
else
{
if (pos>4) {
printf("pos=%d byte=%d bsearch[%d]=%d\n",pos,byte,pos,bsearch[pos]);
}
// jump back to the starting byte of this match
int back=-pos;
fseek(fo, back+1, SEEK_CUR);

pos = 0;
}
/*
printf("%d, ",byte);
pos++;
if (pos==256)
{
printf("\n");
pos = 0;
}
*/
}

fclose(fo);

return 0;
}


My next step is to get ACPI working or this box. I had wakeup/shutdown working perfectly in my FC4 setup, so hopefully I can get it going again for KnoppMyth.
Then I will tackle getting my Winfast DTV1000 Remote working with lirc. Out of interest has anyone been able to get this type of remote working? It is one of thos 3.5mm jack types that plug into the Card.


Hope This Helps.


Top
 Profile  
 
PostPosted: Wed Jun 14, 2006 2:13 am 
Offline
Joined: Sat Jun 03, 2006 6:41 pm
Posts: 4
Sorry but the post seems to have lost all the indentation in the code, so it looks a bit ugly, but it will still work AOK.


Top
 Profile  
 
 Post subject:
PostPosted: Thu Jun 15, 2006 4:42 pm 
Offline
Joined: Tue Mar 22, 2005 9:18 pm
Posts: 1422
Location: Brisbane, Queensland, Australia
I am runnig R5C7 so I will try and give this a go on the weekend.

Thanks

_________________
Girkers


Top
 Profile  
 
 Post subject:
PostPosted: Mon Jun 19, 2006 10:09 pm 
Offline
Joined: Sun Aug 28, 2005 7:07 pm
Posts: 821
Location: Melbourne, Australia
Girkers wrote:
I am runnig R5C7 so I will try and give this a go on the weekend.

Thanks


Wow! Fantastic that so many people have added to this. I've updated a few things in the key list and documented it.
The new SQL is at http://www.better-access.com/keys.sql. Replace the hostname with your own (I set it to 'mythtv'). A quick way to do this is to use sed. sed 's/mythtv/YOUR-HOSTNAME/' keys.sql > newkeys.sql then import with "cat newkeys.sql | mysql -u mythtv -p mythconverg"
The instructions are in OpenOffice format at http://www.better-access.com/Mythtv-docco.odt or as pdf at http://www.better-access.com/Mythtv-docco.pdf.
Media Player
I've found that xine is a fantastic media player (the Internal one doesn't do .avi playback consistently well and mplayer doesn't show DVD menus), so I put the keys at http://www.better-access.com/xinekeys. To use it, copy it to /home/mythtv/.xine/keymap and change the dvd player to "xine -V xv -f dvd://", and the video player to "xine -f -g -V xv".


Top
 Profile  
 
 Post subject:
PostPosted: Tue Jun 20, 2006 1:43 am 
Offline
Joined: Tue Nov 29, 2005 8:22 am
Posts: 17
Location: UK
Just to reply to kearnesw's code - I tried this with my Twinhan 3020 and it works like a charm; thanks very much for sharing that.
Now that the receiver is working well, does anyone know if I could use the remote from my Hauppauge MVP with theTwinhan receiver? The Hauppauge one is a bit less cheap-looking and has got the handy 'Jump' buttons for music, videos etc. I've tried pointing it at the receiver and pressing buttons, but no characters are being output when I do so.


Top
 Profile  
 
PostPosted: Sat Jun 24, 2006 1:24 pm 
Offline
Joined: Tue Mar 28, 2006 8:26 pm
Posts: 804
Location: Minneapolis, MN
My friend has a Twinhan IR remote and USB IR receiver.

Originally, when we installed his KnoppMyth R5C7, I just chose an RCA remote because he had one laying around and also there was no TwinHan remote listed in the /usr/local/bin/lirc-reconfig.sh file.

I saw there was an LIRC config file for the Tiwnhan remote at http://lirc.sourceforge.net/remotes/twinhan/

So, I just copied that file to my friend's /etc/lircd.conf file. After reboot, my friend reports remote functionality. He says the numbers work correctly and the power button takes him to a full-screen linux shell.

As far as button mapping, I suspect that the RCA remote button mapping is still in effect.
Is there a button definition file I need to replace or edit?
There was no button definition file inside the http://lirc.sourceforge.net/remotes/twinhan/ directory.

Eric

_________________
KnoppMyth R5.5, Asus A8N-VM CSM (nvidia 6150 onboard video), AMD Athlon 64 dual-core 4200+, two 1GB sticks DDR 400, HD-3000 HDTV card, PVR-150 card, Iguanaworks RS-232 IR receiver/transmitter, Pioneer DVR-110 DVD burner


Top
 Profile  
 
 Post subject:
PostPosted: Sun Jun 25, 2006 5:34 am 
Offline
Joined: Tue Mar 22, 2005 9:18 pm
Posts: 1422
Location: Brisbane, Queensland, Australia
neutron68, My numbers and play (enter) key work without any modification and if you read the earlier post the power button does an ALT+F6 which takes you to a linux shell.

To get the remote working properly you can not use lirc as the remote receiver is detected as a keyboard and will not work with lirc, I have tried and tried. Read the earlier posts in this thread and try one of the other two methods.

_________________
Girkers


Top
 Profile  
 
PostPosted: Sun Jun 25, 2006 12:12 pm 
Offline
Joined: Tue Mar 28, 2006 8:26 pm
Posts: 804
Location: Minneapolis, MN
Thanks for your information on the Twinhan system!

Girkers wrote:
To get the remote working properly you cannot use lirc as the remote receiver is detected as a keyboard and will not work with lirc, I have tried and tried. Read the earlier posts in this thread and try one of the other two methods.


Since the Twinhan IR receiver is not lirc compatible, could the Twinhan remote control still be used if the IR receiver was a simple RS-232 receiver?

I was also looking for the correct procedure for installing a new IR remote. (So, I can switch to an RCA or Pansat remote if that would have better functionality.)
Am I correct that all I need to do is copy the appropriate remote control config file into the file /etc/lircd.conf and then reboot?

Thanks!
Eric

_________________
KnoppMyth R5.5, Asus A8N-VM CSM (nvidia 6150 onboard video), AMD Athlon 64 dual-core 4200+, two 1GB sticks DDR 400, HD-3000 HDTV card, PVR-150 card, Iguanaworks RS-232 IR receiver/transmitter, Pioneer DVR-110 DVD burner


Top
 Profile  
 
 Post subject:
PostPosted: Wed Jun 28, 2006 8:49 pm 
Offline
Joined: Tue Mar 22, 2005 9:18 pm
Posts: 1422
Location: Brisbane, Queensland, Australia
Firstly I would like to thank manicmike as I have implemented both of his remote wonders and they are great, both the MythTV and Xine stuff. The WAF has increased remarkably, so much so my wife now talks to me :wink:

My next question is though what are the differences between manicmike's and kearnesw's implementations.

If anyone is interested I may write a script to implement the remote keys using manicmike's implementation, drop me a post in here or via email.

_________________
Girkers


Top
 Profile  
 
 Post subject: Not working?
PostPosted: Fri Jul 07, 2006 6:35 pm 
Offline
Joined: Thu Mar 30, 2006 8:19 pm
Posts: 39
Hey guys, I followed the instructions as written here, and I get:

Searching /lib/modules/2.6.15-chw-2/kernel/drivers/usb/input/usbhid.ko

But nothing else. after modprobing as instructed, my navigation keys do not work. Only cancel and enter seem to do something in the menus.

Looking at the source, I most definitely need to see more output from the program, and I don't think it's patched the module as it should.

Funny thing is, when I locate usbhid.ko, it finds it exactly where it is looking for it.

It must be dropping out somewhere in the while loop but I'm most certainly not a programmer. Any ideas what could couse it to not do the bsearch/fwrite parts? I don't know what they mean or do, but I'm assuming thats's the part that does the magic.

Regards,
Ed.


Top
 Profile  
 
 Post subject: Scratch that
PostPosted: Fri Jul 07, 2006 6:51 pm 
Offline
Joined: Thu Mar 30, 2006 8:19 pm
Posts: 39
OK, scratch the above, I somehow must have managed to have another version of the usbhid-twinhan file from somewhere else, when I copy and paste the code below, I do get:

Installing
Searching /lib/modules/2.6.15-chw-2/kernel/drivers/usb/input/usbhid.ko
Found
Wrote ok

Then I do the modprobes.

Then I still get the keys no good. My rewind button seems to move up in the menus, but up down left right (the most important) do nothing in the menu.

On the back of my remote, I have HH-338

Do I even have the same remote as you guys?

Regards,
Ed.


Top
 Profile  
 

Display posts from previous:  Sort by  
Post new topic Reply to topic  [ 21 posts ] 
Go to page 1, 2  Next



All times are UTC - 6 hours




Who is online

Users browsing this forum: No registered users and 74 guests


You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot post attachments in this forum

Jump to:  
Powered by phpBB® Forum Software © phpBB Group

Theme Created By ceyhansuyu