ratgdo / homekit-ratgdo

A native HomeKit implementation of a Security+ 2.0 garage door controller based on ratgdo hardware
https://ratgdo.github.io/homekit-ratgdo/
GNU General Public License v3.0
211 stars 20 forks source link

Add setting to adjust WiFi TX Power #150

Closed jgstroud closed 5 months ago

jgstroud commented 6 months ago

Similar to the 802.11B/G/N setting, we should also allow adjusting the transmit power. Don't know what the default is, but the internet seems to says it defaults to max.

/**

WiFi.setOutputPower(0); // this sets wifi to lowest power WiFi.setOutputPower(20.5); // this sets wifi to highest power

see also https://gitlab.com/painlessMesh/painlessMesh/-/issues/51

dkerr64 commented 6 months ago

Queued up in PR #145

Implemented as a range slider in the GUI with possible values from 0 to 20. If 20 is selected then when setting power it is "rounded up" to 20.5.

jgstroud commented 5 months ago

Fixed in #145