Page 1 of 1

Where to keep record of my project

Posted: 11 Mar 2020, 19:21
by xmenne
Hello

Newcomer in this IOT / EspEasy / Domoticz world, i am looking for a place where i can record and document my project with all the details.
Any suggestion ?

Merci - Rgds

Re: Where to keep record of my project

Posted: 11 Mar 2020, 21:14
by mrwee
You're very welcome to share your project here, but all the "internal" details are better kept safe within your own domain.

Re: Where to keep record of my project

Posted: 11 Mar 2020, 23:45
by TD-er
Welcome and I would love to see your project(s).
But like mrwee also suggests, make sure you don't expose any credentials like passwords, or tokens you may be using in your settings or rules and screenshots.

Re: Where to keep record of my project

Posted: 25 Oct 2020, 00:53
by Jakiro
I prefer EspEasy

Re: Projet Piscine

Posted: 26 Jan 2024, 17:12
by xmenne
Projet Piscine
Schéma ELectronique
IMG_20240126_170759.jpg
IMG_20240126_170759.jpg (1.85 MiB) Viewed 800 times
Config ESP
Config ESP piscine 1.png
Config ESP piscine 1.png (81.77 KiB) Viewed 800 times
Config ESP piscine 1.png
Config ESP piscine 1.png (81.77 KiB) Viewed 800 times
Image2.png
Image2.png (74.1 KiB) Viewed 800 times
image3.png
image3.png (50.21 KiB) Viewed 800 times
image4.png
image4.png (49.34 KiB) Viewed 800 times
Config Rules
on chevret_esp26_control_tension_pompe#State do

TimerSet,1,180 //Set Timer 1 for the next event in 180 seconds

endon
On Rules#Timer=1 do //When Timer1 expires, do (On attend que la pompe s'amorce)

if [chevret_esp26_control_tension_pompe#State]=1



if [chevret_esp26_Piscine_pression#Analog]<104 and [chevret_esp26_control_tension_pompe#State]=1 //si pression basse et sous tension alors alarme activé à 1
TaskValueSet 5,1,1
else
TaskValueSet 5,1,0 // autre situation = pas d'alarme
endif

else
gpio,14,0
TaskValueSet 5,1,0 // Pas de tension alors A =0 alarme désactivée


endif


endon