

<?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://www.wikidebrouillard.org/wiki/Special:URIResolver/'>
	<!ENTITY category 'http://https://www.wikidebrouillard.org/wiki/Special:URIResolver/Category-3A'>
	<!ENTITY property 'http://https://www.wikidebrouillard.org/wiki/Special:URIResolver/Property-3A'>
	<!ENTITY wikiurl 'https://www.wikidebrouillard.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://www.wikidebrouillard.org/wiki/Special:ExportRDF/Station_météo_qui_a_le_groove">
		<swivt:creationDate rdf:datatype="http://www.w3.org/2001/XMLSchema#dateTime">2026-04-30T16:29:05+02:00</swivt:creationDate>
		<owl:imports rdf:resource="http://semantic-mediawiki.org/swivt/1.0"/>
	</owl:Ontology>
	<swivt:Subject rdf:about="http://https://www.wikidebrouillard.org/wiki/Special:URIResolver/Station_météo_qui_a_le_groove">
		<rdf:type rdf:resource="http://https://www.wikidebrouillard.org/wiki/Special:URIResolver/Category-3ATutorials"/>
		<rdfs:label>Station météo qui a le groove</rdfs:label>
		<rdfs:isDefinedBy rdf:resource="https://www.wikidebrouillard.org/wiki/Special:ExportRDF/Station_météo_qui_a_le_groove"/>
		<swivt:page rdf:resource="https://www.wikidebrouillard.org/wiki/Station_météo_qui_a_le_groove"/>
		<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:Complete rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Draft</property:Complete>
		<property:Description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Station météo utilisant un capteur BME 280 et un servomoteur SG 90</property:Description>
		<property:Difficulty rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Technical</property:Difficulty>
		<property:Disciplines_scientifiques rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arduino</property:Disciplines_scientifiques>
		<property:Duration rdf:datatype="http://www.w3.org/2001/XMLSchema#double">3</property:Duration>
		<property:Duration-2Dtype rdf:datatype="http://www.w3.org/2001/XMLSchema#string">hour(s)</property:Duration-2Dtype>
		<property:Introduction rdf:datatype="http://www.w3.org/2001/XMLSchema#string">&lt;nowiki&gt;#include "Seeed_BME280.h"&lt;br /&gt;&lt;br /&gt;#include &lt;Wire.h&gt;&lt;br /&gt;&lt;br /&gt;#include "SH1106Wire.h"&lt;br /&gt;&lt;br /&gt;#include &lt;ESP8266WiFi.h&gt;&lt;br /&gt;&lt;br /&gt;#include &lt;ESPDash.h&gt;&lt;br /&gt;&lt;br /&gt;#include &lt;ESPAsyncTCP.h&gt;&lt;br /&gt;&lt;br /&gt;#include &lt;ESPAsyncWebServer.h&gt;&lt;br /&gt;&lt;br /&gt;#include &lt;Servo.h&gt;&lt;br /&gt;&lt;br /&gt;BME280 bme280;&lt;br /&gt;&lt;br /&gt;SH1106Wire display(0x3c, D2, D1);&lt;br /&gt;&lt;br /&gt;AsyncWebServer server(80);&lt;br /&gt;&lt;br /&gt;ESPDash dashboard(&amp;server);&lt;br /&gt;&lt;br /&gt;Card temperature(&amp;dashboard, TEMPERATURE_CARD, "Temperature", "°C");&lt;br /&gt;&lt;br /&gt;Card humidity(&amp;dashboard, HUMIDITY_CARD, "Humidity", "%");&lt;br /&gt;&lt;br /&gt;Card pressure(&amp;dashboard, GENERIC_CARD, "Pression", "mB");&lt;br /&gt;&lt;br /&gt;Servo myservo;&lt;br /&gt;&lt;br /&gt;void setup()&lt;br /&gt;&lt;br /&gt;{&lt;br /&gt;&lt;br /&gt;  myservo.attach(D6);&lt;br /&gt;&lt;br /&gt;  Serial.begin(9600);&lt;br /&gt;&lt;br /&gt;  bme280.init();&lt;br /&gt;&lt;br /&gt;  display.init();&lt;br /&gt;&lt;br /&gt;  WiFi.softAP("mon resseau", "mot de passe");&lt;br /&gt;&lt;br /&gt;  server.begin();&lt;br /&gt;&lt;br /&gt;  WiFi.begin("SSID BOX", "mot de passe");&lt;br /&gt;&lt;br /&gt;  Serial.print("Connection en cours");&lt;br /&gt;&lt;br /&gt;  while (WiFi.status() != WL_CONNECTED) // tant que l'esp n'est pas connecté au réseau on attends&lt;br /&gt;&lt;br /&gt;  {&lt;br /&gt;&lt;br /&gt;   delay(500);&lt;br /&gt;&lt;br /&gt;   Serial.print(".");&lt;br /&gt;&lt;br /&gt;  }&lt;br /&gt;&lt;br /&gt;   Serial.println();&lt;br /&gt;&lt;br /&gt;   Serial.print("Connecté, 192.168.4.1 : ");&lt;br /&gt;&lt;br /&gt;   Serial.println(WiFi.localIP()); // affichage de l'adresse IP&lt;br /&gt;&lt;br /&gt;  }&lt;br /&gt;&lt;br /&gt;void loop()&lt;br /&gt;&lt;br /&gt;{&lt;br /&gt;&lt;br /&gt;  float temp = bme280.getTemperature();&lt;br /&gt;&lt;br /&gt;  Serial.println(temp);&lt;br /&gt;&lt;br /&gt;  display.clear();&lt;br /&gt;&lt;br /&gt;  display.drawString(0,0, String (temp));&lt;br /&gt;&lt;br /&gt; &lt;br /&gt;&lt;br /&gt;  float Pressure = bme280.getPressure();&lt;br /&gt;&lt;br /&gt;  Serial.println(Pressure);&lt;br /&gt;&lt;br /&gt;  display.drawString(0,10, String (Pressure));&lt;br /&gt;&lt;br /&gt; &lt;br /&gt;&lt;br /&gt;  int Altitude = bme280.calcAltitude(Pressure);&lt;br /&gt;&lt;br /&gt;  Serial.println(Altitude);&lt;br /&gt;&lt;br /&gt;  display.drawString(0,20, String (Altitude));&lt;br /&gt;&lt;br /&gt; &lt;br /&gt;&lt;br /&gt;  int Humidity = bme280.getHumidity();&lt;br /&gt;&lt;br /&gt;  Serial.println(Humidity);&lt;br /&gt;&lt;br /&gt;  display.drawString(0,40, String (Humidity));&lt;br /&gt;&lt;br /&gt;  display.drawString(0,30, "Humidity");&lt;br /&gt;&lt;br /&gt; &lt;br /&gt;&lt;br /&gt;  display.display();&lt;br /&gt;&lt;br /&gt;  delay(1000);&lt;br /&gt;&lt;br /&gt;  temperature.update(temp);&lt;br /&gt;&lt;br /&gt;  humidity.update(Humidity);&lt;br /&gt;&lt;br /&gt;  pressure.update(Pressure);&lt;br /&gt;&lt;br /&gt;  dashboard.sendUpdates();&lt;br /&gt;&lt;br /&gt;  int temp_map = map(temp,5,25,0,180);&lt;br /&gt;&lt;br /&gt;  myservo.write(temp_map);&lt;br /&gt;&lt;br /&gt;  delay(3000);&lt;br /&gt;&lt;br /&gt;}&lt;/nowiki&gt;</property:Introduction>
		<property:Item rdf:resource="&wiki;Ecran_OLED_1.3_pouces_I2C"/>
		<property:Item rdf:resource="&wiki;BME280"/>
		<property:Licences rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Attribution (CC-BY)</property:Licences>
		<property:Main_Picture rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Station_m_t_o_qui_a_le_groove_IMG_20201210_165837_resized_20201210_045906951.jpg</property:Main_Picture>
		<property:Has_query rdf:resource="&wiki;Station_météo_qui_a_le_groove-23_QUERY756836d3a160c8b514fe78f282adbe22"/>
		<property:Has_query rdf:resource="&wiki;Station_météo_qui_a_le_groove-23_QUERYbdf42bccbab74e51bf77ee8808f66327"/>
		<swivt:wikiPageModificationDate rdf:datatype="http://www.w3.org/2001/XMLSchema#dateTime">2021-01-06T09:57:58Z</swivt:wikiPageModificationDate>
		<property:Modification_date-23aux rdf:datatype="http://www.w3.org/2001/XMLSchema#double">2459220.9152546</property:Modification_date-23aux>
		<swivt:wikiPageSortKey rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Station météo qui a le groove</swivt:wikiPageSortKey>
		<property:Comments rdf:datatype="http://www.w3.org/2001/XMLSchema#double">0</property:Comments>
		<property:Page_creator rdf:resource="&wiki;Utilisateur-3ATitouan_L"/>
		<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://www.wikidebrouillard.org/wiki/Special:URIResolver/Station_météo_qui_a_le_groove-23_QUERY756836d3a160c8b514fe78f282adbe22">
		<swivt:masterPage rdf:resource="&wiki;Station_météo_qui_a_le_groove"/>
		<swivt:wikiNamespace rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">0</swivt:wikiNamespace>
		<property:Query_depth rdf:datatype="http://www.w3.org/2001/XMLSchema#double">0</property:Query_depth>
		<property:Query_format rdf:datatype="http://www.w3.org/2001/XMLSchema#string">plainlist</property:Query_format>
		<property:Query_size rdf:datatype="http://www.w3.org/2001/XMLSchema#double">1</property:Query_size>
		<property:Query_string rdf:datatype="http://www.w3.org/2001/XMLSchema#string">[[:Item:BME280]]</property:Query_string>
		<swivt:wikiPageSortKey rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Station météo qui a le groove# QUERY756836d3a160c8b514fe78f282adbe22</swivt:wikiPageSortKey>
	</swivt:Subject>
	<swivt:Subject rdf:about="http://https://www.wikidebrouillard.org/wiki/Special:URIResolver/Station_météo_qui_a_le_groove-23_QUERYbdf42bccbab74e51bf77ee8808f66327">
		<swivt:masterPage rdf:resource="&wiki;Station_météo_qui_a_le_groove"/>
		<swivt:wikiNamespace rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">0</swivt:wikiNamespace>
		<property:Query_depth rdf:datatype="http://www.w3.org/2001/XMLSchema#double">0</property:Query_depth>
		<property:Query_format rdf:datatype="http://www.w3.org/2001/XMLSchema#string">plainlist</property:Query_format>
		<property:Query_size rdf:datatype="http://www.w3.org/2001/XMLSchema#double">1</property:Query_size>
		<property:Query_string rdf:datatype="http://www.w3.org/2001/XMLSchema#string">[[:Item:Ecran OLED 1.3 pouces I2C]]</property:Query_string>
		<swivt:wikiPageSortKey rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Station météo qui a le groove# QUERYbdf42bccbab74e51bf77ee8808f66327</swivt:wikiPageSortKey>
	</swivt:Subject>
	<owl:DatatypeProperty rdf:about="http://semantic-mediawiki.org/swivt/1.0#creationDate" />
	<owl:Class rdf:about="http://https://www.wikidebrouillard.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://www.wikidebrouillard.org/wiki/Special:URIResolver/Property-3AComplete" />
	<owl:DatatypeProperty rdf:about="http://https://www.wikidebrouillard.org/wiki/Special:URIResolver/Property-3ADescription" />
	<owl:DatatypeProperty rdf:about="http://https://www.wikidebrouillard.org/wiki/Special:URIResolver/Property-3ADifficulty" />
	<owl:DatatypeProperty rdf:about="http://https://www.wikidebrouillard.org/wiki/Special:URIResolver/Property-3ADisciplines_scientifiques" />
	<owl:DatatypeProperty rdf:about="http://https://www.wikidebrouillard.org/wiki/Special:URIResolver/Property-3ADuration" />
	<owl:DatatypeProperty rdf:about="http://https://www.wikidebrouillard.org/wiki/Special:URIResolver/Property-3ADuration-2Dtype" />
	<owl:DatatypeProperty rdf:about="http://https://www.wikidebrouillard.org/wiki/Special:URIResolver/Property-3AIntroduction" />
	<owl:ObjectProperty rdf:about="http://https://www.wikidebrouillard.org/wiki/Special:URIResolver/Property-3AItem" />
	<owl:DatatypeProperty rdf:about="http://https://www.wikidebrouillard.org/wiki/Special:URIResolver/Property-3ALicences" />
	<owl:DatatypeProperty rdf:about="http://https://www.wikidebrouillard.org/wiki/Special:URIResolver/Property-3AMain_Picture" />
	<owl:ObjectProperty rdf:about="http://https://www.wikidebrouillard.org/wiki/Special:URIResolver/Property-3AHas_query" />
	<owl:DatatypeProperty rdf:about="http://semantic-mediawiki.org/swivt/1.0#wikiPageModificationDate" />
	<owl:DatatypeProperty rdf:about="http://https://www.wikidebrouillard.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://www.wikidebrouillard.org/wiki/Special:URIResolver/Property-3AComments" />
	<owl:ObjectProperty rdf:about="http://https://www.wikidebrouillard.org/wiki/Special:URIResolver/Property-3APage_creator" />
	<owl:DatatypeProperty rdf:about="http://https://www.wikidebrouillard.org/wiki/Special:URIResolver/Property-3AI_did_it" />
	<owl:DatatypeProperty rdf:about="http://https://www.wikidebrouillard.org/wiki/Special:URIResolver/Property-3AFavorites" />
	<owl:ObjectProperty rdf:about="http://semantic-mediawiki.org/swivt/1.0#masterPage" />
	<owl:DatatypeProperty rdf:about="http://https://www.wikidebrouillard.org/wiki/Special:URIResolver/Property-3AQuery_depth" />
	<owl:DatatypeProperty rdf:about="http://https://www.wikidebrouillard.org/wiki/Special:URIResolver/Property-3AQuery_format" />
	<owl:DatatypeProperty rdf:about="http://https://www.wikidebrouillard.org/wiki/Special:URIResolver/Property-3AQuery_size" />
	<owl:DatatypeProperty rdf:about="http://https://www.wikidebrouillard.org/wiki/Special:URIResolver/Property-3AQuery_string" />
	<!-- Created by Semantic MediaWiki, https://www.semantic-mediawiki.org/ -->
</rdf:RDF>