Bento Night Sky : Différence entre versions

(Page créée avec « {{Tuto Details |Description=<translate>Bentolux created during the hybrid formation at IMT Mines Albi from February 2022 to June 2022. The idea is to use 3D printing to co... »)
 
 
(4 révisions intermédiaires par le même utilisateur non affichées)
Ligne 1 : Ligne 1 :
 
{{Tuto Details
 
{{Tuto Details
|Description=<translate>Bentolux created during the hybrid formation at IMT Mines Albi from February 2022 to June 2022. The idea is to use 3D printing to complete the final floor of a weather station.</translate>
+
|Description=<translate>Bentolux créé lors de la formation hybride à IMT Mines Albi de février 2022 à juin 2022. L'idée est d'utiliser l'impression 3D ou la découpe Laser pour compléter le dernier étage d'une station météo.</translate>
 
|Area=Art, Electronics, Machines and Tools, Play and Hobbies, Robotics, Science and Biology
 
|Area=Art, Electronics, Machines and Tools, Play and Hobbies, Robotics, Science and Biology
 
|Type=Creation
 
|Type=Creation
Ligne 11 : Ligne 11 :
 
}}
 
}}
 
{{Introduction
 
{{Introduction
|Introduction=<translate>This project is part of IMT Mines Albi's Hybrid Training from February to June 2022. The training consists of 3 MOOCs and 16 face-to-face workshops. The goal is to realise a Bentolux weather station and to personalize the 3rd floor. The description herein will only be on this 3rd floor.  
+
|Introduction=<translate>Ce projet s'inscrit dans le cadre de la formation hybride d'IMT Mines Albi de février à juin 2022. La formation est composée de 3 MOOC et de 16 ateliers en présentiel. L'objectif est de réaliser une station météo Bentolux et de personnaliser le 3e étage. La description faite ici portera uniquement sur ce 3ème étage.
  
Bentolux Night Sky operates on "work hard, play even harder". The idea is to have a hangout spot for the "cool kids" working in the weather station. There is a catch however, only those with the code can gain access!</translate>
+
Bentolux Night Sky fonctionne sur le principe "work hard, play even harder". L'idée est de créer un lieu de rencontre pour les "jeunes cool" qui travaillent dans la station météo. Mais il y a un hic : seuls ceux qui ont le code peuvent y accéder !</translate>
 
}}
 
}}
 
{{Materials}}
 
{{Materials}}
 +
{{Tuto Step
 +
|Step_Title=<translate>Materials</translate>
 +
|Step_Content=<translate>'''3D Printing'''
 +
 +
*Filament: PVA and ABS
 +
*Wood
 +
 +
'''Electronic '''
 +
 +
*1 Arduino Uno cards
 +
*male-male and male-female prototyping cables
 +
*LCD SSD1306 128 x 64
 +
*1 LED 8mm
 +
*2 ring of 12 LEDs
 +
*1 potentiometer
 +
*1 BME280 weather sensor
 +
*1 switch
 +
*1 x 5V power supply
 +
*220 and 10000 Ohms resistors
 +
*3 x servomotors
 +
*Buzzer
 +
 +
===Tools===
 +
'''Machines'''
 +
 +
*3D printer
 +
*Découpeur de laser
 +
 +
'''Software '''
 +
 +
*Tinkercad, Microsoft 3D builder, Blender
 +
*Cura Ultimaker
 +
*Arduino
 +
 +
'''Prototyping'''
 +
 +
*soldering iron
 +
*cutting pliers
 +
*wire stripper
 +
*glue</translate>
 +
}}
 
{{Tuto Step
 
{{Tuto Step
 
|Step_Title=<translate>Building of the 3D models</translate>
 
|Step_Title=<translate>Building of the 3D models</translate>
|Step_Content=<translate>Using Blender, i modelled two faces. After which i added the faces to the 3D bodies downloaded from Microsoft 3D builder using TinkerCad. Since, I also needed a "club house", i designed one using TinkerCad with a mechanism to close and open in response to the frequency of tone heard.</translate>
+
|Step_Content=<translate>Using Blender, i modelled two faces. After which i added the faces to the 3D bodies downloaded from Microsoft 3D builder using TinkerCad.</translate>
 
|Step_Picture_00=Bento_Night_Sky_Screenshot_2022-05-14_233747.jpg
 
|Step_Picture_00=Bento_Night_Sky_Screenshot_2022-05-14_233747.jpg
 
|Step_Picture_01=Bento_Night_Sky_Screenshot_2022-05-14_235104.jpg
 
|Step_Picture_01=Bento_Night_Sky_Screenshot_2022-05-14_235104.jpg
Ligne 24 : Ligne 65 :
 
}}
 
}}
 
{{Tuto Step
 
{{Tuto Step
|Step_Title=<translate>Electronics and Codes</translate>
+
|Step_Title=<translate>Design of the 3rd Stage</translate>
|Step_Content=<translate></translate>
+
|Step_Content=<translate>Using Inkscape, I designed the "boite".  After which I glued the servomotor to the entrance in order open and close based on need</translate>
 +
}}
 +
{{Tuto Step
 +
|Step_Title=<translate>Code</translate>
 +
|Step_Content=<translate>I used an IF loop, in identifying when or not to open the door and other different commands based on the Temperature/Pressure Sensor.
 +
 
 +
Example:
 +
 
 +
When the humidity is between 53 and 55
 +
 
 +
if (hum >53 & hum <= 55){
 +
 
 +
fadeall(); //turn off Leds
 +
 
 +
for( int i = 0; i < 7; i++)
 +
 
 +
{ leds1[i] = CRGB::Blue; //leds 1 to 6 shows Blue
 +
 
 +
FastLED.show(); 
 +
 
 +
delay (1000);       
 +
 
 +
}
 +
 
 +
display.clear();  //clear previous screen
 +
 
 +
display.printFixed(40,  14, "You have", STYLE_NORMAL);
 +
 
 +
display.printFixed(15,  34,humC, STYLE_BOLD); //percentage of humidity translated to cool factor
 +
 
 +
display.printFixed(45,  34, "% cool factor", STYLE_NORMAL);
 +
 
 +
lcd_delay(3000); //wait 3s before clearing screen
 +
 
 +
display.clear();
 +
 
 +
delay(200);
 +
 
 +
notcool();  //show bitmap
 +
 
 +
loserlights();// lights
 +
 
 +
delay(1000);
 +
 
 +
display.clear();//clear screen
 +
 
 +
fadeall();
 +
 
 +
}
 +
 
 +
<br /></translate>
 
}}
 
}}
 
{{Notes
 
{{Notes
Ligne 31 : Ligne 122 :
 
}}
 
}}
 
{{PageLang
 
{{PageLang
 +
|Language=en
 
|SourceLanguage=none
 
|SourceLanguage=none
 
|IsTranslation=0
 
|IsTranslation=0
|Language=en
 
 
}}
 
}}
 
{{Tuto Status
 
{{Tuto Status
 
|Complete=Draft
 
|Complete=Draft
 
}}
 
}}

Version actuelle datée du 16 juin 2022 à 01:37

Auteur avatarXXerphy | Dernière modification 16/06/2022 par XXerphy

Pas encore d'image

Bentolux créé lors de la formation hybride à IMT Mines Albi de février 2022 à juin 2022. L'idée est d'utiliser l'impression 3D ou la découpe Laser pour compléter le dernier étage d'une station météo.
Difficulté
Moyen
Durée
2 mois
Catégories
Art, Électronique, Machines & Outils, Jeux & Loisirs, Robotique, Science & Biologie
Coût
100 EUR (€)

Introduction

Ce projet s'inscrit dans le cadre de la formation hybride d'IMT Mines Albi de février à juin 2022. La formation est composée de 3 MOOC et de 16 ateliers en présentiel. L'objectif est de réaliser une station météo Bentolux et de personnaliser le 3e étage. La description faite ici portera uniquement sur ce 3ème étage.

Bentolux Night Sky fonctionne sur le principe "work hard, play even harder". L'idée est de créer un lieu de rencontre pour les "jeunes cool" qui travaillent dans la station météo. Mais il y a un hic : seuls ceux qui ont le code peuvent y accéder !

Matériaux

Outils

Étape 1 - Materials

3D Printing

  • Filament: PVA and ABS
  • Wood

Electronic

  • 1 Arduino Uno cards
  • male-male and male-female prototyping cables
  • LCD SSD1306 128 x 64
  • 1 LED 8mm
  • 2 ring of 12 LEDs
  • 1 potentiometer
  • 1 BME280 weather sensor
  • 1 switch
  • 1 x 5V power supply
  • 220 and 10000 Ohms resistors
  • 3 x servomotors
  • Buzzer

Tools

Machines

  • 3D printer
  • Découpeur de laser

Software

  • Tinkercad, Microsoft 3D builder, Blender
  • Cura Ultimaker
  • Arduino

Prototyping

  • soldering iron
  • cutting pliers
  • wire stripper
  • glue

Étape 2 - Building of the 3D models

Using Blender, i modelled two faces. After which i added the faces to the 3D bodies downloaded from Microsoft 3D builder using TinkerCad.


Étape 3 - Design of the 3rd Stage

Using Inkscape, I designed the "boite". After which I glued the servomotor to the entrance in order open and close based on need

Étape 4 - Code

Commentaires

Draft