a wiiremote on a ps3?
|
|
yuzaki
Junior Member
|
18. December 2006 @ 20:59 |
Link to this message
|
is any truth about the wiiremote that can be use on a ps3.i did see about the news about it but i cant believe that news. can someone confirm.
God is above all things
that can make all things possible
PS3 Firmware 1.93
PSN: yuzaki
Slim PSP
|
Advertisement
|
|
|
AfterDawn Addict
2 product reviews
|
18. December 2006 @ 21:08 |
Link to this message
|
were did you here about this? If it was possible it would be all of the forum.
|
AfterDawn Addict
|
18. December 2006 @ 21:11 |
Link to this message
|
It was posted on http://www.engadget.com .
It is for Linux only and they haven't released a guide or anything to get it working yet.
|
AfterDawn Addict
2 product reviews
|
18. December 2006 @ 21:13 |
Link to this message
|
Humm, that is muy interesante (very interesting) I need to work on my Spanish!
|
oofRome
Senior Member
|
18. December 2006 @ 21:23 |
Link to this message
|
I do know that a third party manufacturer was making wii-mote imitations for use on all consoles.
apparently sony has filed for a patent for a device much like the wiimote too.
If the wii takes off, than I wouldn't be surprised to see store shelves hit with 70 different kinds of wiimote-like accessories in a few years.
|
AfterDawn Addict
|
18. December 2006 @ 21:32 |
Link to this message
|
Ok I found the Wiimote driver for Linux:
http://forthewiin.org/
Anyone want to try it? I have neither a PS3 nor a wiimote so I can't at the moment.
This message has been edited since posting. Last time this message was edited on 18. December 2006 @ 21:33
|
yuzaki
Junior Member
|
18. December 2006 @ 21:39 |
Link to this message
|
is that all that can be use on it, or can it be played in the ps3 using the wiimote?
God is above all things
that can make all things possible
PS3 Firmware 1.93
PSN: yuzaki
Slim PSP
|
Senior Member
|
19. December 2006 @ 06:12 |
Link to this message
|
###########################################################
####### A LINUX DRIVER FOR THE NINTENDO WII REMOTE ######
##*********************************************************
## ___ ___
## /\ \ /\ \ _____
## _\:\ \ |::\ \ /::\ \
## /\ \:\ \ |:|:\ \ /:/\:\ \
## _\:\ \:\ \ __|:|\:\ \ /:/ \:\__\
## /\ \:\ \:\__\ /::::|_\:\__\ /:/__/ \:|__|
## \:\ \:\/:/ / \:\~~\ \/__/ \:\ \ /:/ /
## \:\ \::/ / \:\ \ \:\ /:/ /
## \:\/:/ / \:\ \ \:\/:/ /
## \::/ / \:\__\ \::/ /
## \/__/ \/__/ \/__/
##
## WMD v0.0.4.15: Wiiwanna Motte Dammiit!
## by Francois A. Bradet, aka e-Hernick
## coded from 2006-12-04 to 2006-12-13 12:26 EDT
## with code by Micah Dowty, davr and Marcan
## with algorithms by Ian Rickard
## share use modify as you wish; CC-PD+GPL2
##
## WMD is a Linux Driver for the Nintendo Wii Remote
##
## WMD lets you use the Wiimote as a mouse
##
## WMD lets you use the Wiimote as a keyboard
## WMD lets you use the Wiimote as a vibrator
##
## WMD is dangerous and experimental
## WMD could make your Wii explode!
## WMD has no warranty other than the CC-PD+GPL2
##
## Changelog
## v0.0.4.14
## v0.0.4.9 Made Matplotlib (MPL) optional
## Should handle OSD and MPL imports better
## v0.0.4.8 Mandatory Matplotlib requirement!
## Lag bug fixed, was due to status LEDs
## v0.0.4.5 Startup sequence!
## Status LEDs!
## v0.0.4.2 Changelog added
## Click lock!
############################################################
####### I. INTRODUCTION: READ ME FIRST OR ELSE #########
##**********************************************************
## It is important that you read this before
## trying to use WMD, or else you will fail miserably.
##
## You need technical knowledge and Linux experience
## if you are to succeed in installing WMD without help.
##
## But more than that, you need to install the following:
##
## ** BlueZ (MUST!)
##
## ** PyBluez 0.9.1 (MUST!) # aka python-bluez? on ubuntu
## http://org.csail.mit.edu/pybluez/release/pybluez-src-0.9.1.tar.gz
##
## To use Xlib event mode (GOOD)
## ++ python-xlib 0.12
## ++ with buffer overflow patch (READ SECTION: XLIB)
##
## To use uinput event mode (GOOD)
## ++ Linux 2.6 kernel with evdev and uinput modules
##
## To have real-time graphs of the accelerometer data (GOOD!)
## ++ Matplotlib 0.80 // 0.87 and above seem to require a patch for now
## http://matplotlib.sourceforge.net/
## To use the OSD (GOOD)
## ++ PyOSD 0.2.14 http://repose.cx/pyosd/
##
## To use uinput events to move the mouse (BAD!)
## This hasn't been tested in a while...
## ++ Xorg 7.0 with evdev
##
##
###############
## SECTION XLIB
###############
##
## You must used a PATCHED python-xlib 0.12 because the original
## has a terrible bug that prevents it from starting with modern Xorg
## python-xlib hasn't been maintained in years, but the patch is simple.
##
## First you install python-xlib 0.12
##
## Then you find the file protocol/display.py
#### locate protocol/display.py | grep -v pyc
## /usr/lib/python2.4/site-packages/Xlib/protocol/display.py
##
##
## Then you check if it's already patched
#### grep self.socket.recv /usr/lib/python2.4/site-packages/Xlib/protocol/display.py
## recv = self.socket.recv(4096)
##
## If the value is 4096, all is good
## If the value is 2048, you need to edit the file and change the value to 4096
##
## It's THAT EASY!
##
## On Gentoo, dev-python/python-xlib-0.12-r2 is already patched.
##
################
####
#### PREFLIGHT CHECK - IF YOU'RE HAVING ANY TROUBLE
#### RUN THE FOLLOWING COMMANDS AND COMPARE THE OUTPUT
#### YOU GET TO THE OUTPUT I GOT
##
#### gzcat /proc/config.gz | grep -iE "evdev|uinput"
## CONFIG_INPUT_EVDEV=y
## CONFIG_INPUT_UINPUT=m
##
#modprobe uinput
#modprobe evdev
#### lsmod | grep uinput
## uinput 8832 0
##
#### find /dev -name uinput
## /dev/uinput
## /dev/misc/uinput
##
#### locate evdev_drv
## /usr/lib/xorg/modules/input/evdev_drv.so
##
#### locate bluetooth.py
## /usr/lib/python2.4/site-packages/bluetooth.py
##
#### grep PyBluez /usr/lib/python2.4/site-packages/bluetooth.py | wc -l
## 2
##
#### hcitool scan | grep Nintendo
## 00:19:1D:25:16:43 Nintendo RVL-CNT-01
##
## WOW I JUST NOTICED THAT I Can actually type while I have a wiimote.
## I can simply losen it, and I always feel it but it doesnt disturb me.
## Except .. if I try to use the mouse. Therefore, I need a micro-LED bar
## on my monitors if I want this to be reality.
## You have the wiimote in front of your keyboard, laid out so that the
## keys can be used as a second keyboard. You can have a wiimote stand and a
## better strap too.
## Technique: hold down with one thumb.
## It's a THUMB CONTROLLER.
## And you pick it up with two hands
## There is practice with the left hand
## You use it instead of a mouse, train with it
## With a special LED bar on your monitor, the bottom of it.
### REWRITE CONFIG TREE INTO METACONFIG TREE
### WITH META-INFORMATION IN COMMENTS
# YOU PROBABLY DON'T WANT TO DO THIS:
## If you want do use XEVDEV IO, you need to install evdev_drv for Xorg
## You also need to add this section to your xorg.conf
#
# Section "InputDevice"
# Identifier "Wiimote"
# Driver "evdev"
# Option "Name" "Nintendo Wiimote"
# EndSection
#
## You will also need to modify your ServerLayout section.
## You must have only one CorePointer, but you can have
## many AlwaysCore devices. You don't need a Synaptics
## touchpad, I just have one on my laptop.
## So this is what the beginning of my xorg.conf looks like:
#
# Section "ServerLayout"
# Identifier "X.org Configured"
# Screen 0 "Screen0" 0 0
# InputDevice "Mouse0" "CorePointer"
# InputDevice "Keyboard0" "CoreKeyboard"
# InputDevice "Synaptics Touchpad" "AlwaysCore"
# InputDevice "Wiimote" "AlwaysCore"
# EndSection
#
## Scaling is known to work badly with evdev_drv
|
AfterDawn Addict
|
19. December 2006 @ 07:55 |
Link to this message
|
this is just another case of thunder undiserved. this is a very simple hack, one any programmer could have done. its running with linux, and anything runs with linux. same with the guy emulating windows and being all "ooo omg windows on ps3 i uberpwn, look" for something i even knew. when a hack for using the wii-mote in game comes out, that would be something worth recognition.
But they all do sort of the same thing, and that is rearrange what you thought was real, and they remind you of the beauty of very simple things. You forget, because youre so busy going from a to z, that theres 24 letters in between... You turn on... tune in... and you drop out...
PS3 Username: Anubis66
|
sihota
Junior Member
|
19. December 2006 @ 10:16 |
Link to this message
|
Can you use the playstation 2 remotes on the playstation 3.
Thanx
|
nick_01
Suspended permanently
|
19. December 2006 @ 10:25 |
Link to this message
|
well i dont abt ps2 remotes on the ps3 but i hav heard and seen ps3 remotes on ps2
|
Senior Member
|
19. December 2006 @ 10:38 |
Link to this message
|
I know for a fact you can use ps2 with ps3 with a usb adaptor for like $15.
|
AfterDawn Addict
|
19. December 2006 @ 20:23 |
Link to this message
|
@sihota- No because the PS3 doesn't have any IR ports.
|
Advertisement
|
|
|
Senior Member
|
19. December 2006 @ 20:39 |
Link to this message
|
this makes it possible, but i haven't tried it myself so i am not 100% sure things will work out perfectly...
PS3/PS2 Controller Adapter
|