@skywatch
Can you post the top of your sketch (the mysensors stuff)...
I had the same issue some time ago where the sensor names that I had set in mycontroller got overwritten, most probably when I upgraded to a new release..
I fixed this by hard coding the sensor description names into the sensors presentation loop:
See: https://www.mysensors.org/download/sensor_api_20#presentation
(copy of the most important part below)
Presentation
The sensors should present themselves before they start reporting sensor data to the controller. Do these calls in your presentation()-function
void present(uint8_t childSensorId, uint8_t sensorType, const char *description, bool ack);
childSensorId - The unique child id you want to choose for the sensor connected to this Arduino. Range 0-254.
sensorType - The sensor type you want to create.
description An optional textual description of the attached sensor.
ack - Set this to true if you want destination node to send ack back to this node. Default is not to request any ack.
Description is the one for investigation..