RoelKroes / wsprbeacon

Band hopping WSPR beacon for Arduino and Si5351
9 stars 2 forks source link

vraagje m.b.t. GPS module #2

Open Zaktindegeute opened 11 months ago

Zaktindegeute commented 11 months ago

Hallo Roel Ik zou deze WSPR "zender" graag nabouwen, kun je me uitleggen hoe en waar de gps module aangesloten moet worden ? En is het voldoende om het bestand "WSPR_beacon_arduino.ino" in mijn arduino te branden ?

b.v.d. Gert

RoelKroes commented 11 months ago

Hi Gert,

Sorry voor het late antwoord, ik was op vakantie. Lees goed de readme pagina van de repository en de settings.h file:

1) Download de libraries die worden genoemd 2) Compileer de sourcecode en brand deze in de Arduino 3) Sluit de Si5351 module aan 4) Sluit de GPS module aan. De software ondersteunt seriële communicatie met de GPS module. De Tx en de RX van de module kan je aansluiten op twee willekeurige vrije pennetjes. Welke pennetjes dat zijn kan je aangeven in de settings.h files. Standaard is dit pennetje 7 en 8.

Als je de GPS module wilt testen, kan je dit mini programma'tje gebruiken. Dit programma geeft op de seriële monitor aan wat de GPS module verstuurt:

include

static const int RXPin = 8, TXPin = 7; static const uint32_t GPSBaud = 9600;

// The serial connection to the GPS device SoftwareSerial ss(RXPin, TXPin);

void setup() { // put your setup code here, to run once: Serial.begin(57600); ss.begin(GPSBaud); }

void loop() { if (ss.available()) Serial.write(ss.read()); }