{"id":408,"date":"2022-01-11T22:38:10","date_gmt":"2022-01-11T21:38:10","guid":{"rendered":"http:\/\/yb-isn.fr\/2021\/es\/?page_id=408"},"modified":"2022-01-11T22:38:11","modified_gmt":"2022-01-11T21:38:11","slug":"microbit-sans-carte","status":"publish","type":"page","link":"https:\/\/yb-isn.fr\/2021\/es\/?page_id=408","title":{"rendered":"micro:bit sans carte"},"content":{"rendered":"<p><!--more--><\/p>\n\n\n<p><a href=\"https:\/\/create.withcode.uk\/\">https:\/\/create.withcode.uk\/<\/a><\/p>\n\n\n\n<p>Afficher un pixel sur la carte.<\/p>\n\n\n\n<p>copier le code ci-dessous puis ouvrir le lien ci-dessous.Coller le code puis cliquer sur la petite fl\u00e8che verte en bas \u00e0 droite pour ex\u00e9cuter le code.<\/p>\n\n\n\n<figure class=\"wp-block-image size-full is-resized\"><img loading=\"lazy\" decoding=\"async\" src=\"http:\/\/yb-isn.fr\/2021\/snt\/wp-content\/uploads\/2021\/10\/image-1.png\" alt=\"\" class=\"wp-image-71\" width=\"65\" height=\"44\"\/><\/figure>\n\n\n\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"python\" data-enlighter-theme=\"godzilla\" data-enlighter-highlight=\"\" data-enlighter-linenumbers=\"\" data-enlighter-lineoffset=\"\" data-enlighter-title=\"\" data-enlighter-group=\"\">from microbit import *\ndisplay.set_pixel(0,0,9)<\/pre>\n\n\n\n<figure class=\"wp-block-image size-full is-resized\"><img loading=\"lazy\" decoding=\"async\" src=\"http:\/\/yb-isn.fr\/2021\/snt\/wp-content\/uploads\/2021\/10\/image.png\" alt=\"\" class=\"wp-image-65\" width=\"136\" height=\"106\"\/><\/figure>\n\n\n\n<p>modifions le programme en ajoutant des commentaires et des variables<\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"python\" data-enlighter-theme=\"godzilla\" data-enlighter-highlight=\"\" data-enlighter-linenumbers=\"\" data-enlighter-lineoffset=\"\" data-enlighter-title=\"\" data-enlighter-group=\"\">from microbit import *\n# x est la position horizontale du pixel : de 0 \u00e0 4 (de droite \u00e0 gauche)\nx=0\n# y est la position horizontale du pixel : de 0 \u00e0 4  (de haut en bas)\ny=0\n# lumi\u00e8re est l'intensit\u00e9 lumineuse du pixel de 0 \u00e0 9\nlumiere=9\ndisplay.set_pixel(x,y,lumiere)<\/pre>\n\n\n\n<p>Modifiez le programme en changeant les valeurs des variables pour voir si vous avez bien compris.<\/p>\n\n\n\n<p>Le programme ci-dessous tire  au hasard la position du pixel puis l&rsquo;affiche.<\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"python\" data-enlighter-theme=\"godzilla\" data-enlighter-highlight=\"\" data-enlighter-linenumbers=\"\" data-enlighter-lineoffset=\"\" data-enlighter-title=\"\" data-enlighter-group=\"\">from microbit import *\nimport random\nx_alea=random.randint(0,4)\ny_alea=random.randint(0,4)\ndisplay.set_pixel(x_alea,y_alea,9)<\/pre>\n\n\n\n<p>Un pixel est affich\u00e9 de fa\u00e7on al\u00e9atoire puis le programme vous demande d&rsquo;entrer les valeurs de x et y pour afficher un nouveau pixel.<\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"python\" data-enlighter-theme=\"godzilla\" data-enlighter-highlight=\"\" data-enlighter-linenumbers=\"\" data-enlighter-lineoffset=\"\" data-enlighter-title=\"\" data-enlighter-group=\"\">from microbit import *\nimport random\nx_alea=random.randint(0,4)\ny_alea=random.randint(0,4)\ndisplay.set_pixel(x_alea,y_alea,9)\n# x est la position horizontale du pixel : de 0 \u00e0 4 (de droite \u00e0 gauche)\nx=input(\"x ?\")\nx=int(x)\n# y est la position horizontale du pixel : de 0 \u00e0 4  (de haut en bas)\ny=input(\"y ?\")\ny=int(y)\n# lumi\u00e8re est l'intensit\u00e9 lumineuse du pixel de 0 \u00e0 9\nlumiere=9\ndisplay.set_pixel(x,y,lumiere)<\/pre>\n\n\n\n<figure class=\"wp-block-image size-full\"><img decoding=\"async\" src=\"http:\/\/yb-isn.fr\/2021\/snt\/wp-content\/uploads\/2021\/10\/image-2.png\" alt=\"\" class=\"wp-image-85\"\/><\/figure>\n\n\n\n<figure class=\"wp-block-image size-full\"><img decoding=\"async\" src=\"http:\/\/yb-isn.fr\/2021\/snt\/wp-content\/uploads\/2021\/10\/image-3.png\" alt=\"\" class=\"wp-image-86\"\/><\/figure>\n\n\n\n<p>Modifiez le programme pour qu&rsquo;il affiche le smiley  Image.HAPPY si tombez sur le m\u00eame point et Image.SAD dans le cas contraire.<\/p>\n\n\n\n<figure class=\"wp-block-image size-full\"><img decoding=\"async\" src=\"http:\/\/yb-isn.fr\/2021\/snt\/wp-content\/uploads\/2021\/10\/image-4.png\" alt=\"\" class=\"wp-image-90\"\/><\/figure>\n\n\n\n<figure class=\"wp-block-image size-full\"><img decoding=\"async\" src=\"http:\/\/yb-isn.fr\/2021\/snt\/wp-content\/uploads\/2021\/10\/image-5.png\" alt=\"\" class=\"wp-image-92\"\/><\/figure>\n\n\n\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"python\" data-enlighter-theme=\"godzilla\" data-enlighter-highlight=\"\" data-enlighter-linenumbers=\"\" data-enlighter-lineoffset=\"\" data-enlighter-title=\"\" data-enlighter-group=\"\">from microbit import *\nimport random\nx_alea=random.randint(0,4)\ny_alea=random.randint(0,4)\ndisplay.set_pixel(x_alea,y_alea,9)\n# x est la position horizontale du pixel : de 0 \u00e0 4 (de droite \u00e0 gauche)\nx=input(\"x ?\")\nx=int(x)\n# y est la position horizontale du pixel : de 0 \u00e0 4  (de haut en bas)\ny=input(\"y ?\")\ny=int(y)\n# lumi\u00e8re est l'intensit\u00e9 lumineuse du pixel de 0 \u00e0 9\nlumiere=9\ndisplay.set_pixel(x,y,lumiere)\nif x==x_alea and y==y_alea:\n  display.show(Image.HAPPY)\nelse:\n  display.show(Image.SAD) <\/pre>\n\n\n\n<p>On affiche un pixel au hasard. Les boutons A et B permettent de le d\u00e9placer horizontalement ou verticalement<\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"python\" data-enlighter-theme=\"godzilla\" data-enlighter-highlight=\"\" data-enlighter-linenumbers=\"\" data-enlighter-lineoffset=\"\" data-enlighter-title=\"\" data-enlighter-group=\"\">from microbit import *\nimport random\nx=random.randint(0,4)\ny=random.randint(0,4)\ndx=1\ndy=1\ndisplay.set_pixel(x,y,9)\nwhile True:\n  if button_a.was_pressed():\n      display.set_pixel(x,y,0)\n      x=x+dx\n      if x==4 or x==-0:\n        dx=-dx\n      display.set_pixel(x,y,9)\n  if button_b.was_pressed():\n    \n      display.set_pixel(x,y,0)\n      y=y+dy\n      if y==4 or y==0:\n        dy=-dy\n      display.set_pixel(x,y,9)<\/pre>\n\n\n\n<p>Il ne vous reste plus qu&rsquo;a faire preuve d&rsquo;imagination pour cr\u00e9er votre propre jeu<\/p>\n\n\n\n<p>Rappel des programmes vus en classe<\/p>\n\n\n\n<p>\u00e9crire un programme qui allume les 4 leds des 4 coins<\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"python\" data-enlighter-theme=\"godzilla\" data-enlighter-highlight=\"\" data-enlighter-linenumbers=\"\" data-enlighter-lineoffset=\"\" data-enlighter-title=\"\" data-enlighter-group=\"\">from microbit import *\ndisplay.set_pixel(0,0,9)\ndisplay.set_pixel(0,4,9)\ndisplay.set_pixel(4,0,9)\ndisplay.set_pixel(4,4,9)<\/pre>\n\n\n\n<p>\u00e9crire en utilisant une boucle un programme qui allume les 5 leds de la premi\u00e8re ligne du haut<\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"python\" data-enlighter-theme=\"godzilla\" data-enlighter-highlight=\"\" data-enlighter-linenumbers=\"\" data-enlighter-lineoffset=\"\" data-enlighter-title=\"\" data-enlighter-group=\"\">from microbit import *\nfor x in range(5):\n    display.set_pixel(x,0,9)\n    sleep(500)<\/pre>\n\n\n\n<p>\u00e9crire en utilisant deux boucles imbriqu\u00e9es un programme qui allume ligne par ligne toutes les leds<\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"python\" data-enlighter-theme=\"godzilla\" data-enlighter-highlight=\"\" data-enlighter-linenumbers=\"\" data-enlighter-lineoffset=\"\" data-enlighter-title=\"\" data-enlighter-group=\"\">from microbit import *\nfor y in range(5):\n    for x in range(5):\n        display.set_pixel(x,y,9)\n        sleep(500)<\/pre>\n\n\n\n<p>\u00e9crire en utilisant deux boucles imbriqu\u00e9es un programme qui allume colonne par colonne toutes les leds<\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"python\" data-enlighter-theme=\"godzilla\" data-enlighter-highlight=\"\" data-enlighter-linenumbers=\"\" data-enlighter-lineoffset=\"\" data-enlighter-title=\"\" data-enlighter-group=\"\">from microbit import *\nfor x in range(5):\n    for y in range(5):\n        display.set_pixel(x,y,9)\n        sleep(500)<\/pre>\n\n\n\n<p> faire compter la carte de 0 \u00e0 4 <\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"python\" data-enlighter-theme=\"godzilla\" data-enlighter-highlight=\"\" data-enlighter-linenumbers=\"\" data-enlighter-lineoffset=\"\" data-enlighter-title=\"\" data-enlighter-group=\"\">from microbit import *\nimport speech\nfor i in range(5):\n    speech.say(str(i))\n    sleep(500)<\/pre>\n\n\n\n<p>faire compter la carte de 4 \u00e0 0<\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"python\" data-enlighter-theme=\"godzilla\" data-enlighter-highlight=\"\" data-enlighter-linenumbers=\"\" data-enlighter-lineoffset=\"\" data-enlighter-title=\"\" data-enlighter-group=\"\">from microbit import *\nimport speech\nfor i in range(5,0,-1):\n    speech.say(str(i))\n    sleep(500)<\/pre>\n\n\n\n<p>autre m\u00e9thode<\/p>\n\n\n<p><!--more--><\/p>\n\n\n<p><a href=\"https:\/\/create.withcode.uk\/\">https:\/\/create.withcode.uk\/<\/a><\/p>\n\n\n\n<p>Afficher un pixel sur la carte.<\/p>\n\n\n\n<p>copier le code ci-dessous puis ouvrir le lien ci-dessous.Coller le code puis cliquer sur la petite fl\u00e8che verte en bas \u00e0 droite pour ex\u00e9cuter le code.<\/p>\n\n\n\n<figure class=\"wp-block-image size-full is-resized\"><img loading=\"lazy\" decoding=\"async\" src=\"http:\/\/yb-isn.fr\/2021\/snt\/wp-content\/uploads\/2021\/10\/image-1.png\" alt=\"\" class=\"wp-image-71\" width=\"65\" height=\"44\"\/><\/figure>\n\n\n\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"python\" data-enlighter-theme=\"godzilla\" data-enlighter-highlight=\"\" data-enlighter-linenumbers=\"\" data-enlighter-lineoffset=\"\" data-enlighter-title=\"\" data-enlighter-group=\"\">from microbit import *\ndisplay.set_pixel(0,0,9)<\/pre>\n\n\n\n<figure class=\"wp-block-image size-full is-resized\"><img loading=\"lazy\" decoding=\"async\" src=\"http:\/\/yb-isn.fr\/2021\/snt\/wp-content\/uploads\/2021\/10\/image.png\" alt=\"\" class=\"wp-image-65\" width=\"136\" height=\"106\"\/><\/figure>\n\n\n\n<p>modifions le programme en ajoutant des commentaires et des variables<\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"python\" data-enlighter-theme=\"godzilla\" data-enlighter-highlight=\"\" data-enlighter-linenumbers=\"\" data-enlighter-lineoffset=\"\" data-enlighter-title=\"\" data-enlighter-group=\"\">from microbit import *\n# x est la position horizontale du pixel : de 0 \u00e0 4 (de droite \u00e0 gauche)\nx=0\n# y est la position horizontale du pixel : de 0 \u00e0 4  (de haut en bas)\ny=0\n# lumi\u00e8re est l'intensit\u00e9 lumineuse du pixel de 0 \u00e0 9\nlumiere=9\ndisplay.set_pixel(x,y,lumiere)<\/pre>\n\n\n\n<p>Modifiez le programme en changeant les valeurs des variables pour voir si vous avez bien compris.<\/p>\n\n\n\n<p>Le programme ci-dessous tire  au hasard la position du pixel puis l&rsquo;affiche.<\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"python\" data-enlighter-theme=\"godzilla\" data-enlighter-highlight=\"\" data-enlighter-linenumbers=\"\" data-enlighter-lineoffset=\"\" data-enlighter-title=\"\" data-enlighter-group=\"\">from microbit import *\nimport random\nx_alea=random.randint(0,4)\ny_alea=random.randint(0,4)\ndisplay.set_pixel(x_alea,y_alea,9)<\/pre>\n\n\n\n<p>Un pixel est affich\u00e9 de fa\u00e7on al\u00e9atoire puis le programme vous demande d&rsquo;entrer les valeurs de x et y pour afficher un nouveau pixel.<\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"python\" data-enlighter-theme=\"godzilla\" data-enlighter-highlight=\"\" data-enlighter-linenumbers=\"\" data-enlighter-lineoffset=\"\" data-enlighter-title=\"\" data-enlighter-group=\"\">from microbit import *\nimport random\nx_alea=random.randint(0,4)\ny_alea=random.randint(0,4)\ndisplay.set_pixel(x_alea,y_alea,9)\n# x est la position horizontale du pixel : de 0 \u00e0 4 (de droite \u00e0 gauche)\nx=input(\"x ?\")\nx=int(x)\n# y est la position horizontale du pixel : de 0 \u00e0 4  (de haut en bas)\ny=input(\"y ?\")\ny=int(y)\n# lumi\u00e8re est l'intensit\u00e9 lumineuse du pixel de 0 \u00e0 9\nlumiere=9\ndisplay.set_pixel(x,y,lumiere)<\/pre>\n\n\n\n<figure class=\"wp-block-image size-full\"><img decoding=\"async\" src=\"http:\/\/yb-isn.fr\/2021\/snt\/wp-content\/uploads\/2021\/10\/image-2.png\" alt=\"\" class=\"wp-image-85\"\/><\/figure>\n\n\n\n<figure class=\"wp-block-image size-full\"><img decoding=\"async\" src=\"http:\/\/yb-isn.fr\/2021\/snt\/wp-content\/uploads\/2021\/10\/image-3.png\" alt=\"\" class=\"wp-image-86\"\/><\/figure>\n\n\n\n<p>Modifiez le programme pour qu&rsquo;il affiche le smiley  Image.HAPPY si tombez sur le m\u00eame point et Image.SAD dans le cas contraire.<\/p>\n\n\n\n<figure class=\"wp-block-image size-full\"><img decoding=\"async\" src=\"http:\/\/yb-isn.fr\/2021\/snt\/wp-content\/uploads\/2021\/10\/image-4.png\" alt=\"\" class=\"wp-image-90\"\/><\/figure>\n\n\n\n<figure class=\"wp-block-image size-full\"><img decoding=\"async\" src=\"http:\/\/yb-isn.fr\/2021\/snt\/wp-content\/uploads\/2021\/10\/image-5.png\" alt=\"\" class=\"wp-image-92\"\/><\/figure>\n\n\n\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"python\" data-enlighter-theme=\"godzilla\" data-enlighter-highlight=\"\" data-enlighter-linenumbers=\"\" data-enlighter-lineoffset=\"\" data-enlighter-title=\"\" data-enlighter-group=\"\">from microbit import *\nimport random\nx_alea=random.randint(0,4)\ny_alea=random.randint(0,4)\ndisplay.set_pixel(x_alea,y_alea,9)\n# x est la position horizontale du pixel : de 0 \u00e0 4 (de droite \u00e0 gauche)\nx=input(\"x ?\")\nx=int(x)\n# y est la position horizontale du pixel : de 0 \u00e0 4  (de haut en bas)\ny=input(\"y ?\")\ny=int(y)\n# lumi\u00e8re est l'intensit\u00e9 lumineuse du pixel de 0 \u00e0 9\nlumiere=9\ndisplay.set_pixel(x,y,lumiere)\nif x==x_alea and y==y_alea:\n  display.show(Image.HAPPY)\nelse:\n  display.show(Image.SAD) <\/pre>\n\n\n\n<p>On affiche un pixel au hasard. Les boutons A et B permettent de le d\u00e9placer horizontalement ou verticalement<\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"python\" data-enlighter-theme=\"godzilla\" data-enlighter-highlight=\"\" data-enlighter-linenumbers=\"\" data-enlighter-lineoffset=\"\" data-enlighter-title=\"\" data-enlighter-group=\"\">from microbit import *\nimport random\nx=random.randint(0,4)\ny=random.randint(0,4)\ndx=1\ndy=1\ndisplay.set_pixel(x,y,9)\nwhile True:\n  if button_a.was_pressed():\n      display.set_pixel(x,y,0)\n      x=x+dx\n      if x==4 or x==-0:\n        dx=-dx\n      display.set_pixel(x,y,9)\n  if button_b.was_pressed():\n    \n      display.set_pixel(x,y,0)\n      y=y+dy\n      if y==4 or y==0:\n        dy=-dy\n      display.set_pixel(x,y,9)<\/pre>\n\n\n\n<p>Il ne vous reste plus qu&rsquo;a faire preuve d&rsquo;imagination pour cr\u00e9er votre propre jeu<\/p>\n\n\n\n<p>Rappel des programmes vus en classe<\/p>\n\n\n\n<p>\u00e9crire un programme qui allume les 4 leds des 4 coins<\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"python\" data-enlighter-theme=\"godzilla\" data-enlighter-highlight=\"\" data-enlighter-linenumbers=\"\" data-enlighter-lineoffset=\"\" data-enlighter-title=\"\" data-enlighter-group=\"\">from microbit import *\ndisplay.set_pixel(0,0,9)\ndisplay.set_pixel(0,4,9)\ndisplay.set_pixel(4,0,9)\ndisplay.set_pixel(4,4,9)<\/pre>\n\n\n\n<p>\u00e9crire en utilisant une boucle un programme qui allume les 5 leds de la premi\u00e8re ligne du haut<\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"python\" data-enlighter-theme=\"godzilla\" data-enlighter-highlight=\"\" data-enlighter-linenumbers=\"\" data-enlighter-lineoffset=\"\" data-enlighter-title=\"\" data-enlighter-group=\"\">from microbit import *\nfor x in range(5):\n    display.set_pixel(x,0,9)\n    sleep(500)<\/pre>\n\n\n\n<p>\u00e9crire en utilisant deux boucles imbriqu\u00e9es un programme qui allume ligne par ligne toutes les leds<\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"python\" data-enlighter-theme=\"godzilla\" data-enlighter-highlight=\"\" data-enlighter-linenumbers=\"\" data-enlighter-lineoffset=\"\" data-enlighter-title=\"\" data-enlighter-group=\"\">from microbit import *\nfor y in range(5):\n    for x in range(5):\n        display.set_pixel(x,y,9)\n        sleep(500)<\/pre>\n\n\n\n<p>\u00e9crire en utilisant deux boucles imbriqu\u00e9es un programme qui allume colonne par colonne toutes les leds<\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"python\" data-enlighter-theme=\"godzilla\" data-enlighter-highlight=\"\" data-enlighter-linenumbers=\"\" data-enlighter-lineoffset=\"\" data-enlighter-title=\"\" data-enlighter-group=\"\">from microbit import *\nfor x in range(5):\n    for y in range(5):\n        display.set_pixel(x,y,9)\n        sleep(500)<\/pre>\n\n\n\n<p> faire compter la carte de 0 \u00e0 4 <\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"python\" data-enlighter-theme=\"godzilla\" data-enlighter-highlight=\"\" data-enlighter-linenumbers=\"\" data-enlighter-lineoffset=\"\" data-enlighter-title=\"\" data-enlighter-group=\"\">from microbit import *\nimport speech\nfor i in range(5):\n    speech.say(str(i))\n    sleep(500)<\/pre>\n\n\n\n<p>faire compter la carte de 4 \u00e0 0<\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"python\" data-enlighter-theme=\"godzilla\" data-enlighter-highlight=\"\" data-enlighter-linenumbers=\"\" data-enlighter-lineoffset=\"\" data-enlighter-title=\"\" data-enlighter-group=\"\">from microbit import *\nimport speech\nfor i in range(5,0,-1):\n    speech.say(str(i))\n    sleep(500)<\/pre>\n\n\n\n<p>autre m\u00e9thode<\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"python\" data-enlighter-theme=\"godzilla\" data-enlighter-highlight=\"\" data-enlighter-linenumbers=\"\" data-enlighter-lineoffset=\"\" data-enlighter-title=\"\" data-enlighter-group=\"\">from microbit import *\nimport speech\ni=5\nwhile i&gt;0:\n    speech.say(str(i))\n    i=i-1\n    sleep(500)<\/pre>\n","protected":false},"excerpt":{"rendered":"","protected":false},"author":1,"featured_media":0,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"","meta":{"footnotes":""},"class_list":["post-408","page","type-page","status-publish","hentry"],"_links":{"self":[{"href":"https:\/\/yb-isn.fr\/2021\/es\/index.php?rest_route=\/wp\/v2\/pages\/408"}],"collection":[{"href":"https:\/\/yb-isn.fr\/2021\/es\/index.php?rest_route=\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/yb-isn.fr\/2021\/es\/index.php?rest_route=\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/yb-isn.fr\/2021\/es\/index.php?rest_route=\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/yb-isn.fr\/2021\/es\/index.php?rest_route=%2Fwp%2Fv2%2Fcomments&post=408"}],"version-history":[{"count":1,"href":"https:\/\/yb-isn.fr\/2021\/es\/index.php?rest_route=\/wp\/v2\/pages\/408\/revisions"}],"predecessor-version":[{"id":409,"href":"https:\/\/yb-isn.fr\/2021\/es\/index.php?rest_route=\/wp\/v2\/pages\/408\/revisions\/409"}],"wp:attachment":[{"href":"https:\/\/yb-isn.fr\/2021\/es\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=408"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}