diff --git a/README.md b/README.md
index d3f9bac..6c6e78a 100644
--- a/README.md
+++ b/README.md
@@ -65,7 +65,7 @@ See [instructions on running the simulation](docs/build.md).
|Screws for frame assembly|M1.4x5|
|4|
|Frame bottom part|3D printed⁴:
[`flix-frame.stl`](docs/assets/flix-frame.stl) [`flix-frame.step`](docs/assets/flix-frame.step)|
|1|
|Frame top part|3D printed:
[`esp32-holder.stl`](docs/assets/esp32-holder.stl) [`esp32-holder.step`](docs/assets/esp32-holder.step)|
|1|
-|Washer for IMU board mounting|3D printed:
[`washer-m3.stl`](docs/assets/washer-m3.stl) [`washer-m3.step`](docs/assets/washer-m3.step)|
|1|
+|Washer for IMU board mounting|3D printed:
[`washer-m3.stl`](docs/assets/washer-m3.stl) [`washer-m3.step`](docs/assets/washer-m3.step)|
|2|
|*RC transmitter (optional)*|*KINGKONG TINY X8 or other⁵*|
|1|
|*RC receiver (optional)*|*DF500 or other⁵*|
|1|
|Wires|28 AWG recommended|
||
diff --git a/flix/flix.ino b/flix/flix.ino
index 5671d60..799db1d 100644
--- a/flix/flix.ino
+++ b/flix/flix.ino
@@ -33,7 +33,6 @@ void setup() {
#endif
setupIMU();
setupRC();
-
setLED(false);
Serial.println("Initializing complete");
}
diff --git a/flix/wifi.ino b/flix/wifi.ino
index 3572421..5516249 100644
--- a/flix/wifi.ino
+++ b/flix/wifi.ino
@@ -19,7 +19,6 @@ WiFiUDP udp;
void setupWiFi() {
Serial.println("Setup Wi-Fi");
WiFi.softAP(WIFI_SSID, WIFI_PASSWORD);
- IPAddress myIP = WiFi.softAPIP();
udp.begin(WIFI_UDP_PORT);
}