diff --git a/README.md b/README.md
index 157f5a33eada1f65e87fc04e695138251c0aa760..6d9f82ed5b3cbbf8bf123097313e1628b0fcd1d7 100644
--- a/README.md
+++ b/README.md
@@ -85,7 +85,7 @@ In Arduino IDE *Serial Monitor* or PlatformIO *Monitor*, type `help` + <kbd>Ente
 * `lora 300` (Sets LoRaWAN sending interval, in s).
 * `mqtt 60` (Sets MQTT sending interval, in s).
 * `night_mode` (Toggles night mode on/off).
-* `reset` (Restarts the sensor).
+* `reset` (Restarts the ESP).
 * `reset_scd` (Resets SCD30).
 * `send_local_ip` (Sends local IP and SSID via MQTT. Can be useful to find sensor).
 * `set_time 1618829570` (Sets time to the given UNIX time).
diff --git a/ampel-firmware/util.cpp b/ampel-firmware/util.cpp
index 5fcb36cb454c42b606fd632e7db9be5faf9108b8..27f23a7e6005f015ca5df979447d6484c0a948c1 100644
--- a/ampel-firmware/util.cpp
+++ b/ampel-firmware/util.cpp
@@ -85,7 +85,7 @@ Ampel::Ampel() :
   sensor_console::defineCommand("free", Ampel::showFreeSpace, F("(Displays available heap space)"));
   sensor_console::defineCommand("reset", []() {
     ESP.restart();
-  }, F("(Restarts the sensor)"));
+  }, F("(Restarts the ESP)"));
 }
 
 Ampel ampel;