
Mois : septembre 2024
-
HERMES Lite 2
Read More : HERMES Lite 2Lien : https://www.makerfabs.com/hermes-lite-2.html IOBoard : https://www.makerfabs.com/hermes-lite-2-io-board.html https://github.com/jimahlstrom/HL2IOBoard Knob VFO Controler Logiciel THETIS Ampli 70W : https://github.com/ea3igt/HL2-PA70
-
Emission QO100
Read More : Emission QO100pour l’émission je suis parti sur OBS Studio Version 30.2.3 avec un flux IP vers l’adalm Pluto suivi d’un préampli SGLabs et d’un ampli NOKIA 2300 ( cf Ampli NOKIA ) Simulation en Labo Voici le paramétrage OBS et le retour sur le minitouiner a 437Mhz en local sans préampli Le flux en SR333 avec…
-
THETIS USB Controller
Read More : THETIS USB Controllerle projet est de piloter le VFO de Thetis Software via un USB Volume Controler modifié Basé sur la bibliotheque HID-Project https://github.com/NicoHood/HID Le firmware du Arduino Micro est sur github : https://github.com/Stephaneshm/THETIS-USB-Controler
Search
Popular Posts
-
ADF4351 Synth 35Mhz-4.4Ghz
code : /* ————————————————————————- * * Name : ADF4351 Controled Board 35Mhz-4.4Ghz with 10Mhz OCXO Reference * Author : Stéphane HELAIEM – F4IRX * Date : july 12, 2025 * Purpose: ADF 4351 Synth * Versions: * 1.0 : ARDUINO NANO * 1.1a : Change to ESP32 C3 ( 3.3v…
-
ADF4351 controlled with ESP32
ref : https://github.com/Ryushane/ADF4351-ESP32 https://github.com/dfannin/adf4351 code test : #include « ADF4351.h » #include <SPI.h> #define clock 4 #define data 6 #define LE 7 #define CE 10 ADF4351 adf4351(clock,data,LE,CE); // declares object PLL of type ADF4351 void setup() { Serial.begin(115200); adf4351.begin(); // ref =25Mhz freq :41Mhz adf4351.WriteRegister(0x00580005); // R5 adf4351.WriteRegister(0xEC81FC); // R4 adf4351.WriteRegister(0x000004B3);…
-
PICO VBAND
Ref : https://github.com/f4goh/pico_vband schema Code // SPDX-License-Identifier: MIT // // VBAND CW USB dongle based on a Pi Pico. // Also supports other key outputs for Vail and morsecode.me etc. // // Inspired from similar projects at: // https://github.com/sipsmi/vband_dongle/tree/main // https://github.com/mgiugliano/MorsePaddle2USB // https://github.com/nealey/vail-adapter // // There is also a PiPico circuit python implementation shown on…