diff --git a/clover_blocks/www/python.js b/clover_blocks/www/python.js index 42de72a2..a614e5e3 100644 --- a/clover_blocks/www/python.js +++ b/clover_blocks/www/python.js @@ -83,6 +83,9 @@ function generateROSDefinitions() { if (rosDefinitions.navigateGlobal) { code += `navigate_global = rospy.ServiceProxy('navigate_global', srv.NavigateGlobal)\n`; } + if (rosDefinitions.setYaw) { + code += `set_yaw = rospy.ServiceProxy('set_yaw', srv.SetYaw)\n`; + } if (rosDefinitions.setVelocity) { code += `set_velocity = rospy.ServiceProxy('set_velocity', srv.SetVelocity)\n`; }