diff --git a/simple-cam.cpp b/simple-cam.cpp
index 727bb6d86480..1b6fd3939bf6 100644
--- a/simple-cam.cpp
+++ b/simple-cam.cpp
@@ -60,6 +60,30 @@ static void requestComplete(Request *request)
 	camera->queueRequest(request);
 }
 
+std::string cameraName(std::shared_ptr<libcamera::Camera> camera)
+{
+	const ControlList &props = camera->properties();
+	std::string name;
+
+	switch (props.get(properties::Location)) {
+	case properties::CameraLocationFront:
+		name = "Internal front camera";
+		break;
+	case properties::CameraLocationBack:
+		name = "Internal back camera";
+		break;
+	case properties::CameraLocationExternal:
+		name = "External camera";
+		if (props.contains(properties::Model))
+			name += " '" + props.get(properties::Model) + "'";
+		break;
+	}
+
+	name += " (" + camera->id() + ")";
+
+	return name;
+}
+
 int main()
 {
 	/*
@@ -77,11 +101,11 @@ int main()
 	cm->start();
 
 	/*
-	 * Just as a test, list all id's of the Camera registered in the
-	 * system. They are indexed by name by the CameraManager.
+	 * Just as a test, generate names of the Cameras registered in the
+	 * system, and list them.
 	 */
 	for (auto const &camera : cm->cameras())
-		std::cout << camera->id() << std::endl;
+		std::cout << " - " << cameraName(camera) << std::endl;
 
 	/*
 	 * --------------------------------------------------------------------
