Access Point Scanning

Discuss using and improving Lua and the Lua Player specific to the PSP.

Moderators: Shine, Insert_witty_name

Post Reply
burrito
Posts: 3
Joined: Mon Aug 27, 2007 4:28 am

Access Point Scanning

Post by burrito »

I'm trying to make a wifi access point scanning app:

Code: Select all

red = Color.new(255,0,0)
white = Color.new(255,255,255)
gray = Color.new(190,190,190)

while true do
screen.waitVblankStart()
screen.flip()

screen:print(25,15, "Router Name",red)
screen:print(195,15, "Strength",red)
screen:print(365,15, "Encryption",red)
screen:print(0,25, "------------------------------------------------------------",red)
screen:print(15,255, "Battery:",gray)
screen:print(110,255, "%",gray)

System.powerIsPowerOnline()
System.powerIsBatteryExist()
percent = System.powerGetBatteryLifePercent()
screen:print(100,255, percent,gray)

Wlan.init()
nametable = Wlan.getConnectionConfigs(2)
nametable = {a,b,c,d,e,f,g,h,i}

screen:print(25, 30, nametable.a,white)
screen:print(25, 40, nametable.b,white)
screen:print(25, 50, nametable.c,white)
screen:print(25, 60, nametable.d,white)
screen:print(25, 70, nametable.e,white)
screen:print(25, 80, nametable.f,white)
screen:print(25, 90, nametable.g,white)
screen:print(25, 100, nametable.h,white)
screen:print(25, 110, nametable.i,white)

end
Wlan.scanTerm()
I get the error "no arguments expected" for the "nametable = Wlan.getConnectionConfigs(2)" line. How can I fix this?
And also, what are the functions for showing each access point's signal strength and encryption (wep, none, etc.)?
chaos^^
Posts: 2
Joined: Sun Sep 16, 2007 6:34 am

Post by chaos^^ »

hi, I'm not an expert but the error is simply to the fact that Wlan.getConnectionConfigs() function doesn't require any argument, so you may use it just as:

Code: Select all

array = {}
array = Wlan.getConnectionConfigs()
Hope to been useful.
Enjoy^^
Dopo la forza non c'è nulla di più alto del suo dominio!
PiCkDaT
Posts: 69
Joined: Thu Oct 04, 2007 9:49 pm

Post by PiCkDaT »

uhm.. I'm no expert either.. but I'm pretty sure that Wlan.getConnectionConfigs() gets configuration's for a network connections that has already been made. LuaPlayer as of right now I dont think has an access point scanner. Please do notify me if I'm wrong...
Enlighten me, Reveal my fate -- Follow - Breaking Benjamin
the underminer
Posts: 123
Joined: Mon Oct 03, 2005 4:25 am
Location: Netherlands

Re: Access Point Scanning

Post by the underminer »

burrito wrote: And also, what are the functions for showing each access point's signal strength and encryption (wep, none, etc.)?
Wow, this forum is still alive? I thought everyone would be at the official one.

Anyway, I'll have to disappoint you. The things you name cannot be read out with luaplayer. the function returns a table with the name of each found connection. No encryption,strength or whatever
Behold! The Underminer got hold of a PSP
Post Reply