Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

vraagje m.b.t. GPS module #2

Open
Zaktindegeute opened this issue Nov 1, 2023 · 1 comment
Open

vraagje m.b.t. GPS module #2

Zaktindegeute opened this issue Nov 1, 2023 · 1 comment

Comments

@Zaktindegeute
Copy link

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
Copy link
Owner

RoelKroes commented Nov 6, 2023

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 <SoftwareSerial.h>

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());
}

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants