YP0K LIVE SCORE - N1MM BROADCAST DATA
Contest Only ! YP0K Live N1MM score broadcast
N1MM broadcast datagrams are sent to python3 server, processed and delivered to web browser as AJAX code.
- CQ WW CW HF CONTEST -
Multi Operator Explorer All Bands-
IC-7300 TCVR
-
Homemade QRO and 21 x Crystals preselector
-
2 el. Delta loop @ 11 mtrs up
QSO's
JavaScript - read JSON from URL
function fetch() {
$.getJSON('https://yo8rxp.com/json1?a=' + (new Date()).getTime() , function(data) {
var text = `${data.qso}
`
$(".mypanel").html(text);
});
}
setInterval(fetch, 5000);// call fetch every 5 seconds
fetch(); // call fetch first time
Countries
JavaScript - read JSON from URL
function fetch1() {
$.getJSON('https://yo8rxp.com/json1?a=' + (new Date()).getTime() , function(data) {
var text = `${data.mult}
`
$(".mypanel1").html(text);
});
}
setInterval(fetch1, 5000);// call fetch every 5 seconds
fetch1(); // call fetch first time
Zones
JavaScript - read JSON from URL
function fetch5() {
$.getJSON('https://yo8rxp.com/json1?a=' + (new Date()).getTime() , function(data) {
var text = `${data.zones}
`
$(".mypanel5").html(text);
});
}
setInterval(fetch5, 5000);// call fetch every 5 seconds
fetch5(); // call fetch first time
Points
JavaScript - read JSON from URL
function fetch2() {
$.getJSON('https://yo8rxp.com/json1?a=' + (new Date()).getTime() , function(data) {
var text = `${data.pts}
`
$(".mypanel2").html(text);
});
}
setInterval(fetch2, 5000);// call fetch every 5 seconds
fetch2(); // call fetch first time
Score
JavaScript - read JSON from URL
function fetch3() {
$.getJSON('https://yo8rxp.com/json1?a=' + (new Date()).getTime() , function(data) {
var text = `${data.score}
`
$(".mypanel3").html(text);
});
}
setInterval(fetch3, 5000);// call fetch every 5 seconds
fetch3(); // call fetch first time
IC-7300 Live Audio Streaming
Contest Only
Audio stream stopped!
-
Source - IC-7300 KN36PJ
-
audio live stream : CQ WW CW 2022 - YP0K operator YO8RXP
dsghfgrhgf
WordPress and Icom IC-7300
Audio signal is taken from USB IC-7300 virtual sound card.
Frequency value is shown as AJAX via json file, custom UDP server and N1MM radio broadcast. Tried to set text size relative to root element but depending by screen resolution, this can be a bit offset.
Frequency value is shown as AJAX via json file, custom UDP server and N1MM radio broadcast. Tried to set text size relative to root element but depending by screen resolution, this can be a bit offset.
25 May 2022
To get rid of Chrome caching json files, I had to add a dummy variable timestamp value to the request.
Old code
New code
In this way, Crome is forced to load a different file for each set Interval
- $.getJSON('https://yo8rxp.com/json1'
- $.getJSON('https://yo8rxp.com/json1?a=' + (new Date()).getTime()
QSO's
JavaScript - read JSON from URL