diff --git a/pps_ws/src/d_fall_pps/CMakeLists.txt b/pps_ws/src/d_fall_pps/CMakeLists.txt
index 819d9e112e340cd79fafb27e46506bf2c4df64dc..3dbceb99a15b237f5eab79f282b68988f00cd4fa 100755
--- a/pps_ws/src/d_fall_pps/CMakeLists.txt
+++ b/pps_ws/src/d_fall_pps/CMakeLists.txt
@@ -112,6 +112,8 @@ add_message_files(
   Setpoint.msg
   CrazyflieEntry.msg
   CrazyflieDB.msg
+  #----------------------------------------------------------------------
+  Debugging.msg
 )
 
 ## Generate services in the 'srv' folder
diff --git a/pps_ws/src/d_fall_pps/param/SafeController.yaml b/pps_ws/src/d_fall_pps/param/SafeController.yaml
index 1721fa751a5de9e8e4817bc2ae80e54783b8b8cd..a927e7be082f589742e74dad5886ed3f2525382b 100644
--- a/pps_ws/src/d_fall_pps/param/SafeController.yaml
+++ b/pps_ws/src/d_fall_pps/param/SafeController.yaml
@@ -15,5 +15,5 @@ filterGain: [1, 1, 1, 22.3384, 22.3384, 22.3384] #K_infinite of feedback
 estimatorMatrix: [-22.3384, 0.9106] #only for velocity calculation
 
 #setpoint in meters (x, y, z, yaw)
-defaultSetpoint: [0.0, 0.0, 0.1, 0.0]
+defaultSetpoint: [-0.7, -0.1, 0.25, 0.0]
 
diff --git a/pps_ws/src/d_fall_pps/src/SafeControllerService.cpp b/pps_ws/src/d_fall_pps/src/SafeControllerService.cpp
index 0ba5dc6f56d0e83d6192ba5b38b95c0934bf0e35..6980c4889c55bfd8473003a49be4ac9c2623df85 100755
--- a/pps_ws/src/d_fall_pps/src/SafeControllerService.cpp
+++ b/pps_ws/src/d_fall_pps/src/SafeControllerService.cpp
@@ -26,6 +26,7 @@
 #include "d_fall_pps/Setpoint.h"
 #include "d_fall_pps/ControlCommand.h"
 #include "d_fall_pps/Controller.h"
+#include "d_fall_pps/Debugging.h" //---------------------------------------------------------------------------
 
 #define PI 3.1415926535
 #define RATE_CONTROLLER 0
@@ -169,7 +170,7 @@ bool calculateControlOutput(Controller::Request &request, Controller::Response &
 	//bag.write("ViconData", ros::Time::now(), request.ownCrazyflie);
 	
 	//trial>>>>>>>
-	int yaw_measured = request.ownCrazyflie.yaw;
+	float yaw_measured = request.ownCrazyflie.yaw;
 	//<<<<<<
 
     //move coordinate system to make setpoint origin
@@ -180,21 +181,48 @@ bool calculateControlOutput(Controller::Request &request, Controller::Response &
 	
 	//bag.write("Offset", ros::Time::now(), request.ownCrazyflie);
 
-    while(yaw > PI) yaw -= 2 * PI;
-    while(yaw < -PI) yaw += 2 * PI;
+    while(yaw > PI) {yaw -= 2 * PI;}
+    while(yaw < -PI) {yaw += 2 * PI;}
     request.ownCrazyflie.yaw = yaw;
 
     float est[9]; //px, py, pz, vx, vy, vz, roll, pitch, yaw
     estimateState(request, est);
 	
-	std_msgs::Float32 EstXTest;
-	EstXTest.data = est[0];
+    //CONTROLLER DEBUGGING--------------------------------------------------------------------------------------------------
+    Debugging estTests;
+    estTests.x = est[0];
+    estTests.y = est[1];
+    estTests.z = est[2];
+    estTests.vx = est[3];
+    estTests.vy = est[4];
+    estTests.vz = est[5];
+    estTests.roll = est[6];
+    estTests.pitch = est[7];
+    estTests.yaw = est[8];
 	
-	bag.write("EstimateX", ros::Time::now(), EstXTest);
+	bag.write("Debugging est", ros::Time::now(), estTests);
+    //CONTROLLER DEBUGGING END----------------------------------------------------------------------------------------------
 
     float state[9]; //px, py, pz, vx, vy, vz, roll, pitch, yaw
     convertIntoBodyFrame(est, state, yaw_measured);
-	//convertIntoBodyFrame(est, state, yaw);
+
+    //CONTROLLER DEBUGGING--------------------------------------------------------------------------------------------------
+    estTests.x = state[0];
+    estTests.y = state[1];
+    estTests.z = state[2];
+    estTests.vx = state[3];
+    estTests.vy = state[4];
+    estTests.vz = state[5];
+    estTests.roll = state[6];
+    estTests.pitch = state[7];
+    estTests.yaw = state[8];
+    
+    bag.write("Debugging state", ros::Time::now(), estTests);
+
+    std_msgs::Float32 f32;
+    f32.data = yaw_measured;
+    bag.write("yaw measured", ros::Time::now(), f32);
+    //CONTROLLER DEBUGGING END----------------------------------------------------------------------------------------------
 
     //calculate feedback
     float outRoll = 0;