Bonjour à toutes et à tous!

J'espère poster ce sujet au bon endroit!

Ayant un peu de domotique delta dore chez moi, je souhaiterais améliorer mon système grâce a notre joujou préféré le rapsberry!

J'ai acheté récement le tydom 1.0 de chez delta dore qui permet de prendre le contrôle de la maison simplement depuis le smartphone, (très bon produit mais la n'est pas le sujet).
Mon soucis c'est que j'ai un module impulsionnel sur le moteur de la porte du garage, et par la logique des choses aucuns retour sur la position du porte.

Avec le raspberry j'avais pensé a combler ce manque avec les notifications push:http://videos.cctvcamerapros.com/dig...pberry-pi.html

Ca fonctionne super bien, mais je souhaiterais aller plus loin, étant novice en codage python j'ai tenté quelques codes mais n'aboutissant pas.

j'aurais voulu une notification aussi pour m'informé que le portail est bien fermé!

voici le code:

Code : Sélectionner tout - Visualiser dans une fenêtre à part
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
#!usr/bin/env python
 
import pycurl, json
from StringIO import StringIO
import RPi.GPIO as GPIO
 
#setup GPIO using Broadcom SOC channel numbering
GPIO.setmode(GPIO.BCM)
 
# set to pull-up (normally closed position)
GPIO.setup(23, GPIO.IN, pull_up_down=GPIO.PUD_UP)
 
#setup InstaPush variables
# add your Instapush Application ID
appID = "55c84f85a4c48a613fc9a5df"
 
# add your Instapush Application Secret
appSecret = "2f354146a123f3312c60b71a87358e8f"
pushEvent = "Alerte"
pushMessage = "Porte garage!"
 
# use this to capture the response from our push API call
buffer = StringIO()
 
# use Curl to post to the Instapush API
c = pycurl.Curl()
 
# set API URL
c.setopt(c.URL, 'https://api.instapush.im/v1/post')
 
#setup custom headers for authentication variables and content type
c.setopt(c.HTTPHEADER, ['x-instapush-appid: ' + appID,
         'x-instapush-appsecret: ' + appSecret,
         'Content-Type: application/json'])
 
 
# create a dict structure for the JSON data to post
json_fields = {}
 
# setup JSON values
json_fields['event']=pushEvent
json_fields['trackers'] = {}
json_fields['trackers']['message']=pushMessage
#print(json_fields)
postfields = json.dumps(json_fields)
 
# make sure to send the JSON with post
c.setopt(c.POSTFIELDS, postfields)
 
# set this so we can capture the resposne in our buffer
c.setopt(c.WRITEFUNCTION, buffer.write)
 
# uncomment to see the post sent
#c.setopt(c.VERBOSE, True)
 
 
# setup an indefinite loop that looks for the door to be opened / closed
while True:
 
   GPIO.wait_for_edge(23, GPIO.RISING)
   print("Porte ouverte!\n")
 
   # in the door is opened, send the push request
   c.perform()
 
   # capture the response from the server
   body= buffer.getvalue()
 
   # print the response
   print(body)
 
   # reset the buffer
   buffer.truncate(0)
   buffer.seek(0)
 
   # print when the door in closed
   GPIO.wait_for_edge(23, GPIO.FALLING)
   print("Porte fermee!\n")
 
 
# cleanup
c.close()
GPIO.cleanup()


j'avais tenté ce code après:

Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
# print when the door in closed
   GPIO.wait_for_edge(23, GPIO.FALLING)
   print("Porte fermee!\n")
 
   # in the door is closed, send the push request
   c.perform()
 
   # capture the response from the server
   body= buffer.getvalue()
 
   # print the response
   print(body)
 
   # reset the buffer
   buffer.truncate(0)
   buffer.seek(0)


je souhaiterais rajouter plus tard d'autres notifications, es ce possible?

merci d'avance