Oct-04-2018, 12:11 AM
(This post was last modified: Oct-04-2018, 12:12 AM by Fresh_Coder.)
Hi.
Im setting up my raspberry pi for mailbox alert(push notification to my phone), and have problems with a python / pyrowl script.
Can someone help me with indentations on this? Sorry for my english
Im setting up my raspberry pi for mailbox alert(push notification to my phone), and have problems with a python / pyrowl script.
Can someone help me with indentations on this? Sorry for my english
#!/bin/usr/bin/python #Imports for Pyrowl from pyrowl import pyrowl from pprint import pprint import os #Imports for GPIO import time import RPi.GPIO as GPIO #Setup pyrowl with API key p = none p = pyrowl("MY API KEY") #Setup GPIO pin as input #Check that this is the same pin you have your switch input plugged into! GPIO.setup (15, GPIO.IN) #Set initial state previousstate = GPIO.input(15) #Main loop while True: #Check that this is the same pin you have your switch input plugged into! mybutton = GPIO.input(15) if mybutton != previousstate: if mybutton == True: print "Du har post :)" res = p.push("Min Raspberry Pi", 'Advarsel', 'Luke Lukket', batch_mode=False) else: print "Du har post :)" res = p.push("Min Raspberry Pi", 'Advarsel', 'Luke Lukket', batch_mode=False) previousstate = mybutton #Print result if you like #pprint(res) time.sleep(.2)