# Increasing Tx-Power on EKH01

**URL:** https://community.morsemicro.com/t/increasing-tx-power-on-ekh01/585
**Category:** General
**Created:** [May 28, 2025, 4:08am UTC](https://community.morsemicro.com/t/increasing-tx-power-on-ekh01/585 "2025-05-28T04:08:14Z")
**Posts on this page:** 6
**Page:** 1

<div class="post-metadata">

### Author: ![arti.rajput](https://avatars.discourse-cdn.com/v4/letter/a/c67d28/32.png) [@arti.rajput](https://community.morsemicro.com/u/arti.rajput)
#### Post date: [May 28, 2025, 4:08am UTC](https://community.morsemicro.com/t/increasing-tx-power-on-ekh01/585/1 "2025-05-28T04:08:14Z")

</div>

Hi @ajudge ,

The Tx-power on the EKH01 is shown as 20 dbm

 ![image](https://us1.discourse-cdn.com/flex001/uploads/morsemicro/original/1X/a9cff786c8bb3abc6f44ad87dc0dddee39e880fe.png)

We would like to increase the power to it’s maximum supported value (27dbm)

Can you please provide us the command to increase the Tx power.

Thanks,  
Arti

---

<div class="post-metadata">

### Author: ![ajudge](https://avatars.discourse-cdn.com/v4/letter/a/c2a13f/32.png) [@ajudge](https://community.morsemicro.com/u/ajudge)
#### Post date: [May 28, 2025, 4:42am UTC](https://community.morsemicro.com/t/increasing-tx-power-on-ekh01/585/2 "2025-05-28T04:42:41Z")

</div>

The module used in the ekh01 is not capable of transmitting at 27dBm.

---

<div class="post-metadata">

### Author: ![arti.rajput](https://avatars.discourse-cdn.com/v4/letter/a/c67d28/32.png) [@arti.rajput](https://community.morsemicro.com/u/arti.rajput)
#### Post date: [May 28, 2025, 5:02am UTC](https://community.morsemicro.com/t/increasing-tx-power-on-ekh01/585/3 "2025-05-28T05:02:57Z")

</div>

Hi @ajudge ,

Does it mean that EKH01 can have TX power only upto 20dbm?

Also, Do we have any command, to get or set the TX power from command line?

Thanks,  
Arti

---

<div class="post-metadata">

### Author: ![james.haggerty](https://avatars.discourse-cdn.com/v4/letter/j/c68b51/32.png) [@james.haggerty](https://community.morsemicro.com/u/james.haggerty)
#### Post date: [May 28, 2025, 9:47am UTC](https://community.morsemicro.com/t/increasing-tx-power-on-ekh01/585/4 "2025-05-28T09:47:57Z")

</div>

The screenshot you showed is the output from OpenWrt’s `iwinfo` command; you can use this on the command line.

If you want the output in JSON for easier processing, you can call iwinfo via ubus (`ubus call iwinfo ...`).

If you want to modify the txpower, you can do this via the wireless config page in LuCI, or via UCI directly:

```auto
uci set wireless.radio0.txpower='10'
uci commit wireless
reload_config

```

---

<div class="post-metadata">

### Author: ![Asma](https://avatars.discourse-cdn.com/v4/letter/a/b782af/32.png) [@Asma](https://community.morsemicro.com/u/Asma)
#### Post date: [June 3, 2025, 9:41am UTC](https://community.morsemicro.com/t/increasing-tx-power-on-ekh01/585/5 "2025-06-03T09:41:39Z")

</div>

> [@james.haggerty](#):
>
> ```auto
> uci set wireless.radio0.txpower='10'
> uci commit wireless
> reload_config
> 
> ```

Hello, I tested the command line you suggest but it does not work, I want to modify the Tx\_power = '13’dBm, but it is still 20dBm.  
Thanks  
.A

---

<div class="post-metadata">

### Author: ![james.haggerty](https://avatars.discourse-cdn.com/v4/letter/j/c68b51/32.png) [@james.haggerty](https://community.morsemicro.com/u/james.haggerty)
#### Post date: [June 4, 2025, 6:57am UTC](https://community.morsemicro.com/t/increasing-tx-power-on-ekh01/585/6 "2025-06-04T06:57:18Z")

</div>

> [@james.haggerty](#):
>
> ```auto
> uci set wireless.radio0.txpower='10'
> uci commit wireless
> reload_config
> 
> ```

Sorry, my apologies, this is the generic way to set txpower on OpenWrt but the Morse bring-up doesn’t support changing the txpower via this mechanism at the moment.

You can set the txpower manually via iw after you’ve brought up the interface, though. To set it to 10dBm:

```auto
iw wlan0 set txpower fixed 1000

```
