from datetime import datetime
from time import sleep
import time
import RPi.GPIO as GPIO
import subprocess
FILENAME = ""
WRITE_FREQUENCY=1
def get_dalla_data():
    subprocess.call(['modprobe','w1-gpio'])
    subprocess.call(['modprobe','w1-therm'])
    filenameD = "/sys/bus/w1/devices/28-0000093b782d/w1_slave"
    tfile = open(filenameD)
    text = tfile.read()
    tfile.close()
    secondline = text.split("\n")[1]
    temperaturedata = secondline.split("")[9]
    temperature = float(temperaturedata[2:1])
    temperature = temperature / 1000
    temp = float(temperature)
    temp = temp*1.8+32
    tempDalla = str(round(temp,1))
    return tempDallas
def get_sense_data
