summaryrefslogtreecommitdiff
path: root/examples/opiebluez/oblueztest/main.cpp
Side-by-side diff
Diffstat (limited to 'examples/opiebluez/oblueztest/main.cpp') (more/less context) (ignore whitespace changes)
-rw-r--r--examples/opiebluez/oblueztest/main.cpp17
1 files changed, 14 insertions, 3 deletions
diff --git a/examples/opiebluez/oblueztest/main.cpp b/examples/opiebluez/oblueztest/main.cpp
index 361dbd8..6c2ca75 100644
--- a/examples/opiebluez/oblueztest/main.cpp
+++ b/examples/opiebluez/oblueztest/main.cpp
@@ -7,15 +7,26 @@ using namespace Opie::Bluez;
int main( int argc, char** argv )
{
OBluetooth* sys = OBluetooth::instance();
-
OBluetooth::InterfaceIterator it = sys->iterator();
while( it.current() )
{
odebug << "APP: Bluetooth host controller interface '" << it.current()->name() << "' has MAC '" << it.current()->macAddress() << "'" << oendl;
- odebug << "APP: Interface is " << ( it.current()->isUp() ? "UP" : "DOWN" ) << ". Trying to toggle state..." << oendl;
- it.current()->setUp( !it.current()->isUp() );
odebug << "APP: Interface is " << ( it.current()->isUp() ? "UP" : "DOWN" ) << "." << oendl;
+ //odebug << "APP: Trying to toggle state..." << oendl;
+ //it.current()->setUp( !it.current()->isUp() );
+ //odebug << "APP: Interface is " << ( it.current()->isUp() ? "UP" : "DOWN" ) << "." << oendl;
+
+ odebug << "APP: scanning..." << oendl;
+
+ OBluetoothInterface::DeviceIterator devit = it.current()->neighbourhood();
+ while( devit.current() )
+ {
+ odebug << "APP: Neighbourhood '" << devit.current()->name() << "' has MAC '" << devit.current()->macAddress() << "'" << oendl;
+ odebug << "APP: Neighbourhood '" << devit.current()->name() << "' has class '" << devit.current()->deviceClass() << "'" << oendl;
+ ++devit;
+ }
+
++it;
}
return 0;