This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//Library Imports | |
#include <SoftwareSerial.h> | |
#include <EEPROM.h> | |
#define doorPin 6 | |
//START USER EDIT | |
const int SOFT_RX = 3; | |
const int SOFT_TX = 10; | |
const int CARD_SIZE = 4; | |
byte MASTER_ADD[4] = {0xAB,0xCD,0xEF,0x12}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#! python3 | |
import pandas as pd | |
import seaborn as sns | |
import matplotlib.pyplot as plt | |
import matplotlib.ticker as mtick | |
import datetime | |
import numpy as np | |
from lmfit import Parameters, fit_report, minimize | |
from pprint import pprint | |
from scipy.stats import norm |