Is there an app where I can use my phone like a remote control similar to a harmony? If not, what are the prospects of developing one? That would be pretty cool if you could make this thing an all in one, and with its bluetooth capabilities, run the PS3 as well. Anyone interested in giving it a go?
nofattys said:
Is there an app where I can use my phone like a remote control similar to a harmony? If not, what are the prospects of developing one? That would be pretty cool if you could make this thing an all in one, and with its bluetooth capabilities, run the PS3 as well. Anyone interested in giving it a go?
Click to expand...
Click to collapse
Aren't most remotes IR? I may have missed it, but I don't think the EVO has an IR emitter. I suppose you could make a device that plugs into the headphone jack (or one of the other jacks) and come up with something that way, but then you'd need to keep track of a separate piece.
{
"lightbox_close": "Close",
"lightbox_next": "Next",
"lightbox_previous": "Previous",
"lightbox_error": "The requested content cannot be loaded. Please try again later.",
"lightbox_start_slideshow": "Start slideshow",
"lightbox_stop_slideshow": "Stop slideshow",
"lightbox_full_screen": "Full screen",
"lightbox_thumbnails": "Thumbnails",
"lightbox_download": "Download",
"lightbox_share": "Share",
"lightbox_zoom": "Zoom",
"lightbox_new_window": "New window",
"lightbox_toggle_sidebar": "Toggle sidebar"
}
nofattys said:
Is there an app where I can use my phone like a remote control similar to a harmony? If not, what are the prospects of developing one? That would be pretty cool if you could make this thing an all in one, and with its bluetooth capabilities, run the PS3 as well. Anyone interested in giving it a go?
Click to expand...
Click to collapse
The only way you can do this is with a hardware update. And an application, but that will take some development.
Below is the closest you'll get until googleTV comes out (then there will be a dedicated Harmony app).
http://code.google.com/p/android-xbmcremote/
would be sweet. This would require a BT-linked IR transmitter somewhere in the room that could convert the phone's BT signal to IR.
I am pretty sure that the PS3 uses bluetooth in its controllers. I have a harmony and it isn't compatible with PS3 due to the Harmony using IR and the PS3 using bluetooth. This would be a pretty sweet app though.
g mote 2.0 its in the market
g mote 2.0 its in the market
Click to expand...
Click to collapse
that's for computers
could somebody port the mobileSRC: Mobile Remote app over from Windows Mobile???
this works for the PS3. Here's a link to what I'm talking about: "mobilesrc.com/MobileRemote.aspx"
just buy a Harmony Remote for $50 and you'll love yourself for it.
the 550 is one of the best investments and one of the more practical and more future proof piece of electronics I own.
PLESTIUC said:
just buy a Harmony Remote for $50 and you'll love yourself for it.
the 550 is one of the best investments and one of the more practical and more future proof piece of electronics I own.
Click to expand...
Click to collapse
I already have a Harmony Remote. Does nothing for PS3, and even if it did, it wouldn't function as a keyboard for said PS3.
Harmony makes a ps3 adapter. I have it and it works great.
Sent on my cursed EVO
Checkout the Logitech Revue. Google TV, access to your network content, harmony remote control functionality for IR devices, etc. Logitech PS3 adapter may complete the picture.
7/12 - If your television supports the Anynet+ protocol, you can use your tv to control your PS3. With Harmony Link you could even build macro to autonavigate through the menus as desired.
Also there is a app if you have a tivo to control it through your wifi network. I couldn't get it to auto detect the tivo so i have to manually asign a ip address to the program to get it to work.
Related
Here's my first attempt at pocketpc development -- an MPD client. It's a fairly niche application, but maybe someone else out there will enjoy it.
First off, you'll need an MPD server. MPD is a small simple daemon that plays music. It has no UI of its own-- it relies on various clients to connect to it for control.
My application does not actually play music. It's more like a remote control. It connects to your MPD server and tells it what to play. But if you combine this with icecast on the server and TCPMP on your phone, you CAN actually stream the music to your phone. The effect for me is having my entire 80G+ music collection available to my phone anywhere I have EVDO access.
If you've made it that far, here's a few features my client offers:
Automatic album art from Amazon
A today screen plugin showing the current song
Gestures for easy control
Kinetic scrolling lists
Here's a short youtube demonstration of some of the UI elements.
The application requires Windows Mobile Professional with the .NET 2.0 framework. It's available from http://code.google.com/p/pocketpcmpdclient/.
Special thanks to dosfan and gingercat from this thread. I used a lot of their code for kinetic scrolling in my lists.
{
"lightbox_close": "Close",
"lightbox_next": "Next",
"lightbox_previous": "Previous",
"lightbox_error": "The requested content cannot be loaded. Please try again later.",
"lightbox_start_slideshow": "Start slideshow",
"lightbox_stop_slideshow": "Stop slideshow",
"lightbox_full_screen": "Full screen",
"lightbox_thumbnails": "Thumbnails",
"lightbox_download": "Download",
"lightbox_share": "Share",
"lightbox_zoom": "Zoom",
"lightbox_new_window": "New window",
"lightbox_toggle_sidebar": "Toggle sidebar"
}
THis looks incredibly intruiging...of course now I have to go fiddle with my server and set up the MPD/Icecast bit, but it seems worth it to have something like this working...I will get back to you this weekend after i figure all this stuff out. Also this is quite cool for a first program!
That looks great! I particularly love the gestures! Any chance of implementing them in a non MPD dependant music player?
Thanks for the encouragement. This has just been a "hobby" project for me to work on over the weekends for a while now. I usually write boring framework code without any GUI for my day job, so this has been a lot of fun.
As for the gestures, it's written in c# and I wrote it to be easy to add to other projects. Just declare an instance of the class within your form (or usercontrol) and tell the class what it's parent is. Then the class will raise events whenever a gesture is recognized.
So if someone wants to steal my code like I stole dosfan and gingercat's, help themselves! And if they have any improvements, let me know
Dromio said:
Thanks for the encouragement. This has just been a "hobby" project for me to work on over the weekends for a while now.
As for the gestures, it's written in c# and I wrote it to be easy to add to other projects. Just declare an instance of the class within your form (or usercontrol) and tell the class what it's parent is. Then the class will raise events whenever a gesture is recognized.
So if someone wants to steal my code like I stole dosfan and gingercat's, help themselves! And if they have any improvements, let me know
Click to expand...
Click to collapse
Hobby projects are fun!
Not sure if you've implemented something like this, but in dosfan and gingercat's dll, there was no support for hardware buttons. I've added that today, and can give you the code if you want.
Being able to capture gestures would be awesome!
Keep up this project! And lemme set up an MPD!
Oh yeah, using hardware buttons on the lists was on my "To-Do" list. I'd be interested in seeing what you did.
Dromio said:
Oh yeah, using hardware buttons on the lists was on my "To-Do" list. I'd be interested in seeing what you did.
Click to expand...
Click to collapse
Basically, I added some keypress even handlers, and then made those do the same as moving the mouse. I also had to edit the MaxXOffset and MaxYOffset to allow the list items to get to the top of the page...
Attached is the code for the KListControl dll.
If my lack of comments needs some explaining, do ask!
It seems pretty straightforward. Thanks.
any mpd for windows? *hoping*
flippy said:
any mpd for windows? *hoping*
Click to expand...
Click to collapse
Sorry, I don't think there's a good, simple way to run MPD on a windows server. From the MPD wiki, it looks like the only real working option is to run it under coLinux or andLinux.
It's another reason I said it's a bit of a "niche" application
don't know if this is related but, how about a remote control for UPnP clients, like roku, etc.
on Nokian770 and n800, there is a program called media streamer that does just that. wondering if there is the same for ppc.
I've thought a bit about abstracting away the music "engine" and using plugins to allow the UI to interact with different backends like MPD, windows media, or others. But for a guy who's working on this an hour a night after putting the kids to bed, that seems pretty ambitious
Awesome project. I have MPD setup on my desktop, and usually I'd just carry around my IR remote and control it via that, but controlling it with my phone over wifi is so much better!
Just installed it and I must say for a hobby project it's pretty nice! It just crashed on me, but I think that might be due to me not being able to scroll correctly
aqtrans said:
It just crashed on me, but I think that might be due to me not being able to scroll correctly
Click to expand...
Click to collapse
I'm sorry about the crash . If it happens again, could you open an issue containing the detailed text from the crash? It would help me to hunt down the issues.
Lately the only crashes I've had is when my data connection cuts out. The MPD library I used doesn't handle that very well. I really need to find an elegant way to tell the user the connection was lost.
Dromio said:
I'm sorry about the crash . If it happens again, could you open an issue containing the detailed text from the crash? It would help me to hunt down the issues.
Lately the only crashes I've had is when my data connection cuts out. The MPD library I used doesn't handle that very well. I really need to find an elegant way to tell the user the connection was lost.
Click to expand...
Click to collapse
"MessageBox.Show("HaHa ")"
Crude but functional!
I used to do the same using Shoutcast in combination with Jetcast to stream WMA. Then control the server using Cygnus.
also very niche, but it proves there's people that might like this.
Your program has inspired me to take an old computer outta the closet, put ubuntu on it, mirror my music collection, and install the icecast, mpd, and gimmix packages. I'm pretty new at this, so I was wondering... if you have the time, do you think you could write up a quick guide where to go next? I'm kind of at a loss...
I'd start just getting mpd to recognize your music and output to the soundcard or something. Setting up icecast is another layer of complexity to tackle next.
The best resource seems to be the wiki . If you have any specific problems I'll try to help.
Great project...
I submitted it to Digg, maybe it will get some love. It's time to rectify the overblown iPhone hype machine and show people what WinMo can do.
Very nice work!
I was thinking, why not doing it compatible also with uPnP (very similar to bonjour protocol), which is compatible with Windows (see www.tversity.com).
Thanks and keep up the good work
Hi all,
BSODroid is my first Android application. It is a proof of concept implementation of a flaw in Windows Vista, which is so far unpatched (although Microsoft are due to start distributing the patch any moment now), that allows a user to send a Blue Screen of Death to that computer over the network.
To test your home, office or clients' machines, or even just to have some fun with your friends, all you need to do is connect to their network via WiFi, enter in their hostname (either IP or actual hostname will work), and press Execute!
Note: the target Vista machine must have network file / printer sharing turned on (though most people have it turned on these days)
This is a fun little application I created yesterday and have been having playing with my friends' computers on their home network and showing them the Windows flaw.
Video of it in action: http://www.youtube.com/watch?v=eIy_d94tDmQ
As I said, it will be patched soon, so anyone who has Windows Updates enabled will be immune to it within the next 72 hours or so.
BSODroid can be downloaded from the Android Market (just search for BSODroid!) or alternatively you can download the APK directly from my website: http://www.dereenigne.com/
{
"lightbox_close": "Close",
"lightbox_next": "Next",
"lightbox_previous": "Previous",
"lightbox_error": "The requested content cannot be loaded. Please try again later.",
"lightbox_start_slideshow": "Start slideshow",
"lightbox_stop_slideshow": "Stop slideshow",
"lightbox_full_screen": "Full screen",
"lightbox_thumbnails": "Thumbnails",
"lightbox_download": "Download",
"lightbox_share": "Share",
"lightbox_zoom": "Zoom",
"lightbox_new_window": "New window",
"lightbox_toggle_sidebar": "Toggle sidebar"
}
As always, if you enjoy my software, please consider donating! http://www.dereenigne.com/donate.php
Well, it works.
will try on win 7
Ather said:
will try on win 7
Click to expand...
Click to collapse
From what I can tell, it works on most of the beta copies and some RC copies of Windows 7, but it doesn't work on the RTM version - what a shame!
Still, lots of fun!
Didn't work on my Win 7 RC machine. Maybe I'm up to date?
My boss and I just had some fun with one of our users on MO. (we are in TN)
Minker17 said:
Didn't work on my Win 7 RC machine. Maybe I'm up to date?
Click to expand...
Click to collapse
Yeah, seems as though it works on some builds of Win 7, but not others.
It works on Win Server 2008 too.
I hope people are having their fun with it now, because Microsoft already have a patch in the works - I'm not sure if it's being pushed through Windows Updates yet, but if not then it will be quite soon!
Though, it will still always work on machines that don't run Windows Updates
man, a winmo version would be awesome...
GreenLantern said:
man, a winmo version would be awesome...
Click to expand...
Click to collapse
That whould be consider a virus.
rogeriopcf said:
That whould be consider a virus.
Click to expand...
Click to collapse
A computer virus is a computer program that can copy itself and infect a computer without the permission or knowledge of the owner.
Click to expand...
Click to collapse
It's being installed by the user, so it's not a virus at all. I personally think this is a neat little proof of concept program, and would love to have a copy for my WinMo device. Besides, if these proof of concept exploits weren't created, the software companies wouldn't have a reason to patch/fix their software until somebody with more malicious intents came along and used it. Hope there's a port to WinMo soon.
rogeriopcf said:
That whould be consider a virus.
Click to expand...
Click to collapse
why? there's ton's of stuff everyone at my office does that could be considered a 'virus' then...
even so, if you can do it from an android phone it's not a virus? somehow I don't understand that.
Quick video example: http://www.youtube.com/watch?v=eIy_d94tDmQ
Ha cool...
Could be fun to make a "one stop shop" for stuff like this.
There's the unpatched IIS flaw as well which is easy as hell to abuse.
Select exploit (or select all), select target ip (+port/username etc for stuff like an IIS exploit), execute (on an iis exploit that'd use default port, anonymous/anonymous).
Is there any interest in this? Think it could be rather interesting to code
nurre said:
Could be fun to make a "one stop shop" for stuff like this.
There's the unpatched IIS flaw as well which is easy as hell to abuse.
Select exploit (or select all), select target ip (+port/username etc for stuff like an IIS exploit), execute (on an iis exploit that'd use default port, anonymous/anonymous).
Is there any interest in this? Think it could be rather interesting to code
Click to expand...
Click to collapse
I"d be highly interested in that.
Have almost broken 1000 downloads! (Currently at 950)
If anyone's interested, go ahead and give it a try from the market!
Thank you. Great app, worked with my windows vista sp2.
Thanks!! I'm dying for this kind of apps
If this had a way to find IP's in use on the network it would be perfect, or just a multicast mode. Go to starbucks and listen to everyone groan at the same time.
how do you obtain the ip address for the phone? I'm using better terminal.
Thanks in advance.
Are you looking for your WiFi address? Short of simply going through the menus / gui to get it, from the command line you can issue:
ifconfig tiwlan0
Which will return the same information. Not sure if this is what you are looking for or not.
I'm trying to setup a vnc through my phone to control my comp. been trying with the ip through router but keep getting socket not connected error.
corybucher said:
I'm trying to setup a vnc through my phone to control my comp. been trying with the ip through router but keep getting socket not connected error.
Click to expand...
Click to collapse
Do you have the proper ports open on your firewall to the computer you are trying to use VNC into?
Also, to avoid having to worry about port forwarding correctly, if you happen to be running 2.1, just setup a VPN server that you can VPN into via your phone, then you can VNC on the same local IP network.
You need to forward ports 5800 and 5900 on your router to the VNC PC.
I'm using "Remote VNC Pro" from "Walter Yongtao Wang" and it is FANTASTIC. Well worth the price. There is a lite version, but cannot use the trackball as mouse.
Port 5800 is for connecting to the PC via web java viewer, 5900 is for VNC viewer clients...
Ok, I know this sounds dumb but how exactly do I need to set the vnc up? I installed the vnc server from real vnc free edition and when I hover my mouse over the icon in my task bar it says not accepting connections. Not really sure how to set everything up. Again thanks in advance.
JsChiSurf said:
Also, to avoid having to worry about port forwarding correctly, if you happen to be running 2.1, just setup a VPN server that you can VPN into via your phone, then you can VNC on the same local IP network.
Click to expand...
Click to collapse
Um not to hijack but I think the 2.1 vpn stuff on these builds lack the kernel support for vpn. I have yet to make work with any normal VPN stuff here at the office.
kkruse said:
Um not to hijack but I think the 2.1 vpn stuff on these builds lack the kernel support for vpn. I have yet to make work with any normal VPN stuff here at the office.
Click to expand...
Click to collapse
Working for me perfectly! I am vpn-ing from home to work, and work to home, without issue. I am using PPTP, what are you using?
Exhibit A:
{
"lightbox_close": "Close",
"lightbox_next": "Next",
"lightbox_previous": "Previous",
"lightbox_error": "The requested content cannot be loaded. Please try again later.",
"lightbox_start_slideshow": "Start slideshow",
"lightbox_stop_slideshow": "Stop slideshow",
"lightbox_full_screen": "Full screen",
"lightbox_thumbnails": "Thumbnails",
"lightbox_download": "Download",
"lightbox_share": "Share",
"lightbox_zoom": "Zoom",
"lightbox_new_window": "New window",
"lightbox_toggle_sidebar": "Toggle sidebar"
}
Exhibit B:
corybucher said:
Ok, I know this sounds dumb but how exactly do I need to set the vnc up? I installed the vnc server from real vnc free edition and when I hover my mouse over the icon in my task bar it says not accepting connections. Not really sure how to set everything up. Again thanks in advance.
Click to expand...
Click to collapse
Are you running Windows-7 64 bit? There are some issues getting the service to start that you have to do some workaround for. I'll try and dig up some links if this is the case, as I ran into a similar issue.
Yes, I am running windows 7 64bit. Didn't know there were issues. Thanks
Here's the link regarding the issue, which stems from the install, when starting as a service. The article relates to Vista 64-bit, but the same issue applies.
Hope this helps get you going...
Does anybody know what ports I would need to forward in order to go behind my routers firewall? I have a Linksys if that helps.
Thanks in advance.
corybucher said:
Does anybody know what ports I would need to forward in order to go behind my routers firewall? I have a Linksys if that helps.
Thanks in advance.
Click to expand...
Click to collapse
Your answer was provided about 7 posts up, yesterday.
JsChiSurf said:
Your answer was provided about 7 posts up, yesterday.
Click to expand...
Click to collapse
Oops, didn't even see that thanks.
Hello guys ,
Greetings from egypt,
For a while i got some very usefull information from this great comunity which helped me alot so i wanted to share my experience with this great tablet after a month of using,
I won't talk about the specificatins which already everyone knows , i'll just tell you how i make everything now (almost) and ditched my laptop .
Of course things get more fun if you get an otg cable
Now i can do the following:
- i can attach keyboard or mose and write word,excell or power point documents using polaris office then i can print it wirelessly or wired using otg cable on any samsung printer.
-using google translate i can translate any word betwean 64 languages and use the pen if i'm writing in english
- scan any document using programs like mdscan
-using samsung email client i can add all my email accounts keep up with my emails
-edit my photos with ps touch (the pen helps alot)
-download all files i need directly or using torrent (adownloader for example)
-draw easily using skitchbookx
-the pen also help in playing angrybirds (someone said that as a joke but it's true)
I know some features are available in other devices and some other important features i didn't mention but this is my experience with my belovednote 10.1 so far
What OTG cable and USB adaptor are you using to attach all the accessories?
Sent from my GT-N7000 using Tapatalk 2
ajamils said:
What OTG cable and USB adaptor are you using to attach all the accessories?
Sent from my GT-N7000 using Tapatalk 2
Click to expand...
Click to collapse
I took a picture of the cable
imageshack.us/a/img688/7534/20121007225320.jpg
Theres some confirmed working multi port dongles for our tabs, you can find them here
http://forum.xda-developers.com/showthread.php?t=1899348
{
"lightbox_close": "Close",
"lightbox_next": "Next",
"lightbox_previous": "Previous",
"lightbox_error": "The requested content cannot be loaded. Please try again later.",
"lightbox_start_slideshow": "Start slideshow",
"lightbox_stop_slideshow": "Stop slideshow",
"lightbox_full_screen": "Full screen",
"lightbox_thumbnails": "Thumbnails",
"lightbox_download": "Download",
"lightbox_share": "Share",
"lightbox_zoom": "Zoom",
"lightbox_new_window": "New window",
"lightbox_toggle_sidebar": "Toggle sidebar"
}
I forgot to add i connected pc dual gamepad and worked fine (works on the main tablet menu and some games) i tried it on prince of persia classic version
I recently bought an alternative otg usb connector....usb flash drives are read...external hdd won't 've found and Xbox 360 controller neither....missing something?????
Thx
Enviado desde mi GT-N8013 usando Tapatalk 2
mantrajt said:
I recently bought an alternative otg usb connector....usb flash drives are read...external hdd won't 've found and Xbox 360 controller neither....missing something?????
Thx
Enviado desde mi GT-N8013 usando Tapatalk 2
Click to expand...
Click to collapse
External hhds won't read as i searched and also i tried , people say that's because they need more power , as for xbox controllers i have no idea since i don't have xbox , maybe someone will tell us
banderos101 said:
Theres some confirmed working multi port dongles for our tabs, you can find them here
http://forum.xda-developers.com/showthread.php?t=1899348
Click to expand...
Click to collapse
I just received my multiport connector today from amazon. Similar to first pic except mine also has a mini USB port on it and a led light/ring on it. Works very well so far. Transferee data from SD card to tablet very fast and vice versa. I still need to test out the USB host capabilities. I wonder what use would the mini USB port have? Maybe connect other phones to tablet and see them as USB mass storage to transfer files LR something. Those are the only devices that I can think of that have mini USB port. Maybe it can charge that way also. Even if at a slower rate.
Hello everyone
I am new to this forum and i hope to find the support i need.
Last month I bought a 9 "car radio with android 10 (2gb ram and 16 + 64Gb internal memory) on Aliexpress.
The stereo is fine and it is very nice, but the operating system is very rigid, and I cannot do many things: it is customized.
Bluetooth is the first problem: it does not have a setting and it is not possible to pair a device with a PIN other than 0000.
I asked the seller (Ossuret) for support, very kind, but not prepared at all.
Furthermore, the initial screens and default apps cannot be changed.
On the card it's android 10, but i can't install some apps:
YES: TomTom, Torque (but without OBD2)
NO: Netflix (only an old release). Disney +
ultimately, I ask if it is possible to install a firmware that makes it very similar to an android tablet.
below 2 print screens with the main characteristics :
{
"lightbox_close": "Close",
"lightbox_next": "Next",
"lightbox_previous": "Previous",
"lightbox_error": "The requested content cannot be loaded. Please try again later.",
"lightbox_start_slideshow": "Start slideshow",
"lightbox_stop_slideshow": "Stop slideshow",
"lightbox_full_screen": "Full screen",
"lightbox_thumbnails": "Thumbnails",
"lightbox_download": "Download",
"lightbox_share": "Share",
"lightbox_zoom": "Zoom",
"lightbox_new_window": "New window",
"lightbox_toggle_sidebar": "Toggle sidebar"
}
thanks a lor for your help
no reply?
nobody can help me?
Hi! I have zsdx too qnd pretty sure this is android 8.1 (you can check it on aida64, the sdk version should be same for 8.1)
And yes there is no bluetooth settings to change the pin. So torque is no go via bluetooth, you can buy the wifi one.
Netflix or other streaming won't work in the sense that these head units don't have widewine support. But some old apks can be installed
abhifx said:
Hi! I have zsdx too qnd pretty sure this is android 8.1 (you can check it on aida64, the sdk version should be same for 8.1)
And yes there is no bluetooth settings to change the pin. So torque is no go via bluetooth, you can buy the wifi one.
Netflix or other streaming won't work in the sense that these head units don't have widewine support. But some old apks can be installed
Click to expand...
Click to collapse
thanks a lot for your reply.
i already know what you write :
- Netflix : i've installed the rel 4.16.0 build-15122.
- Disney+ : no solution
- OBDII : i've ordered a WiFi one, not yet arrived, but i believe will be ok because i tried successfully an OBDII with USB cable.
my request is, if possible, to install a different version of Android, in order to be free to manage it and install all the common Apps.
thanks again for your help
ewwel said:
thanks a lot for your reply.
i already know what you write :
- Netflix : i've installed the rel 4.16.0 build-15122.
- Disney+ : no solution
- OBDII : i've ordered a WiFi one, not yet arrived, but i believe will be ok because i tried successfully an OBDII with USB cable.
my request is, if possible, to install a different version of Android, in order to be free to manage it and install all the common Apps.
thanks again for your help
Click to expand...
Click to collapse
Sadly even xda and 4pda don't have any modified firmware which may help. I was looking for a firmware with better equaliser but didn't yield much
abhifx said:
Sadly even xda and 4pda don't have any modified firmware which may help. I was looking for a firmware with better equaliser but didn't yield much
Click to expand...
Click to collapse
thanks.
as i can, i will check withAIDA64.
you are right.
it is android 8.1
abhifx said:
Hi! I have zsdx too qnd pretty sure this is android 8.1 (you can check it on aida64, the sdk version should be same for 8.1)
And yes there is no bluetooth settings to change the pin. So torque is no go via bluetooth, you can buy the wifi one.
Netflix or other streaming won't work in the sense that these head units don't have widewine support. But some old apks can be installed
Click to expand...
Click to collapse
Hi Friend
i got the OBDII WiFi. i can connect to the stero and Torque can recognize it.
but now there is another problem : if I connet the OBDii to the stero, i have to disconnect the modem / router i have in the car to use internet (TomTom, whatsapp),
how can i solve?
thanks for your help
ewwel said:
Hi Friend
i got the OBDII WiFi. i can connect to the stero and Torque can recognize it.
but now there is another problem : if I connet the OBDii to the stero, i have to disconnect the modem / router i have in the car to use internet (TomTom, whatsapp),
how can i solve?
thanks for your help
Click to expand...
Click to collapse
HI
what I understand is that this device also supports the internet from Bluetooth. however, I have not been able to wrap my head around it. you might want to have a look at it