

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE rdf:RDF[
	<!ENTITY rdf 'http://www.w3.org/1999/02/22-rdf-syntax-ns#'>
	<!ENTITY rdfs 'http://www.w3.org/2000/01/rdf-schema#'>
	<!ENTITY owl 'http://www.w3.org/2002/07/owl#'>
	<!ENTITY swivt 'http://semantic-mediawiki.org/swivt/1.0#'>
	<!ENTITY wiki 'http://https://wikifab.org/wiki/Special:URIResolver/'>
	<!ENTITY category 'http://https://wikifab.org/wiki/Special:URIResolver/Category-3A'>
	<!ENTITY property 'http://https://wikifab.org/wiki/Special:URIResolver/Property-3A'>
	<!ENTITY wikiurl 'https://wikifab.org/wiki/'>
]>

<rdf:RDF
	xmlns:rdf="&rdf;"
	xmlns:rdfs="&rdfs;"
	xmlns:owl ="&owl;"
	xmlns:swivt="&swivt;"
	xmlns:wiki="&wiki;"
	xmlns:category="&category;"
	xmlns:property="&property;">

	<owl:Ontology rdf:about="https://wikifab.org/wiki/Special:ExportRDF/Lance-2DRocket">
		<swivt:creationDate rdf:datatype="http://www.w3.org/2001/XMLSchema#dateTime">2026-04-12T16:07:16+02:00</swivt:creationDate>
		<owl:imports rdf:resource="http://semantic-mediawiki.org/swivt/1.0"/>
	</owl:Ontology>
	<swivt:Subject rdf:about="http://https://wikifab.org/wiki/Special:URIResolver/Lance-2DRocket">
		<rdf:type rdf:resource="http://https://wikifab.org/wiki/Special:URIResolver/Category-3ATutorials"/>
		<rdfs:label>Lance-Rocket</rdfs:label>
		<rdfs:isDefinedBy rdf:resource="https://wikifab.org/wiki/Special:ExportRDF/Lance-2DRocket"/>
		<swivt:page rdf:resource="https://wikifab.org/wiki/Lance-2DRocket"/>
		<swivt:wikiNamespace rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">0</swivt:wikiNamespace>
		<swivt:wikiPageContentLanguage rdf:datatype="http://www.w3.org/2001/XMLSchema#string">fr</swivt:wikiPageContentLanguage>
		<property:Area rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Machines and Tools</property:Area>
		<property:Area rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Play and Hobbies</property:Area>
		<property:Area rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Robotics</property:Area>
		<property:Complete rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Draft</property:Complete>
		<property:Cost rdf:datatype="http://www.w3.org/2001/XMLSchema#double">0</property:Cost>
		<property:Currency rdf:datatype="http://www.w3.org/2001/XMLSchema#string">EUR (€)</property:Currency>
		<property:Description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Vous réaliserez un lance-rocket bien évidemment dans un cadre pédagogique et non dans le but de blessé qui que ce soit.</property:Description>
		<property:Difficulty rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Hard</property:Difficulty>
		<property:Duration rdf:datatype="http://www.w3.org/2001/XMLSchema#double">1</property:Duration>
		<property:Duration-2Dtype rdf:datatype="http://www.w3.org/2001/XMLSchema#string">day(s)</property:Duration-2Dtype>
		<property:Introduction rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Voici le tuto pour réaliser votre propre "'''Lance-Rocket'''" éducatif.</property:Introduction>
		<property:IsTranslation rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">false</property:IsTranslation>
		<property:Language rdf:datatype="http://www.w3.org/2001/XMLSchema#string">fr</property:Language>
		<property:Main_Picture rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Lance-Rocket_20230414_104019.jpg</property:Main_Picture>
		<property:SourceLanguage rdf:datatype="http://www.w3.org/2001/XMLSchema#string">none</property:SourceLanguage>
		<property:Step_Content rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Modélisation sur solidworks</property:Step_Content>
		<property:Step_Content rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Grâce à une graveuse laser nous découpons nos modélisations sur du bois.</property:Step_Content>
		<property:Step_Content rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nous avons crée un support pour le canon avec un roulement a bille pour amélioré la fluidité</property:Step_Content>
		<property:Step_Content rdf:datatype="http://www.w3.org/2001/XMLSchema#string">&lt;nowiki&gt;on a fait un premier test sur le site Wokwi puis nous avant effectué le montage&lt;br /&gt;&lt;br /&gt;code source : &lt;br /&gt;&lt;br /&gt;''from machine import Pin, I2C''&lt;br /&gt;&lt;br /&gt;''import ssd1306''&lt;br /&gt;&lt;br /&gt;''# ESP32 Pin assignment''&lt;br /&gt;&lt;br /&gt;''i2c = I2C(0, scl=Pin(22), sda=Pin(21))''&lt;br /&gt;&lt;br /&gt;''oled_width = 128''&lt;br /&gt;&lt;br /&gt;''oled_height = 64''&lt;br /&gt;&lt;br /&gt;''oled = ssd1306.SSD1306_I2C(oled_width, oled_height, i2c)''&lt;br /&gt;&lt;br /&gt;''     ''&lt;br /&gt;&lt;br /&gt;''boutonR=Pin(15,Pin.IN)''&lt;br /&gt;&lt;br /&gt;''bouton1=Pin(4,Pin.IN)''&lt;br /&gt;&lt;br /&gt;''bouton2=Pin(5,Pin.IN)''&lt;br /&gt;&lt;br /&gt;''bouton3=Pin(14,Pin.IN)''&lt;br /&gt;&lt;br /&gt;''compteur =0''&lt;br /&gt;&lt;br /&gt;''message= ''''&lt;br /&gt;&lt;br /&gt;''appuyerbouton1 = 0''&lt;br /&gt;&lt;br /&gt;''appuyerbouton2 = 0''&lt;br /&gt;&lt;br /&gt;''appuyerbouton3 = 0''&lt;br /&gt;&lt;br /&gt;''appuyerboutonR = 0''&lt;br /&gt;&lt;br /&gt;''while True:''&lt;br /&gt;&lt;br /&gt;''    if boutonR.value() == 0 and appuyerboutonR == 0:''&lt;br /&gt;&lt;br /&gt;''        appuyerboutonR = 1''&lt;br /&gt;&lt;br /&gt;''       ''&lt;br /&gt;&lt;br /&gt;''    elif boutonR.value() == 1 and appuyerboutonR == 1 :''&lt;br /&gt;&lt;br /&gt;''        appuyerboutonR = 0''&lt;br /&gt;&lt;br /&gt;''        compteur = 0''&lt;br /&gt;&lt;br /&gt;''       ''&lt;br /&gt;&lt;br /&gt;''       ''&lt;br /&gt;&lt;br /&gt;''    if bouton1.value() == 0 and appuyerbouton1 == 0:''&lt;br /&gt;&lt;br /&gt;''        appuyerbouton1 = 1''&lt;br /&gt;&lt;br /&gt;''       ''&lt;br /&gt;&lt;br /&gt;''    elif bouton1.value() == 1 and appuyerbouton1 == 1 :''&lt;br /&gt;&lt;br /&gt;''        appuyerbouton1 = 0''&lt;br /&gt;&lt;br /&gt;''        compteur = compteur +1''&lt;br /&gt;&lt;br /&gt;''       ''&lt;br /&gt;&lt;br /&gt;''       ''&lt;br /&gt;&lt;br /&gt;''    if bouton2.value() == 0 and appuyerbouton2 == 0:''&lt;br /&gt;&lt;br /&gt;''        appuyerbouton2 = 1''&lt;br /&gt;&lt;br /&gt;''       ''&lt;br /&gt;&lt;br /&gt;''    elif bouton2.value() == 1 and appuyerbouton2 == 1 :''&lt;br /&gt;&lt;br /&gt;''        appuyerbouton2 = 0''&lt;br /&gt;&lt;br /&gt;''        compteur = compteur +1''&lt;br /&gt;&lt;br /&gt;''       ''&lt;br /&gt;&lt;br /&gt;''       ''&lt;br /&gt;&lt;br /&gt;''   ''&lt;br /&gt;&lt;br /&gt;''    if bouton3.value() == 0 and appuyerbouton3 == 0:''&lt;br /&gt;&lt;br /&gt;''        appuyerbouton3 = 1''&lt;br /&gt;&lt;br /&gt;''       ''&lt;br /&gt;&lt;br /&gt;''    elif bouton3.value() == 1 and appuyerbouton3 == 1 :''&lt;br /&gt;&lt;br /&gt;''        appuyerbouton3 = 0''&lt;br /&gt;&lt;br /&gt;''        compteur = compteur +1''&lt;br /&gt;&lt;br /&gt;''    message= 'score '+ str(compteur)''&lt;br /&gt;&lt;br /&gt;''    oled.fill(0)''&lt;br /&gt;&lt;br /&gt;''    oled.text(message, 10, 30)''&lt;br /&gt;&lt;br /&gt;''    oled.show()''&lt;/nowiki&gt;</property:Step_Content>
		<property:Step_Title rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Modéliser le socle qui accueillera le canon</property:Step_Title>
		<property:Step_Title rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Modéliser les cibles</property:Step_Title>
		<property:Step_Title rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Graver nos modélisations</property:Step_Title>
		<property:Step_Title rdf:datatype="http://www.w3.org/2001/XMLSchema#string">création programme</property:Step_Title>
		<property:Step_Title rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Création du support canon</property:Step_Title>
		<property:Tags rdf:datatype="http://www.w3.org/2001/XMLSchema#string">jeu de tir</property:Tags>
		<property:Tags rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Loisir</property:Tags>
		<property:Tags rdf:datatype="http://www.w3.org/2001/XMLSchema#string">fete forraine</property:Tags>
		<property:Tags rdf:datatype="http://www.w3.org/2001/XMLSchema#string">amusement</property:Tags>
		<property:Tags rdf:datatype="http://www.w3.org/2001/XMLSchema#string">visée</property:Tags>
		<property:Tags rdf:datatype="http://www.w3.org/2001/XMLSchema#string">foire</property:Tags>
		<property:Tags rdf:datatype="http://www.w3.org/2001/XMLSchema#string">tir</property:Tags>
		<property:Tags rdf:datatype="http://www.w3.org/2001/XMLSchema#string">canon</property:Tags>
		<property:Tags rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Bois</property:Tags>
		<property:Has_processing_error rdf:resource="&wiki;Lance-2DRocket-23_ERRa1fa27779242b4902f7ae3bdd5c6d508"/>
		<swivt:wikiPageModificationDate rdf:datatype="http://www.w3.org/2001/XMLSchema#dateTime">2023-04-18T18:29:27Z</swivt:wikiPageModificationDate>
		<property:Modification_date-23aux rdf:datatype="http://www.w3.org/2001/XMLSchema#double">2460053.2704514</property:Modification_date-23aux>
		<swivt:wikiPageSortKey rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Lance-Rocket</swivt:wikiPageSortKey>
		<property:Comments rdf:datatype="http://www.w3.org/2001/XMLSchema#double">0</property:Comments>
		<property:Page_creator rdf:resource="&wiki;Utilisateur-3AM.Lance-2DRocket"/>
		<property:I_did_it rdf:datatype="http://www.w3.org/2001/XMLSchema#double">0</property:I_did_it>
		<property:Favorites rdf:datatype="http://www.w3.org/2001/XMLSchema#double">0</property:Favorites>
	</swivt:Subject>
	<swivt:Subject rdf:about="http://https://wikifab.org/wiki/Special:URIResolver/Lance-2DRocket-23_ERRa1fa27779242b4902f7ae3bdd5c6d508">
		<swivt:masterPage rdf:resource="&wiki;Lance-2DRocket"/>
		<swivt:wikiNamespace rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">0</swivt:wikiNamespace>
		<property:Has_improper_value_for rdf:resource="http://https://wikifab.org/wiki/Special:URIResolver/Property-3AType"/>
		<property:Has_processing_error_text rdf:datatype="http://www.w3.org/2001/XMLSchema#string">[8,"smw-datavalue-constraint-error-allows-value-list","Arme non l\u00e9tale","Technique, Creation","Type"]</property:Has_processing_error_text>
		<swivt:wikiPageSortKey rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Lance-Rocket# ERRa1fa27779242b4902f7ae3bdd5c6d508</swivt:wikiPageSortKey>
	</swivt:Subject>
	<owl:DatatypeProperty rdf:about="http://semantic-mediawiki.org/swivt/1.0#creationDate" />
	<owl:Class rdf:about="http://https://wikifab.org/wiki/Special:URIResolver/Category-3ATutorials" />
	<owl:ObjectProperty rdf:about="http://semantic-mediawiki.org/swivt/1.0#page" />
	<owl:DatatypeProperty rdf:about="http://semantic-mediawiki.org/swivt/1.0#wikiNamespace" />
	<owl:DatatypeProperty rdf:about="http://semantic-mediawiki.org/swivt/1.0#wikiPageContentLanguage" />
	<owl:DatatypeProperty rdf:about="http://https://wikifab.org/wiki/Special:URIResolver/Property-3AArea" />
	<owl:DatatypeProperty rdf:about="http://https://wikifab.org/wiki/Special:URIResolver/Property-3AComplete" />
	<owl:DatatypeProperty rdf:about="http://https://wikifab.org/wiki/Special:URIResolver/Property-3ACost" />
	<owl:DatatypeProperty rdf:about="http://https://wikifab.org/wiki/Special:URIResolver/Property-3ACurrency" />
	<owl:DatatypeProperty rdf:about="http://https://wikifab.org/wiki/Special:URIResolver/Property-3ADescription" />
	<owl:DatatypeProperty rdf:about="http://https://wikifab.org/wiki/Special:URIResolver/Property-3ADifficulty" />
	<owl:DatatypeProperty rdf:about="http://https://wikifab.org/wiki/Special:URIResolver/Property-3ADuration" />
	<owl:DatatypeProperty rdf:about="http://https://wikifab.org/wiki/Special:URIResolver/Property-3ADuration-2Dtype" />
	<owl:DatatypeProperty rdf:about="http://https://wikifab.org/wiki/Special:URIResolver/Property-3AIntroduction" />
	<owl:DatatypeProperty rdf:about="http://https://wikifab.org/wiki/Special:URIResolver/Property-3AIsTranslation" />
	<owl:DatatypeProperty rdf:about="http://https://wikifab.org/wiki/Special:URIResolver/Property-3ALanguage" />
	<owl:DatatypeProperty rdf:about="http://https://wikifab.org/wiki/Special:URIResolver/Property-3AMain_Picture" />
	<owl:DatatypeProperty rdf:about="http://https://wikifab.org/wiki/Special:URIResolver/Property-3ASourceLanguage" />
	<owl:DatatypeProperty rdf:about="http://https://wikifab.org/wiki/Special:URIResolver/Property-3AStep_Content" />
	<owl:DatatypeProperty rdf:about="http://https://wikifab.org/wiki/Special:URIResolver/Property-3AStep_Title" />
	<owl:DatatypeProperty rdf:about="http://https://wikifab.org/wiki/Special:URIResolver/Property-3ATags" />
	<owl:ObjectProperty rdf:about="http://https://wikifab.org/wiki/Special:URIResolver/Property-3AHas_processing_error" />
	<owl:DatatypeProperty rdf:about="http://semantic-mediawiki.org/swivt/1.0#wikiPageModificationDate" />
	<owl:DatatypeProperty rdf:about="http://https://wikifab.org/wiki/Special:URIResolver/Property-3AModification_date-23aux" />
	<owl:DatatypeProperty rdf:about="http://semantic-mediawiki.org/swivt/1.0#wikiPageSortKey" />
	<owl:DatatypeProperty rdf:about="http://https://wikifab.org/wiki/Special:URIResolver/Property-3AComments" />
	<owl:ObjectProperty rdf:about="http://https://wikifab.org/wiki/Special:URIResolver/Property-3APage_creator" />
	<owl:DatatypeProperty rdf:about="http://https://wikifab.org/wiki/Special:URIResolver/Property-3AI_did_it" />
	<owl:DatatypeProperty rdf:about="http://https://wikifab.org/wiki/Special:URIResolver/Property-3AFavorites" />
	<owl:ObjectProperty rdf:about="http://semantic-mediawiki.org/swivt/1.0#masterPage" />
	<owl:ObjectProperty rdf:about="http://https://wikifab.org/wiki/Special:URIResolver/Property-3AHas_improper_value_for" />
	<owl:DatatypeProperty rdf:about="http://https://wikifab.org/wiki/Special:URIResolver/Property-3AHas_processing_error_text" />
	<!-- Created by Semantic MediaWiki, https://www.semantic-mediawiki.org/ -->
</rdf:RDF>