Code Monkey home page Code Monkey logo

toucans's Introduction

TouCans

Project TouCans is a ham radio build of a Rockmite modified for 750 mW output feeding a TunaTopper II+ amplifier. Both components are housed in a pineapple can with a tuna can as a roof. image
The rig lives in the antenna in an attempt to avoid feedline losses, imbalances, and other issues.
image

toucans's People

Contributors

hcarter333 avatar

Watchers

 avatar

toucans's Issues

Rig Buzzes in Morning after Night Outside

I have not found a root cause yet. When I take down the rig, pull both boards out of the pineapple can, and then reinsert, the keyer will boot properly. Until then, there's just an audible buzz, no radio signal, and the keyer does not boot.

Develop Data Driven Battery Charging strategy

The TalentCell 12 V LiFePO4 battery was dipping from a nominal value of 13.16 V to 8.69V on key down. Just after being charged it was dipping from 13.6 V to somewhere in the 12 V region. Come up with a data driven way to know when to charge the battery. Since we have data about when the battery was used and for roughly how long in rm_rnb_history_pres, we perhaps could infer how long the battery had been used before it reached the point it was at last night (10/2/2023.)

Keyer weight seems to influence unexpected keyer reboots

The radio occasionally resets the keyer. This only happens when both dit and day are pressed at the same time. I think the keyer weight being lower may help this issue. Also going to turn down bias on the amp.
There is a lot of seeming randomness to all the issues reported with Project TouCans

Use Pico W to control keyer: start Pico W as web server

We'd like to make TouCans self-contained. To that end, the we've been looking at using a PicoW to control rig functionality by offering an html interface served over WiFi from the rig itself. The first step is to start a web server on the PicoW.

Starting the PicoW as a connection point

Here's the important code from that page:

import network
import rp2
import time

rp2.country("DE")

ap = network.WLAN(network.AP_IF)
ap.config(channel=13, key="PicoWPicoW")
ap.ifconfig(('192.168.17.1','255.255.255.0','192.168.17.1', '8.8.8.8'))
ap.active(True)

while True:
    ap.connect(ssid="PicoW", key="PicoWPicoW")
    print(ap.status())
    print(ap.isconnected())
    print(ap.status('stations'))
    time.sleep(1)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.