diff --git a/.obsidian/app.json b/.obsidian/app.json new file mode 100644 index 0000000..bf21f23 --- /dev/null +++ b/.obsidian/app.json @@ -0,0 +1,4 @@ +{ + "legacyEditor": false, + "livePreview": true +} \ No newline at end of file diff --git a/.obsidian/appearance.json b/.obsidian/appearance.json new file mode 100644 index 0000000..990f337 --- /dev/null +++ b/.obsidian/appearance.json @@ -0,0 +1,3 @@ +{ + "baseFontSize": 16 +} \ No newline at end of file diff --git a/.obsidian/core-plugins.json b/.obsidian/core-plugins.json new file mode 100644 index 0000000..ab1d511 --- /dev/null +++ b/.obsidian/core-plugins.json @@ -0,0 +1,15 @@ +[ + "file-explorer", + "global-search", + "switcher", + "graph", + "backlink", + "page-preview", + "note-composer", + "command-palette", + "editor-status", + "markdown-importer", + "word-count", + "open-with-default-app", + "file-recovery" +] \ No newline at end of file diff --git a/.obsidian/hotkeys.json b/.obsidian/hotkeys.json new file mode 100644 index 0000000..9e26dfe --- /dev/null +++ b/.obsidian/hotkeys.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/.obsidian/workspace b/.obsidian/workspace new file mode 100644 index 0000000..08c3072 --- /dev/null +++ b/.obsidian/workspace @@ -0,0 +1,95 @@ +{ + "main": { + "id": "a173bdf9c6dfc2be", + "type": "split", + "children": [ + { + "id": "d579747894f26d66", + "type": "leaf", + "state": { + "type": "markdown", + "state": { + "file": "_index.md", + "mode": "source", + "source": false + } + } + } + ], + "direction": "vertical" + }, + "left": { + "id": "7dd9a3176b4ff3dc", + "type": "split", + "children": [ + { + "id": "3d5b32f12a7238d6", + "type": "tabs", + "children": [ + { + "id": "aa064bb602c11216", + "type": "leaf", + "state": { + "type": "file-explorer", + "state": {} + } + }, + { + "id": "af874d13607bae3c", + "type": "leaf", + "state": { + "type": "search", + "state": { + "query": "", + "matchingCase": false, + "explainSearch": false, + "collapseAll": false, + "extraContext": false, + "sortOrder": "alphabetical" + } + } + } + ] + } + ], + "direction": "horizontal", + "width": 300 + }, + "right": { + "id": "de9c0f81c84e4f66", + "type": "split", + "children": [ + { + "id": "2620783d308fd3a9", + "type": "tabs", + "children": [ + { + "id": "9a707080a4767d28", + "type": "leaf", + "state": { + "type": "backlink", + "state": { + "file": "_index.md", + "collapseAll": false, + "extraContext": false, + "sortOrder": "alphabetical", + "showSearch": false, + "searchQuery": "", + "backlinkCollapsed": false, + "unlinkedCollapsed": true + } + } + } + ] + } + ], + "direction": "horizontal", + "width": 300, + "collapsed": true + }, + "active": "d579747894f26d66", + "lastOpenFiles": [ + "_index.md", + "content/Installation et mise en place pour Java.md" + ] +} \ No newline at end of file diff --git a/_index.md b/_index.md new file mode 100644 index 0000000..e61839e --- /dev/null +++ b/_index.md @@ -0,0 +1,17 @@ +# Programmer un RaspiDAC +## Introduction à Java +Les Raspberry pi peuvent être programmé de multipple façon. Le RaspiDAC est spécialement conçu pour fonctionner avec un ou des programme(s) écri(en)t en Java bien qu'il puisse fonctionner avec d'autre language de programmation. +Nous allons donc réaliser une initiation au Java au travers d'un cours basique de programmation en suivant les étapes suivantes: + +1. [[Installation et mise en place pour Java]] +2. La structure du code +3. Les types en Java +4. Les expression +5. Les boucles +6. Les fonctions +7. Les objets +8. Les types complexes + +## Les particularités d'un raspberry pi + +## L'automate en détails \ No newline at end of file diff --git a/content/Installation et mise en place pour Java.md b/content/Installation et mise en place pour Java.md new file mode 100644 index 0000000..563262d --- /dev/null +++ b/content/Installation et mise en place pour Java.md @@ -0,0 +1,8 @@ +# Installation et mise en place pour Java +## IDE et machine virtuelle +La première étape est logiquement d'installer un IDE (editeur de texte pour la programmation) et la machine virtuelle dans laquelle va tourner Java + +### L'IDE +De nombreux IDE peuvent fonctionner pour Java, mais celui par défaut créer spécialement pour est Eclipse. Nous allons donc commencer avec cet IDE. Une fois les bases acquise, je recommande vivement de changer d'IDE pour passer à vsCode qui permet beaucoup d'option supplémentaire au niveau de l'adaptaion et la collaboration. + +### Machine virtuelle Java \ No newline at end of file