<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="fr">
	<id>https://wikifab.org/w/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Gameferre2003</id>
	<title>Wikifab - Contributions de l’utilisateur [fr]</title>
	<link rel="self" type="application/atom+xml" href="https://wikifab.org/w/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Gameferre2003"/>
	<link rel="alternate" type="text/html" href="https://wikifab.org/wiki/Sp%C3%A9cial:Contributions/Gameferre2003"/>
	<updated>2026-05-20T21:04:37Z</updated>
	<subtitle>Contributions de l’utilisateur</subtitle>
	<generator>MediaWiki 1.31.3</generator>
	<entry>
		<id>https://wikifab.org/w/index.php?title=Financial_literacy_with_Makey_Makey&amp;diff=51285</id>
		<title>Financial literacy with Makey Makey</title>
		<link rel="alternate" type="text/html" href="https://wikifab.org/w/index.php?title=Financial_literacy_with_Makey_Makey&amp;diff=51285"/>
		<updated>2018-08-21T14:02:17Z</updated>

		<summary type="html">&lt;p&gt;Gameferre2003 : &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{ {{tntn|Tuto Details}}&lt;br /&gt;
|Main_Picture=Financial_literacy_with_Makey_Makey_1.PNG&lt;br /&gt;
|Licences=Attribution (CC BY)&lt;br /&gt;
|Description=In this tutorial you will learn how to set up an activity on coding based on Scratch and simple financial literacy for kids.&lt;br /&gt;
|Area=Electronics&lt;br /&gt;
|Type=Technique&lt;br /&gt;
|Difficulty=Easy&lt;br /&gt;
|Duration=25&lt;br /&gt;
|Duration-type=minute(s)&lt;br /&gt;
|Cost=25&lt;br /&gt;
|Currency=EUR (€)&lt;br /&gt;
|Tags=scratch, Makey Makey, scratch,, financial literacy, coding&lt;br /&gt;
|SourceLanguage=none&lt;br /&gt;
|Language=en&lt;br /&gt;
|IsTranslation=0&lt;br /&gt;
}}&lt;br /&gt;
{{ {{tntn|Introduction}}&lt;br /&gt;
|Introduction=In this tutorial you will learn how to set up an activity on coding based on Scratch and simple financial literacy for kids.&lt;br /&gt;
}}&lt;br /&gt;
{{ {{tntn|Materials}}&lt;br /&gt;
|Material=1 x DIY makey makey (see [[DIY Makey Makey with Arduino Leonardo|this]] tutorial), or original makey makey&lt;br /&gt;
&lt;br /&gt;
Different coins (10 cents, 20 cents, 50 cents, 1 cent, etc.)&lt;br /&gt;
&lt;br /&gt;
A bunch of alligator clips&lt;br /&gt;
|Tools=1 computer with Scratch (Offline or on-line)&lt;br /&gt;
}}&lt;br /&gt;
{{ {{tntn|Separator}}}}&lt;br /&gt;
{{ {{tntn|Tuto Step}}&lt;br /&gt;
|Step_Title=Connecting the Makey Makey to the computer&lt;br /&gt;
|Step_Content=If it’s your first installation of Makey makey or Arduino Leonardo on Windows or MacOS, just plug the board to your computer and wait for the automatic installation. &lt;br /&gt;
&lt;br /&gt;
(2 minutes maximum).&lt;br /&gt;
&lt;br /&gt;
Next, plug some alligator clips into the board.&lt;br /&gt;
|Step_Picture_00=Financial_literacy_with_Makey_Makey_1.PNG&lt;br /&gt;
|Step_Picture_01=Financial_literacy_with_Makey_Makey_2.PNG&lt;br /&gt;
}}&lt;br /&gt;
{{ {{tntn|Tuto Step}}&lt;br /&gt;
|Step_Title=Coding on Scratch: Declaring variables&lt;br /&gt;
|Step_Content=Let’s get started with the coding.&lt;br /&gt;
&lt;br /&gt;
To declare a variable go to DATA (orange), and click on ‘make a variable’ and give a name to the value. For this exercise you will need two values : 1. ‘price asked’ and 2. ‘bucket’.&lt;br /&gt;
&lt;br /&gt;
Next, pick up two blocks of the type ‘set …. to 0’ add one block per each value (one for bucket and one for price objective) to the code. For the value ‘price asked’ add a block ‘change …. by 1’ and go in OPERATOR (Light green), and replace the 1 in change by one by the block ‘pick random 1 to 50’.&lt;br /&gt;
&lt;br /&gt;
At this stage you should have a price and an empty bucket.&lt;br /&gt;
|Step_Picture_00=Financial_literacy_with_Makey_Makey_3.PNG&lt;br /&gt;
}}&lt;br /&gt;
{{ {{tntn|Tuto Step}}&lt;br /&gt;
|Step_Title=Coding: Conditional statements&lt;br /&gt;
|Step_Content=In a “forever” loop (available under CONTROL), pick the condition of you first key.&lt;br /&gt;
&lt;br /&gt;
IF ... pressed THEN&lt;br /&gt;
&lt;br /&gt;
In our example the key will be represented by a coin, so we will use this value to define the extent to which the ‘bucket’ value will increase.&lt;br /&gt;
&lt;br /&gt;
For 1 euro choose the value 1 and for 10 cents of euro (0.10euro) set to 0.1.&lt;br /&gt;
&lt;br /&gt;
To change the value go to Data (orange) and choose ‘change … by 1’, and modify it to have ‘change bucket by (the value of coin)’.&lt;br /&gt;
&lt;br /&gt;
To improve the code add a ‘wait 0.20 seconds’ in each conditional statement.&lt;br /&gt;
&lt;br /&gt;
Repeat the operation for each coin.&lt;br /&gt;
|Step_Picture_00=Financial_literacy_with_Makey_Makey_4.PNG&lt;br /&gt;
|Step_Picture_01=Financial_literacy_with_Makey_Makey_5.PNG&lt;br /&gt;
}}&lt;br /&gt;
{{ {{tntn|Tuto Step}}&lt;br /&gt;
|Step_Title=Coding: finalizing the code&lt;br /&gt;
|Step_Content=Important! to avoid problems you need to add an end to your code. In this example, when the bucket value will be equal to the price, that will mark the end of the code.&lt;br /&gt;
&lt;br /&gt;
We need to add an IF (yellow) and use the Operator (light green) ‘... = ....’ in our case we will add our variables (bucket from Data (orange).&lt;br /&gt;
|Step_Picture_00=Financial_literacy_with_Makey_Makey_6.PNG&lt;br /&gt;
}}&lt;br /&gt;
{{ {{tntn|Tuto Step}}&lt;br /&gt;
|Step_Title=The final result&lt;br /&gt;
|Step_Content=The final code should look like this (see image below).&lt;br /&gt;
|Step_Picture_00=Financial_literacy_with_Makey_Makey_7.PNG&lt;br /&gt;
}}&lt;br /&gt;
{{ {{tntn|Notes}}&lt;br /&gt;
|Notes=This tutorial has been developed as part of the [http://www.digijeunes.com/projets/itech/ I TECH] project, co-financed by the Erasmus + Program of the European Commission. To contact us: info@digijeunes.com&lt;br /&gt;
}}&lt;br /&gt;
{{ {{tntn|Tuto Status}}&lt;br /&gt;
|Complete=Draft&lt;br /&gt;
}}&lt;/div&gt;</summary>
		<author><name>Gameferre2003</name></author>
		
	</entry>
	<entry>
		<id>https://wikifab.org/w/index.php?title=Financial_literacy_with_Makey_Makey&amp;diff=51246</id>
		<title>Financial literacy with Makey Makey</title>
		<link rel="alternate" type="text/html" href="https://wikifab.org/w/index.php?title=Financial_literacy_with_Makey_Makey&amp;diff=51246"/>
		<updated>2018-08-21T13:58:32Z</updated>

		<summary type="html">&lt;p&gt;Gameferre2003 : &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{ {{tntn|Tuto Details}}&lt;br /&gt;
|Main_Picture=Financial_literacy_with_Makey_Makey_1.PNG&lt;br /&gt;
|Licences=Attribution (CC BY)&lt;br /&gt;
|Description=In this tutorial you will learn how to set up an activity on coding based on Scratch and simple financial literacy for kids.&lt;br /&gt;
|Area=Electronics&lt;br /&gt;
|Type=Technique&lt;br /&gt;
|Difficulty=Easy&lt;br /&gt;
|Duration=25&lt;br /&gt;
|Duration-type=minute(s)&lt;br /&gt;
|Cost=25&lt;br /&gt;
|Currency=EUR (€)&lt;br /&gt;
|Tags=scratch, Makey Makey, scratch,, financial literacy, coding&lt;br /&gt;
|SourceLanguage=none&lt;br /&gt;
|Language=en&lt;br /&gt;
|IsTranslation=0&lt;br /&gt;
}}&lt;br /&gt;
{{ {{tntn|Introduction}}&lt;br /&gt;
|Introduction=In this tutorial you will learn how to set up an activity on coding based on Scratch and simple financial literacy for kids.&lt;br /&gt;
}}&lt;br /&gt;
{{ {{tntn|Materials}}&lt;br /&gt;
|Material=1 x DIY makey makey (see [[DIY Makey Makey with Arduino Leonardo|this]] tutorial), or original makey makey&lt;br /&gt;
&lt;br /&gt;
Different coins (10 cents, 20 cents, 50 cents, 1 cent, etc.)&lt;br /&gt;
&lt;br /&gt;
A bunch of alligator clips&lt;br /&gt;
|Tools=1 computer with Scratch (Offline or on-line)&lt;br /&gt;
}}&lt;br /&gt;
{{ {{tntn|Separator}}}}&lt;br /&gt;
{{ {{tntn|Tuto Step}}&lt;br /&gt;
|Step_Title=Connecting the Makey Makey to the computer&lt;br /&gt;
|Step_Content=If it’s your first installation of Makey makey or Arduino Leonardo on Windows or MacOS, just plug the board to your computer and wait for the automatic installation. &lt;br /&gt;
&lt;br /&gt;
(2 minutes maximum).&lt;br /&gt;
&lt;br /&gt;
Next, plug some alligator clips into the board.&lt;br /&gt;
|Step_Picture_00=Financial_literacy_with_Makey_Makey_1.PNG&lt;br /&gt;
|Step_Picture_01=Financial_literacy_with_Makey_Makey_2.PNG&lt;br /&gt;
}}&lt;br /&gt;
{{ {{tntn|Tuto Step}}&lt;br /&gt;
|Step_Title=Coding on Scratch: Declaring variables&lt;br /&gt;
|Step_Content=Let’s get started with the coding.&lt;br /&gt;
&lt;br /&gt;
To declare a variable go to DATA (orange), and click on ‘make a variable’ and give a name to the value. For this exercise you will need two values : 1. ‘price asked’ and 2. ‘bucket’.&lt;br /&gt;
&lt;br /&gt;
Next, pick up two blocks of the type ‘set …. to 0’ add one block per each value (one for bucket and one for price objective) to the code. For the value ‘price asked’ add a block ‘change …. by 1’ and go in OPERATOR (Light green), and replace the 1 in change by one by the block ‘pick random 1 to 50’.&lt;br /&gt;
&lt;br /&gt;
At this stage you should have a price and an empty bucket.&lt;br /&gt;
|Step_Picture_00=Financial_literacy_with_Makey_Makey_3.PNG&lt;br /&gt;
}}&lt;br /&gt;
{{ {{tntn|Tuto Step}}&lt;br /&gt;
|Step_Title=Coding: Conditional statements&lt;br /&gt;
|Step_Content=In a “forever” loop (available under CONTROL), pick the condition of you first key.&lt;br /&gt;
&lt;br /&gt;
IF ... pressed THEN&lt;br /&gt;
&lt;br /&gt;
In our example the key will be represented by a coin, so we will use this value to define the extent to which the ‘bucket’ value will increase.&lt;br /&gt;
&lt;br /&gt;
For 1 euro choose the value 1 and for 10 cents of euro (0.10euro) set to 0.1.&lt;br /&gt;
&lt;br /&gt;
To change the value go to Data (orange) and choose ‘change … by 1’, and modify it to have ‘change bucket by (the value of coin)’.&lt;br /&gt;
&lt;br /&gt;
To improve the code add a ‘wait 0.20 seconds’ in each conditional statement.&lt;br /&gt;
&lt;br /&gt;
Repeat the operation for each coin.&lt;br /&gt;
|Step_Picture_00=Financial_literacy_with_Makey_Makey_4.PNG&lt;br /&gt;
|Step_Picture_01=Financial_literacy_with_Makey_Makey_5.PNG&lt;br /&gt;
}}&lt;br /&gt;
{{ {{tntn|Tuto Step}}&lt;br /&gt;
|Step_Title=Coding: finalizing the code&lt;br /&gt;
|Step_Content=Important! to avoid problems you need to add an end to your code. In this example, when the bucket value will be equal to the price, that will mark the end of the code.&lt;br /&gt;
&lt;br /&gt;
We need to add an IF (yellow) and use the Operator (light green) ‘... = ....’ in our case we will add our variables (bucket from Data (orange).&lt;br /&gt;
|Step_Picture_00=Financial_literacy_with_Makey_Makey_6.PNG&lt;br /&gt;
}}&lt;br /&gt;
{{ {{tntn|Tuto Step}}&lt;br /&gt;
|Step_Title=The final result&lt;br /&gt;
|Step_Content=The final code should look like this (see image below).&lt;br /&gt;
|Step_Picture_00=Financial_literacy_with_Makey_Makey_7.PNG&lt;br /&gt;
}}&lt;br /&gt;
{{ {{tntn|Tuto Step}}&lt;br /&gt;
|Step_Title=&lt;br /&gt;
|Step_Content=&lt;br /&gt;
}}&lt;br /&gt;
{{ {{tntn|Notes}}&lt;br /&gt;
|Notes=This tutorial has been developed as part of the [http://www.digijeunes.com/projets/itech/ I TECH] project, co-financed by the Erasmus + Program of the European Commission. To contact us: info@digijeunes.com&lt;br /&gt;
}}&lt;br /&gt;
{{ {{tntn|Tuto Status}}&lt;br /&gt;
|Complete=Draft&lt;br /&gt;
}}&lt;/div&gt;</summary>
		<author><name>Gameferre2003</name></author>
		
	</entry>
	<entry>
		<id>https://wikifab.org/w/index.php?title=Fichier:Financial_literacy_with_Makey_Makey_2.PNG&amp;diff=51245</id>
		<title>Fichier:Financial literacy with Makey Makey 2.PNG</title>
		<link rel="alternate" type="text/html" href="https://wikifab.org/w/index.php?title=Fichier:Financial_literacy_with_Makey_Makey_2.PNG&amp;diff=51245"/>
		<updated>2018-08-21T13:57:31Z</updated>

		<summary type="html">&lt;p&gt;Gameferre2003 : Gameferre2003 a téléversé une nouvelle version de Fichier:Financial literacy with Makey Makey 2.PNG&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;File uploaded with MsUpload on [[Spécial:AjouterDonnées/Tutorial/Financial_literacy_with_Makey_Makey]]&lt;/div&gt;</summary>
		<author><name>Gameferre2003</name></author>
		
	</entry>
	<entry>
		<id>https://wikifab.org/w/index.php?title=Fichier:Financial_literacy_with_Makey_Makey_1.PNG&amp;diff=51244</id>
		<title>Fichier:Financial literacy with Makey Makey 1.PNG</title>
		<link rel="alternate" type="text/html" href="https://wikifab.org/w/index.php?title=Fichier:Financial_literacy_with_Makey_Makey_1.PNG&amp;diff=51244"/>
		<updated>2018-08-21T13:57:23Z</updated>

		<summary type="html">&lt;p&gt;Gameferre2003 : Gameferre2003 a téléversé une nouvelle version de Fichier:Financial literacy with Makey Makey 1.PNG&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;File uploaded with MsUpload on [[Spécial:AjouterDonnées/Tutorial/Financial_literacy_with_Makey_Makey]]&lt;/div&gt;</summary>
		<author><name>Gameferre2003</name></author>
		
	</entry>
	<entry>
		<id>https://wikifab.org/w/index.php?title=Financial_literacy_with_Makey_Makey&amp;diff=51243</id>
		<title>Financial literacy with Makey Makey</title>
		<link rel="alternate" type="text/html" href="https://wikifab.org/w/index.php?title=Financial_literacy_with_Makey_Makey&amp;diff=51243"/>
		<updated>2018-08-21T13:56:31Z</updated>

		<summary type="html">&lt;p&gt;Gameferre2003 : Page créée avec « {{ {{tntn|Tuto Details}} |SourceLanguage=none |Language=en |IsTranslation=0 |Licences=Attribution (CC BY) |Description=In this tutorial you will learn how to set up an act... »&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{ {{tntn|Tuto Details}}&lt;br /&gt;
|SourceLanguage=none&lt;br /&gt;
|Language=en&lt;br /&gt;
|IsTranslation=0&lt;br /&gt;
|Licences=Attribution (CC BY)&lt;br /&gt;
|Description=In this tutorial you will learn how to set up an activity on coding based on Scratch and simple financial literacy for kids.&lt;br /&gt;
|Area=Electronics&lt;br /&gt;
|Type=Technique&lt;br /&gt;
|Difficulty=Easy&lt;br /&gt;
|Duration=25&lt;br /&gt;
|Duration-type=minute(s)&lt;br /&gt;
|Cost=25&lt;br /&gt;
|Currency=EUR (€)&lt;br /&gt;
|Tags=scratch, Makey Makey, scratch,, financial literacy, coding&lt;br /&gt;
}}&lt;br /&gt;
{{ {{tntn|Introduction}}&lt;br /&gt;
|Introduction=In this tutorial you will learn how to set up an activity on coding based on Scratch and simple financial literacy for kids.&lt;br /&gt;
}}&lt;br /&gt;
{{ {{tntn|Materials}}&lt;br /&gt;
|Step_Picture_00=Financial_literacy_with_Makey_Makey_1.PNG&lt;br /&gt;
|Material=1 x DIY makey makey (see [[DIY Makey Makey with Arduino Leonardo|this]] tutorial), or original makey makey&lt;br /&gt;
&lt;br /&gt;
Different coins (10 cents, 20 cents, 50 cents, 1 cent, etc.)&lt;br /&gt;
&lt;br /&gt;
A bunch of alligator clips&lt;br /&gt;
|Tools=1 computer with Scratch (Offline or on-line)&lt;br /&gt;
}}&lt;br /&gt;
{{ {{tntn|Separator}}}}&lt;br /&gt;
{{ {{tntn|Tuto Step}}&lt;br /&gt;
|Step_Title=Connecting the Makey Makey to the computer&lt;br /&gt;
|Step_Content=If it’s your first installation of Makey makey or Arduino Leonardo on Windows or MacOS, just plug the board to your computer and wait for the automatic installation. &lt;br /&gt;
&lt;br /&gt;
(2 minutes maximum).&lt;br /&gt;
&lt;br /&gt;
Next, plug some alligator clips into the board.&lt;br /&gt;
|Step_Picture_00=Financial_literacy_with_Makey_Makey_1.PNG&lt;br /&gt;
|Step_Picture_01=Financial_literacy_with_Makey_Makey_2.PNG&lt;br /&gt;
}}&lt;br /&gt;
{{ {{tntn|Tuto Step}}&lt;br /&gt;
|Step_Title=Coding on Scratch: Declaring variables&lt;br /&gt;
|Step_Content=Let’s get started with the coding.&lt;br /&gt;
&lt;br /&gt;
To declare a variable go to DATA (orange), and click on ‘make a variable’ and give a name to the value. For this exercise you will need two values : 1. ‘price asked’ and 2. ‘bucket’.&lt;br /&gt;
&lt;br /&gt;
Next, pick up two blocks of the type ‘set …. to 0’ add one block per each value (one for bucket and one for price objective) to the code. For the value ‘price asked’ add a block ‘change …. by 1’ and go in OPERATOR (Light green), and replace the 1 in change by one by the block ‘pick random 1 to 50’.&lt;br /&gt;
&lt;br /&gt;
At this stage you should have a price and an empty bucket.&lt;br /&gt;
|Step_Picture_00=Financial_literacy_with_Makey_Makey_3.PNG&lt;br /&gt;
}}&lt;br /&gt;
{{ {{tntn|Tuto Step}}&lt;br /&gt;
|Step_Title=Coding: Conditional statements&lt;br /&gt;
|Step_Content=In a “forever” loop (available under CONTROL), pick the condition of you first key.&lt;br /&gt;
&lt;br /&gt;
IF ... pressed THEN&lt;br /&gt;
&lt;br /&gt;
In our example the key will be represented by a coin, so we will use this value to define the extent to which the ‘bucket’ value will increase.&lt;br /&gt;
&lt;br /&gt;
For 1 euro choose the value 1 and for 10 cents of euro (0.10euro) set to 0.1.&lt;br /&gt;
&lt;br /&gt;
To change the value go to Data (orange) and choose ‘change … by 1’, and modify it to have ‘change bucket by (the value of coin)’.&lt;br /&gt;
&lt;br /&gt;
To improve the code add a ‘wait 0.20 seconds’ in each conditional statement.&lt;br /&gt;
&lt;br /&gt;
Repeat the operation for each coin.&lt;br /&gt;
|Step_Picture_00=Financial_literacy_with_Makey_Makey_4.PNG&lt;br /&gt;
|Step_Picture_01=Financial_literacy_with_Makey_Makey_5.PNG&lt;br /&gt;
}}&lt;br /&gt;
{{ {{tntn|Tuto Step}}&lt;br /&gt;
|Step_Title=Coding: finalizing the code&lt;br /&gt;
|Step_Content=Important! to avoid problems you need to add an end to your code. In this example, when the bucket value will be equal to the price, that will mark the end of the code.&lt;br /&gt;
&lt;br /&gt;
We need to add an IF (yellow) and use the Operator (light green) ‘... = ....’ in our case we will add our variables (bucket from Data (orange).&lt;br /&gt;
|Step_Picture_00=Financial_literacy_with_Makey_Makey_6.PNG&lt;br /&gt;
}}&lt;br /&gt;
{{ {{tntn|Tuto Step}}&lt;br /&gt;
|Step_Title=The final result&lt;br /&gt;
|Step_Content=The final code should look like this (see image below).&lt;br /&gt;
|Step_Picture_00=Financial_literacy_with_Makey_Makey_7.PNG&lt;br /&gt;
}}&lt;br /&gt;
{{ {{tntn|Tuto Step}}&lt;br /&gt;
|Step_Title=&lt;br /&gt;
|Step_Content=&lt;br /&gt;
}}&lt;br /&gt;
{{ {{tntn|Notes}}&lt;br /&gt;
|Notes=&lt;br /&gt;
}}&lt;br /&gt;
{{ {{tntn|Tuto Status}}&lt;br /&gt;
|Complete=Draft&lt;br /&gt;
}}&lt;/div&gt;</summary>
		<author><name>Gameferre2003</name></author>
		
	</entry>
	<entry>
		<id>https://wikifab.org/w/index.php?title=Fichier:Financial_literacy_with_Makey_Makey_7.PNG&amp;diff=51242</id>
		<title>Fichier:Financial literacy with Makey Makey 7.PNG</title>
		<link rel="alternate" type="text/html" href="https://wikifab.org/w/index.php?title=Fichier:Financial_literacy_with_Makey_Makey_7.PNG&amp;diff=51242"/>
		<updated>2018-08-21T13:56:11Z</updated>

		<summary type="html">&lt;p&gt;Gameferre2003 : File uploaded with MsUpload on Spécial:AjouterDonnées/Tutorial/Financial_literacy_with_Makey_Makey&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;File uploaded with MsUpload on [[Spécial:AjouterDonnées/Tutorial/Financial_literacy_with_Makey_Makey]]&lt;/div&gt;</summary>
		<author><name>Gameferre2003</name></author>
		
	</entry>
	<entry>
		<id>https://wikifab.org/w/index.php?title=Fichier:Financial_literacy_with_Makey_Makey_6.PNG&amp;diff=51241</id>
		<title>Fichier:Financial literacy with Makey Makey 6.PNG</title>
		<link rel="alternate" type="text/html" href="https://wikifab.org/w/index.php?title=Fichier:Financial_literacy_with_Makey_Makey_6.PNG&amp;diff=51241"/>
		<updated>2018-08-21T13:56:05Z</updated>

		<summary type="html">&lt;p&gt;Gameferre2003 : File uploaded with MsUpload on Spécial:AjouterDonnées/Tutorial/Financial_literacy_with_Makey_Makey&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;File uploaded with MsUpload on [[Spécial:AjouterDonnées/Tutorial/Financial_literacy_with_Makey_Makey]]&lt;/div&gt;</summary>
		<author><name>Gameferre2003</name></author>
		
	</entry>
	<entry>
		<id>https://wikifab.org/w/index.php?title=Fichier:Financial_literacy_with_Makey_Makey_5.PNG&amp;diff=51240</id>
		<title>Fichier:Financial literacy with Makey Makey 5.PNG</title>
		<link rel="alternate" type="text/html" href="https://wikifab.org/w/index.php?title=Fichier:Financial_literacy_with_Makey_Makey_5.PNG&amp;diff=51240"/>
		<updated>2018-08-21T13:56:02Z</updated>

		<summary type="html">&lt;p&gt;Gameferre2003 : File uploaded with MsUpload on Spécial:AjouterDonnées/Tutorial/Financial_literacy_with_Makey_Makey&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;File uploaded with MsUpload on [[Spécial:AjouterDonnées/Tutorial/Financial_literacy_with_Makey_Makey]]&lt;/div&gt;</summary>
		<author><name>Gameferre2003</name></author>
		
	</entry>
	<entry>
		<id>https://wikifab.org/w/index.php?title=Fichier:Financial_literacy_with_Makey_Makey_4.PNG&amp;diff=51239</id>
		<title>Fichier:Financial literacy with Makey Makey 4.PNG</title>
		<link rel="alternate" type="text/html" href="https://wikifab.org/w/index.php?title=Fichier:Financial_literacy_with_Makey_Makey_4.PNG&amp;diff=51239"/>
		<updated>2018-08-21T13:55:59Z</updated>

		<summary type="html">&lt;p&gt;Gameferre2003 : File uploaded with MsUpload on Spécial:AjouterDonnées/Tutorial/Financial_literacy_with_Makey_Makey&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;File uploaded with MsUpload on [[Spécial:AjouterDonnées/Tutorial/Financial_literacy_with_Makey_Makey]]&lt;/div&gt;</summary>
		<author><name>Gameferre2003</name></author>
		
	</entry>
	<entry>
		<id>https://wikifab.org/w/index.php?title=Fichier:Financial_literacy_with_Makey_Makey_3.PNG&amp;diff=51238</id>
		<title>Fichier:Financial literacy with Makey Makey 3.PNG</title>
		<link rel="alternate" type="text/html" href="https://wikifab.org/w/index.php?title=Fichier:Financial_literacy_with_Makey_Makey_3.PNG&amp;diff=51238"/>
		<updated>2018-08-21T13:55:11Z</updated>

		<summary type="html">&lt;p&gt;Gameferre2003 : File uploaded with MsUpload on Spécial:AjouterDonnées/Tutorial/Financial_literacy_with_Makey_Makey&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;File uploaded with MsUpload on [[Spécial:AjouterDonnées/Tutorial/Financial_literacy_with_Makey_Makey]]&lt;/div&gt;</summary>
		<author><name>Gameferre2003</name></author>
		
	</entry>
	<entry>
		<id>https://wikifab.org/w/index.php?title=Fichier:Financial_literacy_with_Makey_Makey_2.PNG&amp;diff=51237</id>
		<title>Fichier:Financial literacy with Makey Makey 2.PNG</title>
		<link rel="alternate" type="text/html" href="https://wikifab.org/w/index.php?title=Fichier:Financial_literacy_with_Makey_Makey_2.PNG&amp;diff=51237"/>
		<updated>2018-08-21T13:54:39Z</updated>

		<summary type="html">&lt;p&gt;Gameferre2003 : File uploaded with MsUpload on Spécial:AjouterDonnées/Tutorial/Financial_literacy_with_Makey_Makey&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;File uploaded with MsUpload on [[Spécial:AjouterDonnées/Tutorial/Financial_literacy_with_Makey_Makey]]&lt;/div&gt;</summary>
		<author><name>Gameferre2003</name></author>
		
	</entry>
	<entry>
		<id>https://wikifab.org/w/index.php?title=Fichier:Financial_literacy_with_Makey_Makey_1.PNG&amp;diff=51236</id>
		<title>Fichier:Financial literacy with Makey Makey 1.PNG</title>
		<link rel="alternate" type="text/html" href="https://wikifab.org/w/index.php?title=Fichier:Financial_literacy_with_Makey_Makey_1.PNG&amp;diff=51236"/>
		<updated>2018-08-21T13:54:34Z</updated>

		<summary type="html">&lt;p&gt;Gameferre2003 : Gameferre2003 a téléversé une nouvelle version de Fichier:Financial literacy with Makey Makey 1.PNG&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;File uploaded with MsUpload on [[Spécial:AjouterDonnées/Tutorial/Financial_literacy_with_Makey_Makey]]&lt;/div&gt;</summary>
		<author><name>Gameferre2003</name></author>
		
	</entry>
	<entry>
		<id>https://wikifab.org/w/index.php?title=Fichier:Financial_literacy_with_Makey_Makey_1.PNG&amp;diff=51235</id>
		<title>Fichier:Financial literacy with Makey Makey 1.PNG</title>
		<link rel="alternate" type="text/html" href="https://wikifab.org/w/index.php?title=Fichier:Financial_literacy_with_Makey_Makey_1.PNG&amp;diff=51235"/>
		<updated>2018-08-21T13:54:11Z</updated>

		<summary type="html">&lt;p&gt;Gameferre2003 : File uploaded with MsUpload on Spécial:AjouterDonnées/Tutorial/Financial_literacy_with_Makey_Makey&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;File uploaded with MsUpload on [[Spécial:AjouterDonnées/Tutorial/Financial_literacy_with_Makey_Makey]]&lt;/div&gt;</summary>
		<author><name>Gameferre2003</name></author>
		
	</entry>
	<entry>
		<id>https://wikifab.org/w/index.php?title=Create_a_wooden_pet_that_connects_with_Facebook&amp;diff=51073</id>
		<title>Create a wooden pet that connects with Facebook</title>
		<link rel="alternate" type="text/html" href="https://wikifab.org/w/index.php?title=Create_a_wooden_pet_that_connects_with_Facebook&amp;diff=51073"/>
		<updated>2018-08-20T21:03:18Z</updated>

		<summary type="html">&lt;p&gt;Gameferre2003 : Page créée avec « {{ {{tntn|Tuto Details}} |SourceLanguage=none |Language=en |IsTranslation=0 |Main_Picture=Create_a_wooden_pet_that_connects_with_Facebook_24.PNG |Licences=Attribution (CC... »&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{ {{tntn|Tuto Details}}&lt;br /&gt;
|SourceLanguage=none&lt;br /&gt;
|Language=en&lt;br /&gt;
|IsTranslation=0&lt;br /&gt;
|Main_Picture=Create_a_wooden_pet_that_connects_with_Facebook_24.PNG&lt;br /&gt;
|Licences=Attribution (CC BY)&lt;br /&gt;
|Description=In this tutorial we will create a wooden pet that connects with facebook. It will post a message of your choice on your own timeline whenever its tail is touched.&lt;br /&gt;
|Area=Electronics, Machines and Tools, Robotics&lt;br /&gt;
|Type=Creation&lt;br /&gt;
|Difficulty=Medium&lt;br /&gt;
|Duration=50&lt;br /&gt;
|Duration-type=minute(s)&lt;br /&gt;
|Cost=25&lt;br /&gt;
|Currency=EUR (€)&lt;br /&gt;
|Tags=Internetofthings, adafruit.io, ESP32, facebook&lt;br /&gt;
}}&lt;br /&gt;
{{ {{tntn|Introduction}}&lt;br /&gt;
|Introduction=In this tutorial we will create a wooden pet that connects with facebook. It will post a message of your choice on your own timeline whenever its tail is touched.&lt;br /&gt;
}}&lt;br /&gt;
{{ {{tntn|Materials}}&lt;br /&gt;
|Material=1 x ESP32 board with power cable&lt;br /&gt;
&lt;br /&gt;
4 x jumper wires &lt;br /&gt;
&lt;br /&gt;
1 x breadboard&lt;br /&gt;
&lt;br /&gt;
1 x Led&lt;br /&gt;
&lt;br /&gt;
1 x 250 kohm resistor (or similar)&lt;br /&gt;
|Tools=1 Pc with Arduino IDE installed&lt;br /&gt;
}}&lt;br /&gt;
{{ {{tntn|Separator}}}}&lt;br /&gt;
{{ {{tntn|Tuto Step}}&lt;br /&gt;
|Step_Title=Set up an account on adafruit.io&lt;br /&gt;
|Step_Content=Once you ve set up an account on adafruit.io, go on creating a new Feed.&lt;br /&gt;
&lt;br /&gt;
Create a new feed and name it, for example, “touchsensor”.&lt;br /&gt;
|Step_Picture_00=Create_a_wooden_pet_that_connects_with_Facebook_1.PNG&lt;br /&gt;
|Step_Picture_01=Create_a_wooden_pet_that_connects_with_Facebook_2.PNG&lt;br /&gt;
}}&lt;br /&gt;
{{ {{tntn|Tuto Step}}&lt;br /&gt;
|Step_Title=Install arduino IDE&lt;br /&gt;
|Step_Content=https://www.arduino.cc/en/Main/Software&lt;br /&gt;
}}&lt;br /&gt;
{{ {{tntn|Tuto Step}}&lt;br /&gt;
|Step_Title=Prepare the ESP32 board on your computer&lt;br /&gt;
|Step_Content=Follow the [https://github.com/espressif/arduino-esp32/blob/master/README.md#installation-instructions instructions provided on github] for your OS&lt;br /&gt;
&lt;br /&gt;
F[https://github.com/espressif/arduino-esp32/blob/master/docs/arduino-ide/windows.md or windows]&lt;br /&gt;
&lt;br /&gt;
If you have troubles following the instructions for windows, you may find some help below&lt;br /&gt;
&lt;br /&gt;
To find the Sketch directory, click File &amp;gt; Preferences, on arduino IDE.&lt;br /&gt;
&lt;br /&gt;
The process of cloning existing repository may take a while...&lt;br /&gt;
&lt;br /&gt;
Do not quit until it's done.&lt;br /&gt;
&lt;br /&gt;
Do not shut any pop up window until they shut automatically.&lt;br /&gt;
|Step_Picture_00=Create_a_wooden_pet_that_connects_with_Facebook_3.PNG&lt;br /&gt;
}}&lt;br /&gt;
{{ {{tntn|Tuto Step}}&lt;br /&gt;
|Step_Title=Check that the board is correctly configured&lt;br /&gt;
|Step_Content=Launch Arduino IDE&lt;br /&gt;
&lt;br /&gt;
Go to Tools &amp;gt; Board and select  “ESP32 Dev Module”.&lt;br /&gt;
&lt;br /&gt;
Fetch the Blink example on File &amp;gt; Examples &amp;gt; Basics &amp;gt; Blink.&lt;br /&gt;
&lt;br /&gt;
Upload the code by clicking on the arrow pointing to the right.&lt;br /&gt;
|Step_Picture_00=Create_a_wooden_pet_that_connects_with_Facebook_5.PNG&lt;br /&gt;
|Step_Picture_01=Create_a_wooden_pet_that_connects_with_Facebook_4.PNG&lt;br /&gt;
}}&lt;br /&gt;
{{ {{tntn|Tuto Step}}&lt;br /&gt;
|Step_Title=Wiring the led and the touch sensor to the ESP32&lt;br /&gt;
|Step_Content=We will connect an Led to the board so that we will know when the tail actually gets touched.&lt;br /&gt;
&lt;br /&gt;
Connect a male/female jumper wire to D4 of the board. D4 is by default connected to the internal touch sensor.&lt;br /&gt;
&lt;br /&gt;
Connect D2 (by default connected to the board’s internal led) to the positive leg of the Led, using a male to female jumper wire.&lt;br /&gt;
&lt;br /&gt;
Connect the negative leg of the Led to GND on the board, using a male/female jumper wire&lt;br /&gt;
&lt;br /&gt;
If needed, use some tape to secure the jumper wires to the Led.&lt;br /&gt;
|Step_Picture_00=Create_a_wooden_pet_that_connects_with_Facebook_6.PNG&lt;br /&gt;
}}&lt;br /&gt;
{{ {{tntn|Tuto Step}}&lt;br /&gt;
|Step_Title=Place the electronic inside the pet&lt;br /&gt;
|Step_Content=The Wooden pet needs to be laser cut. You can download the cutting pattern for laser cutter [https://drive.google.com/file/d/1AHXk4zxDN0U7YNiMKVyBzvakh8pY8MH9/view?usp=sharing here].&lt;br /&gt;
&lt;br /&gt;
Place all the parts inside the pet, and connect the internal touch sensor to the aluminum tail.&lt;br /&gt;
|Step_Picture_00=Create_a_wooden_pet_that_connects_with_Facebook_8.PNG&lt;br /&gt;
|Step_Picture_01=Create_a_wooden_pet_that_connects_with_Facebook_7.PNG&lt;br /&gt;
}}&lt;br /&gt;
{{ {{tntn|Tuto Step}}&lt;br /&gt;
|Step_Title=Programming on tuniot&lt;br /&gt;
|Step_Content=On [http://easycoding.tn/esp32/demos/code/ tuniot], we will use the blocks available to create a code for the ESP32.&lt;br /&gt;
&lt;br /&gt;
Complete the fields “ssid” and “password” with the name of your wi-fi connection and its password respectively&lt;br /&gt;
&lt;br /&gt;
The “User Name” and “Key” are available on your adafruit.io page (see image below)&lt;br /&gt;
|Step_Picture_00=Create_a_wooden_pet_that_connects_with_Facebook_10.PNG&lt;br /&gt;
|Step_Picture_01=Create_a_wooden_pet_that_connects_with_Facebook_9.PNG&lt;br /&gt;
}}&lt;br /&gt;
{{ {{tntn|Tuto Step}}&lt;br /&gt;
|Step_Title=Install Adafruit_MQTT.h and Adafruit_MQTT_Client.h libraries on Arduino IDE&lt;br /&gt;
|Step_Content=Sketch &amp;gt; Include Library &amp;gt; Manage Libraries…&lt;br /&gt;
|Step_Picture_00=Create_a_wooden_pet_that_connects_with_Facebook_11.PNG&lt;br /&gt;
}}&lt;br /&gt;
{{ {{tntn|Tuto Step}}&lt;br /&gt;
|Step_Title=Programming on arduino IDE&lt;br /&gt;
|Step_Content=To upload the code on Arduino IDE, click on the “copy arduino code into clipboard” button.&lt;br /&gt;
&lt;br /&gt;
Then paste the code onto Arduino IDE, and upload it to the ESP32.&lt;br /&gt;
&lt;br /&gt;
if you click on Serial Monitor (top right of the Arduino IDE screen), you should see the value recorded by the touch sensor (see image below).&lt;br /&gt;
&lt;br /&gt;
It means that your ESP32 is connected to the internet, and that it’s sending the value recorded by the internal touch sensor on-line, on adafruit.io&lt;br /&gt;
|Step_Picture_00=Create_a_wooden_pet_that_connects_with_Facebook_12.PNG&lt;br /&gt;
|Step_Picture_01=Create_a_wooden_pet_that_connects_with_Facebook_13.PNG&lt;br /&gt;
}}&lt;br /&gt;
{{ {{tntn|Tuto Step}}&lt;br /&gt;
|Step_Title=Create an applet on IFTTT&lt;br /&gt;
|Step_Content=Click on My Applets.&lt;br /&gt;
&lt;br /&gt;
Choose New Applet.&lt;br /&gt;
&lt;br /&gt;
Click on THIS (see image below).&lt;br /&gt;
&lt;br /&gt;
Search for Adafruit.&lt;br /&gt;
&lt;br /&gt;
Choose Monitor a feed on Adafruit IO.&lt;br /&gt;
&lt;br /&gt;
Configure it as follows (see image below)&lt;br /&gt;
&lt;br /&gt;
And Click on Create trigger.&lt;br /&gt;
|Step_Picture_00=Create_a_wooden_pet_that_connects_with_Facebook_17.PNG&lt;br /&gt;
|Step_Picture_01=Create_a_wooden_pet_that_connects_with_Facebook_16.PNG&lt;br /&gt;
|Step_Picture_02=Create_a_wooden_pet_that_connects_with_Facebook_15.PNG&lt;br /&gt;
|Step_Picture_03=Create_a_wooden_pet_that_connects_with_Facebook_14.PNG&lt;br /&gt;
|Step_Picture_04=Create_a_wooden_pet_that_connects_with_Facebook_19.PNG&lt;br /&gt;
|Step_Picture_05=Create_a_wooden_pet_that_connects_with_Facebook_18.PNG&lt;br /&gt;
}}&lt;br /&gt;
{{ {{tntn|Tuto Step}}&lt;br /&gt;
|Step_Title=Complete the applet on IFTTT&lt;br /&gt;
|Step_Content=Click on THAT&lt;br /&gt;
&lt;br /&gt;
Choose Facebook.&lt;br /&gt;
&lt;br /&gt;
Choose Create a status message.&lt;br /&gt;
&lt;br /&gt;
Type your message and click on Create action.&lt;br /&gt;
&lt;br /&gt;
In this case, the message that will be posted on your facebook timeline is “Don’t touch my tail!”&lt;br /&gt;
|Step_Picture_00=Create_a_wooden_pet_that_connects_with_Facebook_20.PNG&lt;br /&gt;
|Step_Picture_01=Create_a_wooden_pet_that_connects_with_Facebook_24.PNG&lt;br /&gt;
|Step_Picture_02=Create_a_wooden_pet_that_connects_with_Facebook_23.PNG&lt;br /&gt;
|Step_Picture_03=Create_a_wooden_pet_that_connects_with_Facebook_22.PNG&lt;br /&gt;
|Step_Picture_04=Create_a_wooden_pet_that_connects_with_Facebook_21.PNG&lt;br /&gt;
}}&lt;br /&gt;
{{ {{tntn|Notes}}&lt;br /&gt;
|Notes=This tutorial has been developed as part of the [http://www.digijeunes.com/projets/itech/ I TECH] project, co-financed by the Erasmus + program of the European Commission. For more info contact us on info@digijeunes.com.&lt;br /&gt;
}}&lt;br /&gt;
{{ {{tntn|Tuto Status}}&lt;br /&gt;
|Complete=Draft&lt;br /&gt;
}}&lt;/div&gt;</summary>
		<author><name>Gameferre2003</name></author>
		
	</entry>
	<entry>
		<id>https://wikifab.org/w/index.php?title=Fichier:Create_a_wooden_pet_that_connects_with_Facebook_21.PNG&amp;diff=51072</id>
		<title>Fichier:Create a wooden pet that connects with Facebook 21.PNG</title>
		<link rel="alternate" type="text/html" href="https://wikifab.org/w/index.php?title=Fichier:Create_a_wooden_pet_that_connects_with_Facebook_21.PNG&amp;diff=51072"/>
		<updated>2018-08-20T21:00:59Z</updated>

		<summary type="html">&lt;p&gt;Gameferre2003 : File uploaded with MsUpload on Spécial:AjouterDonnées/Tutorial/Create_a_wooden_pet_that_connects_with_Facebook&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;File uploaded with MsUpload on [[Spécial:AjouterDonnées/Tutorial/Create_a_wooden_pet_that_connects_with_Facebook]]&lt;/div&gt;</summary>
		<author><name>Gameferre2003</name></author>
		
	</entry>
	<entry>
		<id>https://wikifab.org/w/index.php?title=Fichier:Create_a_wooden_pet_that_connects_with_Facebook_22.PNG&amp;diff=51071</id>
		<title>Fichier:Create a wooden pet that connects with Facebook 22.PNG</title>
		<link rel="alternate" type="text/html" href="https://wikifab.org/w/index.php?title=Fichier:Create_a_wooden_pet_that_connects_with_Facebook_22.PNG&amp;diff=51071"/>
		<updated>2018-08-20T21:00:56Z</updated>

		<summary type="html">&lt;p&gt;Gameferre2003 : File uploaded with MsUpload on Spécial:AjouterDonnées/Tutorial/Create_a_wooden_pet_that_connects_with_Facebook&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;File uploaded with MsUpload on [[Spécial:AjouterDonnées/Tutorial/Create_a_wooden_pet_that_connects_with_Facebook]]&lt;/div&gt;</summary>
		<author><name>Gameferre2003</name></author>
		
	</entry>
	<entry>
		<id>https://wikifab.org/w/index.php?title=Fichier:Create_a_wooden_pet_that_connects_with_Facebook_23.PNG&amp;diff=51070</id>
		<title>Fichier:Create a wooden pet that connects with Facebook 23.PNG</title>
		<link rel="alternate" type="text/html" href="https://wikifab.org/w/index.php?title=Fichier:Create_a_wooden_pet_that_connects_with_Facebook_23.PNG&amp;diff=51070"/>
		<updated>2018-08-20T21:00:53Z</updated>

		<summary type="html">&lt;p&gt;Gameferre2003 : File uploaded with MsUpload on Spécial:AjouterDonnées/Tutorial/Create_a_wooden_pet_that_connects_with_Facebook&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;File uploaded with MsUpload on [[Spécial:AjouterDonnées/Tutorial/Create_a_wooden_pet_that_connects_with_Facebook]]&lt;/div&gt;</summary>
		<author><name>Gameferre2003</name></author>
		
	</entry>
	<entry>
		<id>https://wikifab.org/w/index.php?title=Fichier:Create_a_wooden_pet_that_connects_with_Facebook_24.PNG&amp;diff=51069</id>
		<title>Fichier:Create a wooden pet that connects with Facebook 24.PNG</title>
		<link rel="alternate" type="text/html" href="https://wikifab.org/w/index.php?title=Fichier:Create_a_wooden_pet_that_connects_with_Facebook_24.PNG&amp;diff=51069"/>
		<updated>2018-08-20T21:00:50Z</updated>

		<summary type="html">&lt;p&gt;Gameferre2003 : Gameferre2003 a téléversé une nouvelle version de Fichier:Create a wooden pet that connects with Facebook 24.PNG&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;File uploaded with MsUpload on [[Spécial:AjouterDonnées/Tutorial/Create_a_wooden_pet_that_connects_with_Facebook]]&lt;/div&gt;</summary>
		<author><name>Gameferre2003</name></author>
		
	</entry>
	<entry>
		<id>https://wikifab.org/w/index.php?title=Fichier:Create_a_wooden_pet_that_connects_with_Facebook_20.PNG&amp;diff=51068</id>
		<title>Fichier:Create a wooden pet that connects with Facebook 20.PNG</title>
		<link rel="alternate" type="text/html" href="https://wikifab.org/w/index.php?title=Fichier:Create_a_wooden_pet_that_connects_with_Facebook_20.PNG&amp;diff=51068"/>
		<updated>2018-08-20T21:00:46Z</updated>

		<summary type="html">&lt;p&gt;Gameferre2003 : File uploaded with MsUpload on Spécial:AjouterDonnées/Tutorial/Create_a_wooden_pet_that_connects_with_Facebook&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;File uploaded with MsUpload on [[Spécial:AjouterDonnées/Tutorial/Create_a_wooden_pet_that_connects_with_Facebook]]&lt;/div&gt;</summary>
		<author><name>Gameferre2003</name></author>
		
	</entry>
	<entry>
		<id>https://wikifab.org/w/index.php?title=Fichier:Create_a_wooden_pet_that_connects_with_Facebook_18.PNG&amp;diff=51067</id>
		<title>Fichier:Create a wooden pet that connects with Facebook 18.PNG</title>
		<link rel="alternate" type="text/html" href="https://wikifab.org/w/index.php?title=Fichier:Create_a_wooden_pet_that_connects_with_Facebook_18.PNG&amp;diff=51067"/>
		<updated>2018-08-20T20:59:27Z</updated>

		<summary type="html">&lt;p&gt;Gameferre2003 : File uploaded with MsUpload on Spécial:AjouterDonnées/Tutorial/Create_a_wooden_pet_that_connects_with_Facebook&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;File uploaded with MsUpload on [[Spécial:AjouterDonnées/Tutorial/Create_a_wooden_pet_that_connects_with_Facebook]]&lt;/div&gt;</summary>
		<author><name>Gameferre2003</name></author>
		
	</entry>
	<entry>
		<id>https://wikifab.org/w/index.php?title=Fichier:Create_a_wooden_pet_that_connects_with_Facebook_19.PNG&amp;diff=51066</id>
		<title>Fichier:Create a wooden pet that connects with Facebook 19.PNG</title>
		<link rel="alternate" type="text/html" href="https://wikifab.org/w/index.php?title=Fichier:Create_a_wooden_pet_that_connects_with_Facebook_19.PNG&amp;diff=51066"/>
		<updated>2018-08-20T20:59:24Z</updated>

		<summary type="html">&lt;p&gt;Gameferre2003 : File uploaded with MsUpload on Spécial:AjouterDonnées/Tutorial/Create_a_wooden_pet_that_connects_with_Facebook&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;File uploaded with MsUpload on [[Spécial:AjouterDonnées/Tutorial/Create_a_wooden_pet_that_connects_with_Facebook]]&lt;/div&gt;</summary>
		<author><name>Gameferre2003</name></author>
		
	</entry>
	<entry>
		<id>https://wikifab.org/w/index.php?title=Fichier:Create_a_wooden_pet_that_connects_with_Facebook_14.PNG&amp;diff=51065</id>
		<title>Fichier:Create a wooden pet that connects with Facebook 14.PNG</title>
		<link rel="alternate" type="text/html" href="https://wikifab.org/w/index.php?title=Fichier:Create_a_wooden_pet_that_connects_with_Facebook_14.PNG&amp;diff=51065"/>
		<updated>2018-08-20T20:59:21Z</updated>

		<summary type="html">&lt;p&gt;Gameferre2003 : File uploaded with MsUpload on Spécial:AjouterDonnées/Tutorial/Create_a_wooden_pet_that_connects_with_Facebook&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;File uploaded with MsUpload on [[Spécial:AjouterDonnées/Tutorial/Create_a_wooden_pet_that_connects_with_Facebook]]&lt;/div&gt;</summary>
		<author><name>Gameferre2003</name></author>
		
	</entry>
	<entry>
		<id>https://wikifab.org/w/index.php?title=Fichier:Create_a_wooden_pet_that_connects_with_Facebook_15.PNG&amp;diff=51064</id>
		<title>Fichier:Create a wooden pet that connects with Facebook 15.PNG</title>
		<link rel="alternate" type="text/html" href="https://wikifab.org/w/index.php?title=Fichier:Create_a_wooden_pet_that_connects_with_Facebook_15.PNG&amp;diff=51064"/>
		<updated>2018-08-20T20:59:18Z</updated>

		<summary type="html">&lt;p&gt;Gameferre2003 : File uploaded with MsUpload on Spécial:AjouterDonnées/Tutorial/Create_a_wooden_pet_that_connects_with_Facebook&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;File uploaded with MsUpload on [[Spécial:AjouterDonnées/Tutorial/Create_a_wooden_pet_that_connects_with_Facebook]]&lt;/div&gt;</summary>
		<author><name>Gameferre2003</name></author>
		
	</entry>
	<entry>
		<id>https://wikifab.org/w/index.php?title=Fichier:Create_a_wooden_pet_that_connects_with_Facebook_16.PNG&amp;diff=51063</id>
		<title>Fichier:Create a wooden pet that connects with Facebook 16.PNG</title>
		<link rel="alternate" type="text/html" href="https://wikifab.org/w/index.php?title=Fichier:Create_a_wooden_pet_that_connects_with_Facebook_16.PNG&amp;diff=51063"/>
		<updated>2018-08-20T20:59:14Z</updated>

		<summary type="html">&lt;p&gt;Gameferre2003 : File uploaded with MsUpload on Spécial:AjouterDonnées/Tutorial/Create_a_wooden_pet_that_connects_with_Facebook&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;File uploaded with MsUpload on [[Spécial:AjouterDonnées/Tutorial/Create_a_wooden_pet_that_connects_with_Facebook]]&lt;/div&gt;</summary>
		<author><name>Gameferre2003</name></author>
		
	</entry>
	<entry>
		<id>https://wikifab.org/w/index.php?title=Fichier:Create_a_wooden_pet_that_connects_with_Facebook_17.PNG&amp;diff=51062</id>
		<title>Fichier:Create a wooden pet that connects with Facebook 17.PNG</title>
		<link rel="alternate" type="text/html" href="https://wikifab.org/w/index.php?title=Fichier:Create_a_wooden_pet_that_connects_with_Facebook_17.PNG&amp;diff=51062"/>
		<updated>2018-08-20T20:59:12Z</updated>

		<summary type="html">&lt;p&gt;Gameferre2003 : File uploaded with MsUpload on Spécial:AjouterDonnées/Tutorial/Create_a_wooden_pet_that_connects_with_Facebook&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;File uploaded with MsUpload on [[Spécial:AjouterDonnées/Tutorial/Create_a_wooden_pet_that_connects_with_Facebook]]&lt;/div&gt;</summary>
		<author><name>Gameferre2003</name></author>
		
	</entry>
	<entry>
		<id>https://wikifab.org/w/index.php?title=Fichier:Create_a_wooden_pet_that_connects_with_Facebook_13.PNG&amp;diff=51061</id>
		<title>Fichier:Create a wooden pet that connects with Facebook 13.PNG</title>
		<link rel="alternate" type="text/html" href="https://wikifab.org/w/index.php?title=Fichier:Create_a_wooden_pet_that_connects_with_Facebook_13.PNG&amp;diff=51061"/>
		<updated>2018-08-20T20:58:50Z</updated>

		<summary type="html">&lt;p&gt;Gameferre2003 : File uploaded with MsUpload on Spécial:AjouterDonnées/Tutorial/Create_a_wooden_pet_that_connects_with_Facebook&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;File uploaded with MsUpload on [[Spécial:AjouterDonnées/Tutorial/Create_a_wooden_pet_that_connects_with_Facebook]]&lt;/div&gt;</summary>
		<author><name>Gameferre2003</name></author>
		
	</entry>
	<entry>
		<id>https://wikifab.org/w/index.php?title=Fichier:Create_a_wooden_pet_that_connects_with_Facebook_12.PNG&amp;diff=51060</id>
		<title>Fichier:Create a wooden pet that connects with Facebook 12.PNG</title>
		<link rel="alternate" type="text/html" href="https://wikifab.org/w/index.php?title=Fichier:Create_a_wooden_pet_that_connects_with_Facebook_12.PNG&amp;diff=51060"/>
		<updated>2018-08-20T20:58:38Z</updated>

		<summary type="html">&lt;p&gt;Gameferre2003 : File uploaded with MsUpload on Spécial:AjouterDonnées/Tutorial/Create_a_wooden_pet_that_connects_with_Facebook&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;File uploaded with MsUpload on [[Spécial:AjouterDonnées/Tutorial/Create_a_wooden_pet_that_connects_with_Facebook]]&lt;/div&gt;</summary>
		<author><name>Gameferre2003</name></author>
		
	</entry>
	<entry>
		<id>https://wikifab.org/w/index.php?title=Fichier:Create_a_wooden_pet_that_connects_with_Facebook_11.PNG&amp;diff=51059</id>
		<title>Fichier:Create a wooden pet that connects with Facebook 11.PNG</title>
		<link rel="alternate" type="text/html" href="https://wikifab.org/w/index.php?title=Fichier:Create_a_wooden_pet_that_connects_with_Facebook_11.PNG&amp;diff=51059"/>
		<updated>2018-08-20T20:58:35Z</updated>

		<summary type="html">&lt;p&gt;Gameferre2003 : File uploaded with MsUpload on Spécial:AjouterDonnées/Tutorial/Create_a_wooden_pet_that_connects_with_Facebook&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;File uploaded with MsUpload on [[Spécial:AjouterDonnées/Tutorial/Create_a_wooden_pet_that_connects_with_Facebook]]&lt;/div&gt;</summary>
		<author><name>Gameferre2003</name></author>
		
	</entry>
	<entry>
		<id>https://wikifab.org/w/index.php?title=Fichier:Create_a_wooden_pet_that_connects_with_Facebook_9.PNG&amp;diff=51058</id>
		<title>Fichier:Create a wooden pet that connects with Facebook 9.PNG</title>
		<link rel="alternate" type="text/html" href="https://wikifab.org/w/index.php?title=Fichier:Create_a_wooden_pet_that_connects_with_Facebook_9.PNG&amp;diff=51058"/>
		<updated>2018-08-20T20:58:32Z</updated>

		<summary type="html">&lt;p&gt;Gameferre2003 : File uploaded with MsUpload on Spécial:AjouterDonnées/Tutorial/Create_a_wooden_pet_that_connects_with_Facebook&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;File uploaded with MsUpload on [[Spécial:AjouterDonnées/Tutorial/Create_a_wooden_pet_that_connects_with_Facebook]]&lt;/div&gt;</summary>
		<author><name>Gameferre2003</name></author>
		
	</entry>
	<entry>
		<id>https://wikifab.org/w/index.php?title=Fichier:Create_a_wooden_pet_that_connects_with_Facebook_10.PNG&amp;diff=51057</id>
		<title>Fichier:Create a wooden pet that connects with Facebook 10.PNG</title>
		<link rel="alternate" type="text/html" href="https://wikifab.org/w/index.php?title=Fichier:Create_a_wooden_pet_that_connects_with_Facebook_10.PNG&amp;diff=51057"/>
		<updated>2018-08-20T20:58:28Z</updated>

		<summary type="html">&lt;p&gt;Gameferre2003 : File uploaded with MsUpload on Spécial:AjouterDonnées/Tutorial/Create_a_wooden_pet_that_connects_with_Facebook&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;File uploaded with MsUpload on [[Spécial:AjouterDonnées/Tutorial/Create_a_wooden_pet_that_connects_with_Facebook]]&lt;/div&gt;</summary>
		<author><name>Gameferre2003</name></author>
		
	</entry>
	<entry>
		<id>https://wikifab.org/w/index.php?title=Fichier:Create_a_wooden_pet_that_connects_with_Facebook_7.PNG&amp;diff=51056</id>
		<title>Fichier:Create a wooden pet that connects with Facebook 7.PNG</title>
		<link rel="alternate" type="text/html" href="https://wikifab.org/w/index.php?title=Fichier:Create_a_wooden_pet_that_connects_with_Facebook_7.PNG&amp;diff=51056"/>
		<updated>2018-08-20T20:58:25Z</updated>

		<summary type="html">&lt;p&gt;Gameferre2003 : Gameferre2003 a téléversé une nouvelle version de Fichier:Create a wooden pet that connects with Facebook 7.PNG&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;File uploaded with MsUpload on [[Spécial:AjouterDonnées/Tutorial/Create_a_wooden_pet_that_connects_with_Facebook]]&lt;/div&gt;</summary>
		<author><name>Gameferre2003</name></author>
		
	</entry>
	<entry>
		<id>https://wikifab.org/w/index.php?title=Fichier:Create_a_wooden_pet_that_connects_with_Facebook_8.PNG&amp;diff=51055</id>
		<title>Fichier:Create a wooden pet that connects with Facebook 8.PNG</title>
		<link rel="alternate" type="text/html" href="https://wikifab.org/w/index.php?title=Fichier:Create_a_wooden_pet_that_connects_with_Facebook_8.PNG&amp;diff=51055"/>
		<updated>2018-08-20T20:58:16Z</updated>

		<summary type="html">&lt;p&gt;Gameferre2003 : Gameferre2003 a téléversé une nouvelle version de Fichier:Create a wooden pet that connects with Facebook 8.PNG&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;File uploaded with MsUpload on [[Spécial:AjouterDonnées/Tutorial/Create_a_wooden_pet_that_connects_with_Facebook]]&lt;/div&gt;</summary>
		<author><name>Gameferre2003</name></author>
		
	</entry>
	<entry>
		<id>https://wikifab.org/w/index.php?title=Fichier:Create_a_wooden_pet_that_connects_with_Facebook_6.PNG&amp;diff=51054</id>
		<title>Fichier:Create a wooden pet that connects with Facebook 6.PNG</title>
		<link rel="alternate" type="text/html" href="https://wikifab.org/w/index.php?title=Fichier:Create_a_wooden_pet_that_connects_with_Facebook_6.PNG&amp;diff=51054"/>
		<updated>2018-08-20T20:57:53Z</updated>

		<summary type="html">&lt;p&gt;Gameferre2003 : File uploaded with MsUpload on Spécial:AjouterDonnées/Tutorial/Create_a_wooden_pet_that_connects_with_Facebook&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;File uploaded with MsUpload on [[Spécial:AjouterDonnées/Tutorial/Create_a_wooden_pet_that_connects_with_Facebook]]&lt;/div&gt;</summary>
		<author><name>Gameferre2003</name></author>
		
	</entry>
	<entry>
		<id>https://wikifab.org/w/index.php?title=Fichier:Create_a_wooden_pet_that_connects_with_Facebook_7.PNG&amp;diff=51053</id>
		<title>Fichier:Create a wooden pet that connects with Facebook 7.PNG</title>
		<link rel="alternate" type="text/html" href="https://wikifab.org/w/index.php?title=Fichier:Create_a_wooden_pet_that_connects_with_Facebook_7.PNG&amp;diff=51053"/>
		<updated>2018-08-20T20:57:42Z</updated>

		<summary type="html">&lt;p&gt;Gameferre2003 : File uploaded with MsUpload on Spécial:AjouterDonnées/Tutorial/Create_a_wooden_pet_that_connects_with_Facebook&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;File uploaded with MsUpload on [[Spécial:AjouterDonnées/Tutorial/Create_a_wooden_pet_that_connects_with_Facebook]]&lt;/div&gt;</summary>
		<author><name>Gameferre2003</name></author>
		
	</entry>
	<entry>
		<id>https://wikifab.org/w/index.php?title=Fichier:Create_a_wooden_pet_that_connects_with_Facebook_8.PNG&amp;diff=51052</id>
		<title>Fichier:Create a wooden pet that connects with Facebook 8.PNG</title>
		<link rel="alternate" type="text/html" href="https://wikifab.org/w/index.php?title=Fichier:Create_a_wooden_pet_that_connects_with_Facebook_8.PNG&amp;diff=51052"/>
		<updated>2018-08-20T20:57:35Z</updated>

		<summary type="html">&lt;p&gt;Gameferre2003 : File uploaded with MsUpload on Spécial:AjouterDonnées/Tutorial/Create_a_wooden_pet_that_connects_with_Facebook&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;File uploaded with MsUpload on [[Spécial:AjouterDonnées/Tutorial/Create_a_wooden_pet_that_connects_with_Facebook]]&lt;/div&gt;</summary>
		<author><name>Gameferre2003</name></author>
		
	</entry>
	<entry>
		<id>https://wikifab.org/w/index.php?title=Fichier:Create_a_wooden_pet_that_connects_with_Facebook_4.PNG&amp;diff=51051</id>
		<title>Fichier:Create a wooden pet that connects with Facebook 4.PNG</title>
		<link rel="alternate" type="text/html" href="https://wikifab.org/w/index.php?title=Fichier:Create_a_wooden_pet_that_connects_with_Facebook_4.PNG&amp;diff=51051"/>
		<updated>2018-08-20T20:57:27Z</updated>

		<summary type="html">&lt;p&gt;Gameferre2003 : File uploaded with MsUpload on Spécial:AjouterDonnées/Tutorial/Create_a_wooden_pet_that_connects_with_Facebook&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;File uploaded with MsUpload on [[Spécial:AjouterDonnées/Tutorial/Create_a_wooden_pet_that_connects_with_Facebook]]&lt;/div&gt;</summary>
		<author><name>Gameferre2003</name></author>
		
	</entry>
	<entry>
		<id>https://wikifab.org/w/index.php?title=Fichier:Create_a_wooden_pet_that_connects_with_Facebook_5.PNG&amp;diff=51050</id>
		<title>Fichier:Create a wooden pet that connects with Facebook 5.PNG</title>
		<link rel="alternate" type="text/html" href="https://wikifab.org/w/index.php?title=Fichier:Create_a_wooden_pet_that_connects_with_Facebook_5.PNG&amp;diff=51050"/>
		<updated>2018-08-20T20:57:23Z</updated>

		<summary type="html">&lt;p&gt;Gameferre2003 : File uploaded with MsUpload on Spécial:AjouterDonnées/Tutorial/Create_a_wooden_pet_that_connects_with_Facebook&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;File uploaded with MsUpload on [[Spécial:AjouterDonnées/Tutorial/Create_a_wooden_pet_that_connects_with_Facebook]]&lt;/div&gt;</summary>
		<author><name>Gameferre2003</name></author>
		
	</entry>
	<entry>
		<id>https://wikifab.org/w/index.php?title=Fichier:Create_a_wooden_pet_that_connects_with_Facebook_3.PNG&amp;diff=51049</id>
		<title>Fichier:Create a wooden pet that connects with Facebook 3.PNG</title>
		<link rel="alternate" type="text/html" href="https://wikifab.org/w/index.php?title=Fichier:Create_a_wooden_pet_that_connects_with_Facebook_3.PNG&amp;diff=51049"/>
		<updated>2018-08-20T20:57:08Z</updated>

		<summary type="html">&lt;p&gt;Gameferre2003 : File uploaded with MsUpload on Spécial:AjouterDonnées/Tutorial/Create_a_wooden_pet_that_connects_with_Facebook&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;File uploaded with MsUpload on [[Spécial:AjouterDonnées/Tutorial/Create_a_wooden_pet_that_connects_with_Facebook]]&lt;/div&gt;</summary>
		<author><name>Gameferre2003</name></author>
		
	</entry>
	<entry>
		<id>https://wikifab.org/w/index.php?title=Fichier:Create_a_wooden_pet_that_connects_with_Facebook_2.PNG&amp;diff=51048</id>
		<title>Fichier:Create a wooden pet that connects with Facebook 2.PNG</title>
		<link rel="alternate" type="text/html" href="https://wikifab.org/w/index.php?title=Fichier:Create_a_wooden_pet_that_connects_with_Facebook_2.PNG&amp;diff=51048"/>
		<updated>2018-08-20T20:56:56Z</updated>

		<summary type="html">&lt;p&gt;Gameferre2003 : File uploaded with MsUpload on Spécial:AjouterDonnées/Tutorial/Create_a_wooden_pet_that_connects_with_Facebook&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;File uploaded with MsUpload on [[Spécial:AjouterDonnées/Tutorial/Create_a_wooden_pet_that_connects_with_Facebook]]&lt;/div&gt;</summary>
		<author><name>Gameferre2003</name></author>
		
	</entry>
	<entry>
		<id>https://wikifab.org/w/index.php?title=Fichier:Create_a_wooden_pet_that_connects_with_Facebook_1.PNG&amp;diff=51047</id>
		<title>Fichier:Create a wooden pet that connects with Facebook 1.PNG</title>
		<link rel="alternate" type="text/html" href="https://wikifab.org/w/index.php?title=Fichier:Create_a_wooden_pet_that_connects_with_Facebook_1.PNG&amp;diff=51047"/>
		<updated>2018-08-20T20:56:52Z</updated>

		<summary type="html">&lt;p&gt;Gameferre2003 : File uploaded with MsUpload on Spécial:AjouterDonnées/Tutorial/Create_a_wooden_pet_that_connects_with_Facebook&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;File uploaded with MsUpload on [[Spécial:AjouterDonnées/Tutorial/Create_a_wooden_pet_that_connects_with_Facebook]]&lt;/div&gt;</summary>
		<author><name>Gameferre2003</name></author>
		
	</entry>
	<entry>
		<id>https://wikifab.org/w/index.php?title=Fichier:Create_a_wooden_pet_that_connects_with_Facebook_24.PNG&amp;diff=51046</id>
		<title>Fichier:Create a wooden pet that connects with Facebook 24.PNG</title>
		<link rel="alternate" type="text/html" href="https://wikifab.org/w/index.php?title=Fichier:Create_a_wooden_pet_that_connects_with_Facebook_24.PNG&amp;diff=51046"/>
		<updated>2018-08-20T20:56:28Z</updated>

		<summary type="html">&lt;p&gt;Gameferre2003 : File uploaded with MsUpload on Spécial:AjouterDonnées/Tutorial/Create_a_wooden_pet_that_connects_with_Facebook&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;File uploaded with MsUpload on [[Spécial:AjouterDonnées/Tutorial/Create_a_wooden_pet_that_connects_with_Facebook]]&lt;/div&gt;</summary>
		<author><name>Gameferre2003</name></author>
		
	</entry>
	<entry>
		<id>https://wikifab.org/w/index.php?title=Electronic_textile_bag&amp;diff=51045</id>
		<title>Electronic textile bag</title>
		<link rel="alternate" type="text/html" href="https://wikifab.org/w/index.php?title=Electronic_textile_bag&amp;diff=51045"/>
		<updated>2018-08-20T19:06:21Z</updated>

		<summary type="html">&lt;p&gt;Gameferre2003 : Page créée avec « {{ {{tntn|Tuto Details}} |SourceLanguage=none |Language=en |IsTranslation=0 |Main_Picture=Electronic_textile_bag_1.PNG |Licences=Attribution (CC BY) |Description=In this t... »&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{ {{tntn|Tuto Details}}&lt;br /&gt;
|SourceLanguage=none&lt;br /&gt;
|Language=en&lt;br /&gt;
|IsTranslation=0&lt;br /&gt;
|Main_Picture=Electronic_textile_bag_1.PNG&lt;br /&gt;
|Licences=Attribution (CC BY)&lt;br /&gt;
|Description=In this tutorial, you will learn how to create an electronic textile bag, to be used in the context of educational activities on electronics and coding.&lt;br /&gt;
|Area=Clothing and Accessories, Electronics, Machines and Tools, Robotics&lt;br /&gt;
|Type=Creation&lt;br /&gt;
|Difficulty=Medium&lt;br /&gt;
|Duration=6&lt;br /&gt;
|Duration-type=hour(s)&lt;br /&gt;
|Cost=25&lt;br /&gt;
|Currency=EUR (€)&lt;br /&gt;
|Tags=tote bag, Arduino, e-textile, electronic&lt;br /&gt;
}}&lt;br /&gt;
{{ {{tntn|Introduction}}&lt;br /&gt;
|Introduction=In this tutorial, you will learn how to create an electronic textile bag, to be used in the context of educational activities on electronics and coding.&lt;br /&gt;
}}&lt;br /&gt;
{{ {{tntn|Materials}}&lt;br /&gt;
|Material=conductive thread (about 13 meters)&lt;br /&gt;
&lt;br /&gt;
2mm thick textile (or thinner)&lt;br /&gt;
&lt;br /&gt;
1 x Led&lt;br /&gt;
&lt;br /&gt;
1 x 8 ohm speaker&lt;br /&gt;
&lt;br /&gt;
1 x mini vibrating motor&lt;br /&gt;
&lt;br /&gt;
1 x photoresistor&lt;br /&gt;
&lt;br /&gt;
1 x textile bag&lt;br /&gt;
&lt;br /&gt;
1 x Arduino board + power cable&lt;br /&gt;
&lt;br /&gt;
6 x jumper wires&lt;br /&gt;
&lt;br /&gt;
6 x small safety pins (around 4 cm long)&lt;br /&gt;
&lt;br /&gt;
9 x metal snap buttons (make sure they are not coated and are conductive)&lt;br /&gt;
&lt;br /&gt;
1 x 250 ohm resistor (or similar)&lt;br /&gt;
&lt;br /&gt;
electric wire (about 1 meter)&lt;br /&gt;
|Tools=1 x soldering iron&lt;br /&gt;
&lt;br /&gt;
Pc with Arduino IDE installed&lt;br /&gt;
&lt;br /&gt;
needles and thread&lt;br /&gt;
}}&lt;br /&gt;
{{ {{tntn|Separator}}}}&lt;br /&gt;
{{ {{tntn|Tuto Step}}&lt;br /&gt;
|Step_Title=Cut 4 round textile patches&lt;br /&gt;
|Step_Content=One of the patches must be slightly bigger than the other 3.&lt;br /&gt;
|Step_Picture_00=Electronic_textile_bag_2.PNG&lt;br /&gt;
}}&lt;br /&gt;
{{ {{tntn|Tuto Step}}&lt;br /&gt;
|Step_Title=Prepare the Led patch&lt;br /&gt;
|Step_Content=Shorten the longer leg of the Led and solder a 250ohm resistor to its end.&lt;br /&gt;
&lt;br /&gt;
Insert both legs of the Led into the textile patch. Do not leave any space between the textile patch and the base of the Led.&lt;br /&gt;
&lt;br /&gt;
Sew the bottom part of two snap buttons to the textile patch. These will serve to connect the legs of the Led.&lt;br /&gt;
&lt;br /&gt;
Solder both legs of the Led to the snap buttons.&lt;br /&gt;
|Step_Picture_00=Electronic_textile_bag_3.PNG&lt;br /&gt;
|Step_Picture_01=Electronic_textile_bag_4.PNG&lt;br /&gt;
|Step_Picture_02=Electronic_textile_bag_5.PNG&lt;br /&gt;
|Step_Picture_03=Electronic_textile_bag_6.PNG&lt;br /&gt;
}}&lt;br /&gt;
{{ {{tntn|Tuto Step}}&lt;br /&gt;
|Step_Title=Prepare the speaker and the mini vibrating motor patches&lt;br /&gt;
|Step_Content=Apply the same procedure as the one described above, to create the patches for the 8ohm speaker as well as the one for the mini vibrating motor.&lt;br /&gt;
&lt;br /&gt;
You may need to use some electric wire to extend the terminals of the electronic components and be able to solder them to the snap buttons&lt;br /&gt;
&lt;br /&gt;
Neither the mini vibrating motor nor the speaker need a resistor.&lt;br /&gt;
|Step_Picture_00=Electronic_textile_bag_7.PNG&lt;br /&gt;
}}&lt;br /&gt;
{{ {{tntn|Tuto Step}}&lt;br /&gt;
|Step_Title=Prepare the photoresistor patch&lt;br /&gt;
|Step_Content=Use the biggest textile patch for the photoresistor.&lt;br /&gt;
&lt;br /&gt;
First insert both legs of the photoresistor into the textile patch.&lt;br /&gt;
&lt;br /&gt;
Then start the soldering. Solder a 1kohm resistor as well as a piece of electric wire to the negative leg of the photoresistor (the shorter of the two legs).&lt;br /&gt;
|Step_Picture_00=Electronic_textile_bag_8.PNG&lt;br /&gt;
}}&lt;br /&gt;
{{ {{tntn|Tuto Step}}&lt;br /&gt;
|Step_Title=Choose the design of your e-textile bag&lt;br /&gt;
|Step_Content=Position all 4 patches on the front of the textile bag, and draw lines with a pencil, to determine where you will be sewing the conductive thread, and where you will position the arduino board. This will also give you a rough idea of how much conductive thread you will need to use to connect all patches to the board.&lt;br /&gt;
&lt;br /&gt;
All negatives will be connected together by a piece of conductive thread which will run from one side of the bag to the other, and which finally reach the board.&lt;br /&gt;
|Step_Picture_00=Electronic_textile_bag_9.PNG&lt;br /&gt;
|Step_Picture_01=Electronic_textile_bag_10.PNG&lt;br /&gt;
}}&lt;br /&gt;
{{ {{tntn|Tuto Step}}&lt;br /&gt;
|Step_Title=Sew the top of the snap buttons on to the textile bag&lt;br /&gt;
|Step_Content=Draw with a pencil the position where the snap buttons will need to be attached to the textile bag, then sew them to the bag.&lt;br /&gt;
&lt;br /&gt;
Remember that the photoresistor patch will need 3 snap buttons, whereas all other patches will need only two.&lt;br /&gt;
|Step_Picture_00=Electronic_textile_bag_11.PNG&lt;br /&gt;
|Step_Picture_01=Electronic_textile_bag_12.PNG&lt;br /&gt;
}}&lt;br /&gt;
{{ {{tntn|Tuto Step}}&lt;br /&gt;
|Step_Title=Sew the conductive thread to the textile bag&lt;br /&gt;
|Step_Content=Once all snap buttons are in place you need to make all necessary connections using the conductive thread&lt;br /&gt;
&lt;br /&gt;
Start by sewing the wire that connects all negatives together.&lt;br /&gt;
&lt;br /&gt;
At the end of each conductive thread, you will need to attach a safety pin. This will be soldered to a jumper wire which will eventually connect the conductive thread to the Arduino board.&lt;br /&gt;
|Step_Picture_00=Electronic_textile_bag_13.PNG&lt;br /&gt;
|Step_Picture_01=Electronic_textile_bag_14.PNG&lt;br /&gt;
|Step_Picture_02=Electronic_textile_bag_15.PNG&lt;br /&gt;
|Step_Picture_03=Electronic_textile_bag_16.PNG&lt;br /&gt;
}}&lt;br /&gt;
{{ {{tntn|Tuto Step}}&lt;br /&gt;
|Step_Title=Solder jumper wires to the safety pins&lt;br /&gt;
|Step_Content=&lt;br /&gt;
|Step_Picture_00=Electronic_textile_bag_17.PNG&lt;br /&gt;
|Step_Picture_01=Electronic_textile_bag_18.PNG&lt;br /&gt;
}}&lt;br /&gt;
{{ {{tntn|Tuto Step}}&lt;br /&gt;
|Step_Title=Sew the Arduino board to the inside of the textile bag&lt;br /&gt;
|Step_Content=&lt;br /&gt;
|Step_Picture_00=Electronic_textile_bag_19.PNG&lt;br /&gt;
}}&lt;br /&gt;
{{ {{tntn|Tuto Step}}&lt;br /&gt;
|Step_Title=Cover all safety pins with some tape to avoid short circuits and unwanted connections&lt;br /&gt;
|Step_Content=&lt;br /&gt;
|Step_Picture_00=Electronic_textile_bag_20.PNG&lt;br /&gt;
}}&lt;br /&gt;
{{ {{tntn|Notes}}&lt;br /&gt;
|Notes=This tutorial has been developed as part of the [http://www.digijeunes.com/projets/itech/ I TECH] project, co-financed by the Erasmus + program of the European Commission. For more info contact us on info@digijeunes.com.&lt;br /&gt;
}}&lt;br /&gt;
{{ {{tntn|Tuto Status}}&lt;br /&gt;
|Complete=Draft&lt;br /&gt;
}}&lt;/div&gt;</summary>
		<author><name>Gameferre2003</name></author>
		
	</entry>
	<entry>
		<id>https://wikifab.org/w/index.php?title=Fichier:Electronic_textile_bag_20.PNG&amp;diff=51044</id>
		<title>Fichier:Electronic textile bag 20.PNG</title>
		<link rel="alternate" type="text/html" href="https://wikifab.org/w/index.php?title=Fichier:Electronic_textile_bag_20.PNG&amp;diff=51044"/>
		<updated>2018-08-20T19:01:25Z</updated>

		<summary type="html">&lt;p&gt;Gameferre2003 : File uploaded with MsUpload on Spécial:AjouterDonnées/Tutorial/Electronic_textile_bag&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;File uploaded with MsUpload on [[Spécial:AjouterDonnées/Tutorial/Electronic_textile_bag]]&lt;/div&gt;</summary>
		<author><name>Gameferre2003</name></author>
		
	</entry>
	<entry>
		<id>https://wikifab.org/w/index.php?title=Fichier:Electronic_textile_bag_19.PNG&amp;diff=51043</id>
		<title>Fichier:Electronic textile bag 19.PNG</title>
		<link rel="alternate" type="text/html" href="https://wikifab.org/w/index.php?title=Fichier:Electronic_textile_bag_19.PNG&amp;diff=51043"/>
		<updated>2018-08-20T19:01:17Z</updated>

		<summary type="html">&lt;p&gt;Gameferre2003 : File uploaded with MsUpload on Spécial:AjouterDonnées/Tutorial/Electronic_textile_bag&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;File uploaded with MsUpload on [[Spécial:AjouterDonnées/Tutorial/Electronic_textile_bag]]&lt;/div&gt;</summary>
		<author><name>Gameferre2003</name></author>
		
	</entry>
	<entry>
		<id>https://wikifab.org/w/index.php?title=Fichier:Electronic_textile_bag_18.PNG&amp;diff=51042</id>
		<title>Fichier:Electronic textile bag 18.PNG</title>
		<link rel="alternate" type="text/html" href="https://wikifab.org/w/index.php?title=Fichier:Electronic_textile_bag_18.PNG&amp;diff=51042"/>
		<updated>2018-08-20T19:01:10Z</updated>

		<summary type="html">&lt;p&gt;Gameferre2003 : File uploaded with MsUpload on Spécial:AjouterDonnées/Tutorial/Electronic_textile_bag&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;File uploaded with MsUpload on [[Spécial:AjouterDonnées/Tutorial/Electronic_textile_bag]]&lt;/div&gt;</summary>
		<author><name>Gameferre2003</name></author>
		
	</entry>
	<entry>
		<id>https://wikifab.org/w/index.php?title=Fichier:Electronic_textile_bag_17.PNG&amp;diff=51041</id>
		<title>Fichier:Electronic textile bag 17.PNG</title>
		<link rel="alternate" type="text/html" href="https://wikifab.org/w/index.php?title=Fichier:Electronic_textile_bag_17.PNG&amp;diff=51041"/>
		<updated>2018-08-20T19:00:59Z</updated>

		<summary type="html">&lt;p&gt;Gameferre2003 : File uploaded with MsUpload on Spécial:AjouterDonnées/Tutorial/Electronic_textile_bag&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;File uploaded with MsUpload on [[Spécial:AjouterDonnées/Tutorial/Electronic_textile_bag]]&lt;/div&gt;</summary>
		<author><name>Gameferre2003</name></author>
		
	</entry>
	<entry>
		<id>https://wikifab.org/w/index.php?title=Fichier:Electronic_textile_bag_16.PNG&amp;diff=51040</id>
		<title>Fichier:Electronic textile bag 16.PNG</title>
		<link rel="alternate" type="text/html" href="https://wikifab.org/w/index.php?title=Fichier:Electronic_textile_bag_16.PNG&amp;diff=51040"/>
		<updated>2018-08-20T19:00:52Z</updated>

		<summary type="html">&lt;p&gt;Gameferre2003 : File uploaded with MsUpload on Spécial:AjouterDonnées/Tutorial/Electronic_textile_bag&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;File uploaded with MsUpload on [[Spécial:AjouterDonnées/Tutorial/Electronic_textile_bag]]&lt;/div&gt;</summary>
		<author><name>Gameferre2003</name></author>
		
	</entry>
	<entry>
		<id>https://wikifab.org/w/index.php?title=Fichier:Electronic_textile_bag_15.PNG&amp;diff=51039</id>
		<title>Fichier:Electronic textile bag 15.PNG</title>
		<link rel="alternate" type="text/html" href="https://wikifab.org/w/index.php?title=Fichier:Electronic_textile_bag_15.PNG&amp;diff=51039"/>
		<updated>2018-08-20T19:00:43Z</updated>

		<summary type="html">&lt;p&gt;Gameferre2003 : File uploaded with MsUpload on Spécial:AjouterDonnées/Tutorial/Electronic_textile_bag&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;File uploaded with MsUpload on [[Spécial:AjouterDonnées/Tutorial/Electronic_textile_bag]]&lt;/div&gt;</summary>
		<author><name>Gameferre2003</name></author>
		
	</entry>
	<entry>
		<id>https://wikifab.org/w/index.php?title=Fichier:Electronic_textile_bag_14.PNG&amp;diff=51038</id>
		<title>Fichier:Electronic textile bag 14.PNG</title>
		<link rel="alternate" type="text/html" href="https://wikifab.org/w/index.php?title=Fichier:Electronic_textile_bag_14.PNG&amp;diff=51038"/>
		<updated>2018-08-20T19:00:37Z</updated>

		<summary type="html">&lt;p&gt;Gameferre2003 : File uploaded with MsUpload on Spécial:AjouterDonnées/Tutorial/Electronic_textile_bag&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;File uploaded with MsUpload on [[Spécial:AjouterDonnées/Tutorial/Electronic_textile_bag]]&lt;/div&gt;</summary>
		<author><name>Gameferre2003</name></author>
		
	</entry>
	<entry>
		<id>https://wikifab.org/w/index.php?title=Fichier:Electronic_textile_bag_13.PNG&amp;diff=51037</id>
		<title>Fichier:Electronic textile bag 13.PNG</title>
		<link rel="alternate" type="text/html" href="https://wikifab.org/w/index.php?title=Fichier:Electronic_textile_bag_13.PNG&amp;diff=51037"/>
		<updated>2018-08-20T19:00:32Z</updated>

		<summary type="html">&lt;p&gt;Gameferre2003 : File uploaded with MsUpload on Spécial:AjouterDonnées/Tutorial/Electronic_textile_bag&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;File uploaded with MsUpload on [[Spécial:AjouterDonnées/Tutorial/Electronic_textile_bag]]&lt;/div&gt;</summary>
		<author><name>Gameferre2003</name></author>
		
	</entry>
</feed>