-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpi_send_data.py
121 lines (87 loc) · 2.75 KB
/
pi_send_data.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
import time
import board
import sys
import os
from adafruit_lsm6ds.lsm6dsox import LSM6DSOX as LSM6DS
from adafruit_lis3mdl import LIS3MDL
from git import Repo
from picamera2 import Picamera2, Preview
import RPi.GPIO as GPIO
GPIO.setmode(GPIO.BCM)
LED_PIN = 26
GPIO.setup(LED_PIN, GPIO.OUT)
GPIO.output(LED_PIN, False)
# VARIABLES
THRESHOLD = 15 # Any desired value from the accelerometer
REPO_PATH = "/home/pi/Desktop/CubesatChallenge" # Your github repo path: ex. /home/pi/FlatSatChallenge
FOLDER_PATH = "image_analysis/cubesat_output" # Your image folder path in your GitHub repo: ex. /Images
# imu and camera initialization
i2c = board.I2C()
accel_gyro = LSM6DS(i2c)
mag = LIS3MDL(i2c)
picam2 = Picamera2()
def img_gen(name, image_time):
"""
This function is complete. Generates a new image name.
Parameters:
name (str): your name ex. MasonM
"""
imgname = f"{REPO_PATH}/{FOLDER_PATH}/{image_time}/{name}.jpg"
return imgname
def git_push():
"""
This function is complete. Stages, commits, and pushes new images to your GitHub repo.
"""
try:
repo = Repo(REPO_PATH)
origin = repo.remote("origin")
print("added remote")
origin.pull()
print("pulled changes")
repo.git.add(REPO_PATH + "/" + FOLDER_PATH)
repo.index.commit("New Photo")
print("made the commit")
origin.push()
print("pushed changes")
except Exception as e:
print(e)
# Print important information about the exception
print(f"Exception occurred: {type(e).__name__}")
print(f"Exception message: {str(e)}")
print("Couldn't upload to git")
def take_photo():
"""
Takes a photo when the FlatSat is shaken.
"""
while True:
accelx, accely, accelz = accel_gyro.acceleration
total = (accelx**2 + accely**2 + accelz**2) ** 0.5
# CHECKS IF READINGS ARE ABOVE THRESHOLD -> done
if total > THRESHOLD:
print(f"Total reached {total:.3f}")
break
shake_time = time.strftime("%m-%d-%Y_%H:%M:%S")
os.makedirs(f"{REPO_PATH}/{FOLDER_PATH}/{shake_time}", exist_ok=True)
picam2.start()
for _ in range(3):
GPIO.output(LED_PIN, True)
time.sleep(.1)
GPIO.output(LED_PIN, False)
time.sleep(.1)
time.sleep(5)
# TAKE PHOTO
GPIO.output(LED_PIN, True)
time.sleep(.5)
picam2.capture_file(img_gen("no_outages", shake_time))
GPIO.output(LED_PIN, False)
time.sleep(8)
GPIO.output(LED_PIN, True)
time.sleep(.5)
picam2.capture_file(img_gen("with_outages", shake_time))
GPIO.output(LED_PIN, False)
def main():
while True:
take_photo()
git_push()
if __name__ == "__main__":
main()