Python Forum
Help with Button press/curl
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Help with Button press/curl
#1
Hello!

I'm in need of a code that sends a notification using ifttt when i press a button on my raspberry pi.
I been looking around for hours without any luck of finding a code for this. are anyone willing to help me out with this?
the link i got from ifttt is "curl -X POST https;//maker,ifttt...."
Im using raspbian OS and python3
Reply
#2
There are several HTTP clients for Python. One popular one is Requests.
Reply
#3
I finally found a code that was working!

import os
import time
import RPi.GPIO as GPIO

GPIO.setwarnings(False)
GPIO.setmode(GPIO.BOARD)
GPIO.setup(10, GPIO.IN, pull_up_down=GPIO.PUD_DOWN)
state = 0

while True:
    if GPIO.input (10) == GPIO.HIGH:
        if state == 0:
            print("Working")
            os.system ("curl -X POST https://maker.ifttt.com/trigger/iftttButton/with/key/YOUR_KEY")
            state = 1
            time.sleep (0.5)
    elif GPIO.input (10) ==GPIO.LOW:
        if state == 1:
            state = 0
Reply


Possibly Related Threads…
Thread Author Replies Views Last Post
  Curl with source ip- pycurl drvirus 0 3,572 Sep-25-2018, 11:43 AM
Last Post: drvirus

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020