-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathradio.html
More file actions
54 lines (54 loc) · 3 KB
/
radio.html
File metadata and controls
54 lines (54 loc) · 3 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
<!DOCTYPE html>
<html>
<head>
<title>Radio Stuff</title>
<style>
body {
background-color: white;
}
.heading {
font-size: 90px;
margin-top: 0px;
margin-bottom: opx;
}
.lat:hover{
background-color: crimson;
}
</style>
</head>
<body>
<p class="heading"><img src="img/sw_radio_1.gif" width="100px">Radio Stuff</p>
<p>This is a collection of all of my radio endeavors. <br />
Here I will put software and other various things that <br/>
have to do with radio projects.</p>
<br />
<h2>Latest</h2>
<ol>
<li class="lat" onclick="scrollToSection('section1')">Attempting to build a 1mhz transceiver</li>
<li class="lat" onclick="scrollToSection('section2')">Useful software for any walkie-talkie</li>
<li class="lat" onclick="scrollToSection('section3')">Barbeque lighter transmitter?</li>
</ol>
<hr />
<section id="section1">
<h2>Attempting to build a 1mhz transceiver</h2>
<p style="font-size: 30px;"><a href="img/radio/20240303_201910.jpg"><img src="img/radio/20240303_201910.jpg" width="300" align="left"></a>I've always wanted to make some sort of radio transciever from random oparts. So I searched around the internet and found various circuits that seemed right to me. I then printed some off and came up with the circuit that you can see to your left. I assembled it on some perf board and... it didn't work. I really think I just need to make the power supply for everthing seperate or put it all on seperate transformer windings.</p>
</section>
<hr />
<section id="section2">
<h2>Useful software for any walkie-talkie</h2>
<p style="font-size: 30px;"><img src="img/radio/UV5R---2__23972.jpg" width="300" align="right">Recently I've been downloading a lot of mic-based software for radios. Things like Vox recorders and SSTV generating programs can really bring out new uses for all radios alike. I've had one trouble when it comes to making and receiving afsk and other digital signals. One <a href="https://jywarren.github.io/modem.js/demo.html#">website</a> has several different baud rates and modes. When it comes to actually using the website I find that my mic doesn't seem to do anything aeven when I rcord directly form my audio-out to my audio-in and attempt to play it back. I have yet to solve this problem, but, if i do I will talk further on it. Anyway, here is a <a href="img/radio/radiosoft.zip">zip file</a> with all of the software I've collected</p>
</section>
<hr />
<section id="section3">
<h2>Barbeque lighter transmitter?</h2>
<p>Coming Soon</p>
</section>
<hr />
<a href="index.html"><img src="home.gif"></a>
<script>
function scrollToSection(sectionId) {
document.getElementById(sectionId).scrollIntoView({ behavior: 'smooth' });
}
</script>
</body>
</html>