WiFi connection problem docs update

This commit is contained in:
Otto Winter 2018-10-20 15:42:35 +02:00
parent dbe519c87b
commit 808b0a3842
No known key found for this signature in database
GPG Key ID: DB66C0BE6013F97E
2 changed files with 10 additions and 10 deletions

View File

@ -109,11 +109,12 @@ WiFi. While some options *can* reduce the power usage of the ESP, they generally
reliability of the WiFi connection, with frequent disconnections from the router in the highest
power saving mode.
If you know what you're doing and the node doesn't need to have an extremely reliable connection to WiFi,
you can set the power saving mode to ``LIGHT`` or even ``HIGH``. But for most situations ``NONE`` is the best.
The default is ``light`` (a bit of power saving). If you experience frequent WiFi disconnection problems,
please switch to ``none`` (no power saving). However, ``none`` sometimes works even worse than ``light``, so it's
best to test with both (hence ``none`` is also not the default).
- ``NONE`` (Default, least power saving)
- ``LIGHT``
- ``NONE`` (least power saving)
- ``LIGHT`` (Default)
- ``HIGH`` (most power saving)
.. code:: yaml

View File

@ -61,12 +61,8 @@ Help! Something's not working!1!
That's no good. Here are some steps that resolve some problems:
- **Update platformio** Some errors are caused by platformio not having the latest version. Try running
``platformio update`` in your terminal.
- **Clean the platformio cache**: Sometimes the build cache leaves behind some weird artifacts. Try running
``platformio run -d <NAME_OF_NODE> -t clean``.
- **Try with the latest Arduino framework version**:
See :ref:`this <esphomeyaml-arduino_version>`.
- **If you're having WiFi problems**: See :ref:`wifi-problems`.
- **Try with the latest Arduino framework version**: See :ref:`this <esphomeyaml-arduino_version>`.
- **Still an error?** Please file a bug report over in the `esphomelib issue tracker <https://github.com/OttoWinter/esphomelib/issues>`__.
I will take a look at it as soon as I can. Thanks!
@ -150,6 +146,8 @@ Sure! I'd be happy to help :) You can contact me here:
feature requests.
- Alternatively, also under my e-mail address contact (at) otto-winter.com
.. _wifi-problems:
My node keeps reconnecting randomly
-----------------------------------
@ -159,6 +157,7 @@ not have a real solution.
Some steps that can help with the issue:
- Set the ``power_save_mode`` to ``NONE`` in the ``wifi:`` config. See :ref:`wifi-power_save_mode`.
- Use the most recent version of th arduino framework. The platformio arduino package
always takes some time to update and the most recent version often includes some awesome
patches. See :ref:`esphomeyaml-arduino_version`.