import de fichiers

This commit is contained in:
2024-02-28 11:40:09 +01:00
parent 25610fd4fa
commit 88aced27bf
112 changed files with 3678 additions and 0 deletions

View File

@@ -0,0 +1,70 @@
{
"blocs":
"p24-1": {
"type": "P24",
"valeur": 24.0,
"x": 0,
"y": 500
},
"p0-1": {
"type": "P0",
"valeur": 0.0,
"x": 1200,
"y": 500
},
"p0-2": {
"type": "P0",
"valeur": 0.0,
"x": 1200,
"y": 300
},
"r1": {
"type": "Relais",
"x": 400,
"y": 500
},
"r2": {
"type": "Relais",
"x": 1000,
"y": 500
},
"c3": {
"type": "Bouton",
"x": 200,
"y": 500
},
"r2.travail": {
"type": "ContactTravail",
"x": 1000,
"y": 300
},
"t1": {
"type": "Tempo",
"tempo_blocage": 2,
"tempo_liberation": 1,
"x": 600,
"y": 500
},
"n1": {
"type": "Noeud",
"x": 800,
"y": 500
},
"coude1": {
"type": "Coude",
"x": 800,
"y": 300
}
},
"cables": [
["p24-1", "d", "c3", "g"],
["c3", "d", "r1", "g"],
["r1", "d", "t1", "g"],
["t1", "d", "n1", "m"],
["n1", "m", "r2", "g"],
["r2", "d", "p0-1", "g"],
["n1", "m", "coude1", "m"],
["coude1", "m", "r2.travail", "g"],
["r2.travail", "d", "p0-2", "g"]
]
}

View File

@@ -0,0 +1,72 @@
{
"blocs": {
"p24-1": {
"type": "P24",
"valeur": 24.0,
"orientation": 0,
"x": 0.0,
"y": 500.0
},
"p0-1": {
"type": "P0",
"valeur": 0.0,
"orientation": 0,
"x": 1200.0,
"y": 500.0
},
"p0-2": {
"type": "P0",
"valeur": 0.0,
"x": 1200.0,
"y": 300.0
},
"r1": {
"type": "Relais",
"x": 400.0,
"y": 500.0
},
"r2": {
"type": "Relais",
"x": 1000.0,
"y": 500.0
},
"c3": {
"type": "Bouton",
"x": 200.0,
"y": 500.0,
"orientation": 0
},
"r2.travail": {
"type": "ContactTravail",
"orientation": 0,
"x": 1000.0,
"y": 300.0
},
"w1": {
"type": "Lampe",
"x": 600.0,
"y": 500.0
},
"n1": {
"type": "Noeud",
"x": 800.0,
"y": 500
},
"coude1": {
"type": "Coude",
"x": 800,
"y": 300
}
},
"cables": [
["p24-1", "d", "c3", "g"],
["c3", "d", "r1", "g"],
["r1", "d", "w1", "g"],
["w1", "d", "n2", "m"],
["n1", "m", "r2", "g"],
["r2", "d", "p0-1", "g"],
["n1", "m", "coude1", "m"],
["coude1", "m", "r2.travail", "g"],
["r2.travail", "d", "p0-2", "g"]
]
}

View File

@@ -0,0 +1,20 @@
{
"blocs": {
"pulse": {
"type": "Pulse",
"valeur": 24.0,
"periode": 0.5,
"x": 0,
"y": 500
},
"p0-1": {
"type": "P0",
"valeur": 0.0,
"x": 400,
"y": 500
}
},
"cables": [
["pulse", "d", "p0-1", "g"]
]
}

View File

@@ -0,0 +1,24 @@
{
"blocs": {
"n1": {
"type": "Noeud",
"x": 0,
"y": 500
},
"n2": {
"type": "Noeud",
"valeur": 0.0,
"x": 400,
"y": 500
},
"l": {
"type": "Lampe",
"x": 250,
"y": 500
}
},
"cables": [
["n1", "m", "l", "g"],
["l", "d", "n2", "m"]
]
}

View File

@@ -0,0 +1,26 @@
{
"blocs": {
"pulse": {
"type": "Pulse",
"valeur": 24.0,
"periode": 1.0,
"x": 0,
"y": 500
},
"n": {
"type": "Noeud",
"valeur": 0.0,
"x": 400,
"y": 500
},
"l": {
"type": "Lampe",
"x": 250,
"y": 500
}
},
"cables": [
["pulse", "d", "l", "g"],
["l", "d", "n", "m"]
]
}