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

68
schemas_v1/diodes.ccs Normal file
View File

@@ -0,0 +1,68 @@
{
"blocs": {
"pulse": {
"type": "Pulse",
"valeur": 24.0,
"periode": 1,
"x": 0,
"y": 500
},
"noeud": {
"type": "Noeud",
"x": 200,
"y": 500
},
"coude2": {
"type": "Coude",
"x": 200,
"y": 300
},
"diode1": {
"type": "Diode",
"orientation": 0,
"x": 350,
"y": 500
},
"diode2": {
"type": "Diode",
"orientation": 180,
"x": 350,
"y": 300
},
"p0-1": {
"type": "P0",
"valeur": 0.0,
"x": 600,
"y": 500
},
"p0-2": {
"type": "P0",
"valeur": 0.0,
"x": 600,
"y": 300
},
"l1": {
"type": "Lampe",
"x": 450,
"y": 500
},
"l2": {
"type": "Lampe",
"x": 450,
"y": 300
}
},
"cables": [
["pulse", "d", "noeud", "m"],
["noeud", "m", "diode1", "g"],
["diode1", "d", "l1", "g"],
["l1", "d", "p0-1", "g"],
["noeud", "m", "coude2", "m"],
["coude2", "m", "diode2", "g"],
["diode2", "d", "l2", "g"],
["l2", "d", "p0-2", "g"]
]
}