s.r.publish('info',"The previous measurement point has a rating of *{:.1f}* of [0..9].".format(highest_rating))
s.r.publish('info',"Proceed with the next pressure point.")
s.r.publish('info',"The calibration pressure will be *{} {}*.".format(next_pressure,next_unit))
msg="The previous measurement point has a rating of *{:.1f}* of [0..9]. Proceed with the next pressure point. The calibration pressure will be *{} {}*.".format(highest_rating,next_pressure,next_unit)
s.r.publish('info',msg)
s.aset('info',0,msg)
else:
continue_measurement=False
s.r.publish('info',"The previous measurement point has a rating of *{:.1f}* of [0..9].".format(highest_rating))
s.r.publish('info',"It was the *last measurement point*.")
msg="The previous measurement point has a rating of *{:.1f}* of [0..9].It was the *last measurement point*.".format(highest_rating)