string energyLevel(int RSS) { if (RSS >= -85) return "Low"; else if (RSS >= -95) return "Medium"; else return "High"; }