diff --git a/index.html b/index.html index 8690366..0acde11 100644 --- a/index.html +++ b/index.html @@ -25,7 +25,7 @@ -

Live QSOs by DJ7NT

+

Live QSO-View

@@ -35,6 +35,7 @@ + @@ -64,6 +65,7 @@ const CellStationCall = document.createElement('td'); const CellStationGrid = document.createElement('td'); const CellBand = document.createElement('td'); + const CellQRG = document.createElement('td'); const CellMode = document.createElement('td'); const CellRSTR = document.createElement('td'); const CellRSTS = document.createElement('td'); @@ -73,6 +75,7 @@ CellStationCall.textContent = message.station_call; CellStationGrid.textContent = message.station_grid; CellBand.textContent = message.band; + CellQRG.textContent = message.qrg; CellMode.textContent = message.mode; CellRSTR.textContent = message.RST_RCVD; CellRSTS.textContent = message.RST_SENT; @@ -84,6 +87,7 @@ row.appendChild(CellCall); row.appendChild(CellGrid); row.appendChild(CellBand); + row.appendChild(CellQRG); row.appendChild(CellMode); row.appendChild(CellRSTR); row.appendChild(CellRSTS); diff --git a/mqtt.js b/mqtt.js index 5135435..61c47e9 100755 --- a/mqtt.js +++ b/mqtt.js @@ -65,6 +65,7 @@ function parse_msg(msg) { retmsg.grid=msg.COL_GRIDSQUARE; retmsg.band=msg.COL_BAND; retmsg.mode=msg.COL_MODE + retmsg.qrg=msg.COL_FREQ/1000; retmsg.RST_RCVD=msg.COL_RST_RCVD; retmsg.RST_SENT=msg.COL_RST_SENT; retmsg.qso_time=msg.COL_TIME_ON;
Nach Nach Grid BandQRG Mode RSTR RSTS