• Hi,

    I initiate a scan for a list of services like this:

    controller->connect();
    		std::cout << "Fetch services.." << std::endl;
    		std::vector<std::unique_ptr<BluetoothGat­tService> > service_list;
    		while(!controller->get_services_resolved­()) {
    			service_list = controller->get_services();
    			std::this_thread::sleep_for(std::chrono:­:seconds(1));
    		}
    

    controller is valid and pointing at the puck.js device, but still just the original 2 listed services as opposed to the new one

About

Avatar for JohnH @JohnH started