From 027ece49bb570d5b3555c18cfada4a76f65cb327 Mon Sep 17 00:00:00 2001 From: alanbjohnston Date: Wed, 11 Jan 2023 16:54:41 -0500 Subject: [PATCH] add Wifi join --- cubesatsim/cubesatsim.ino | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/cubesatsim/cubesatsim.ino b/cubesatsim/cubesatsim.ino index 4a824522..58030d0c 100644 --- a/cubesatsim/cubesatsim.ino +++ b/cubesatsim/cubesatsim.ino @@ -203,6 +203,13 @@ void setup() { Serial.print(" "); Serial.println(millis()); */ + +//SSID of your network +char ssid[] = "CubeSatSim"; +//password of your WPA Network +char pass[] = "amsatao7"; + WiFi.begin(ssid, pass); + } void loop() {