Ticket to the Moon | Mission to the Moon!

The Challenge | Mission to the Moon!

Use NASA Data to Plan a Rover Mission on the Moon!

Providing the moon with NB IoT

Our goal is to explore the Moon's surface by developing a Narrow Band IoT network.

Ticket to the Moon

Our presentation

We used Nasa's Eyes Visualization app to choose the landing site for the mission and IoT network deployment. Using the NB IoT technology, the mission will enable to daily monitor the temperature fluctuations on the area of the landing site, the magnetic field and levels of radiation of the Moon, and Lunar seismic activity.

The edge of Grimaldi crater - a possible landing site for the future Mission to the Moon. Many missions are planned to explore the Lunar craters, but the problem is that in case with the mobile connection, sending the data from a deep crater will be problematic due to the nature of radio waves propagation. Therefore, we offer to place the LTE Base Station at the edge of the crater. This will provide safety of the Navigation Module. In addition to that, we analyzed the information about the crater provided by Nasa's Eyes Visualization app, and assume the low depth of the crater will allow to explore the crater in future.

-



Resources

https://eyes.nasa.gov/eyes-on-the-solar-system.html#

https://mission-to-the-moon.com/

https://moon.nasa.gov/



A code to make the sensors work :)

//Hall Sensor
int analogPin = A0; // from the analog output of the Hall sensor
int digitalPin = 12; // from the digital output of the Hall sensor


// Photo Resistor
const int pinPhoto1 = A1;
const int pinPhoto2 = A2;
int light1 = 0;
int light2 = 0;


//Wi-Fi
#include <SoftwareSerial.h>
String apiKey = "S4PXFZF4UJ02HM3C";
// connect 2 to TX of Serial USB
// connect 3 to RX of serial USB
SoftwareSerial ser(2,3); // RX, TX

//Temperature sensor
#include "DHT.h"
#define DHTPIN 4 // what pin we're connected to
#define DHTTYPE DHT11 // DHT 11
DHT dht(DHTPIN, DHTTYPE);

void setup()
{
Serial.println("DHTxx test!");// Temperatures
pinMode(digitalPin, INPUT);//Hall
pinMode(13, OUTPUT);// LED 1
pinMode(9, OUTPUT);// LED 2
pinMode(pinPhoto1, INPUT);// Photo Resistor 1
pinMode(pinPhoto2, INPUT);// Photo Resistor 2
Serial.begin(9600);
dht.begin();

//Wi-Fi
ser.begin(9600);
// reset ESP8266
ser.println("AT+RST");
}

void loop() {
int analogValue = analogRead(analogPin); // read the analog value
int val = analogValue;
float h = dht.readHumidity();
float t = dht.readTemperature();
light1 = analogRead(pinPhoto1);

NASA Logo

SpaceApps is a NASA incubator innovation program.