tsutttra12
Lurker
Hello All,
I have a project I'm working on and I'm trying to validate the technology using an android application. Getting Straight to the point here's what I want to do.
End Goal: I want to triangulate a position with three 802.11 WiFi signals
Currently: I'm trying to find a distance from a transmitter to a receiver
Transmitter: 802.11N router(It will be one specific domain so I will know the transmission strength)
Receiver: Samsung Note 3 802.11AC wifi chip
Process:
First Thing I wanted to do was write an app that scanned available routers and put them in a list with their respective signal strengths.
While doing this I ran into errors with the list view. I used some example code from Stack Overflow and the error is in the following Line.
[HIGH]this.adapter = new SimpleAdapter(WiFiDemo.this, arraylist, R.layout.row, new String[] { ITEM_KEY }, new int[] { R.id.list_value });[/HIGH]
the specific problems are that I can't find where to set two Id's
[HIGH]R.layout.row[/HIGH]
[HIGH]R.id.list_value[/HIGH]
my direct assumption was that it was a property of the listview but i was unable to find it.
Moving on from that I'm curious if anyone knows:
1: Is there a way to remotely pull a meta-like transmission strength from WiFi Router
2: (Pure curiosity)Is there a way to programatically access the hotspot feature?
I've read in a lot of places that pulling distance like this is not do-able. WiFi is a radio signal and people have done this with Time of Flight And signal strength with radio signals before I know it's possible.
Thanks to anyone who can help
I have a project I'm working on and I'm trying to validate the technology using an android application. Getting Straight to the point here's what I want to do.
End Goal: I want to triangulate a position with three 802.11 WiFi signals
Currently: I'm trying to find a distance from a transmitter to a receiver
Transmitter: 802.11N router(It will be one specific domain so I will know the transmission strength)
Receiver: Samsung Note 3 802.11AC wifi chip
Process:
First Thing I wanted to do was write an app that scanned available routers and put them in a list with their respective signal strengths.
While doing this I ran into errors with the list view. I used some example code from Stack Overflow and the error is in the following Line.
[HIGH]this.adapter = new SimpleAdapter(WiFiDemo.this, arraylist, R.layout.row, new String[] { ITEM_KEY }, new int[] { R.id.list_value });[/HIGH]
the specific problems are that I can't find where to set two Id's
[HIGH]R.layout.row[/HIGH]
[HIGH]R.id.list_value[/HIGH]
my direct assumption was that it was a property of the listview but i was unable to find it.
Moving on from that I'm curious if anyone knows:
1: Is there a way to remotely pull a meta-like transmission strength from WiFi Router
2: (Pure curiosity)Is there a way to programatically access the hotspot feature?
I've read in a lot of places that pulling distance like this is not do-able. WiFi is a radio signal and people have done this with Time of Flight And signal strength with radio signals before I know it's possible.
Thanks to anyone who can help