En cette nouvelle année, toute l’équipe du Fablab Iroise vous souhaite
une excellente année 2025,
remplie de créativité, d’innovation et de projets inspirants !
Très belle année à tous !
L’équipe du Fablab Iroise
Un lieu pour découvrir, partager, concevoir, apprendre, réaliser
En cette nouvelle année, toute l’équipe du Fablab Iroise vous souhaite
une excellente année 2025,
remplie de créativité, d’innovation et de projets inspirants !
Très belle année à tous !
L’équipe du Fablab Iroise
Chers adhérents, cette année le Fablab a décidé de s’impliquer pour le TELETHON 2024 auprès de la Mairie de Guilers. Nous ne pourrons malheureusement pas assurer l’ouverture du club ce samedi. Vous pouvez néanmoins nous retrouver et animer ensemble la Fresque que nous proposons. Près de 7980 pixels !!!!
Tous ensemble pour le TELETHON 2024.
Marre des vacances ! Besoin de créativité ? On vous manque !!!
Le Fablab Iroise rouvre ses portes ce mardi à 17h30 !
Venez découvrir notre espace de fabrication numérique, échanger des idées et participer à nos ateliers.
Que vous soyez novice ou expert, il y en a pour tout le monde !
📍 Adresse : Espace Joubin, 1 rue Saint Valentin, Guilers.
Pour plus d’infos, consultez notre site : fablab-iroise.fr
Nous avons hâte de vous retrouver et de partager ensemble des moments créatifs ! ✨
Vous souhaitez concevoir une carte 3D avec votre découpeuse laser ?
Ce tutoriel vous explique comment récupérer et utiliser les données altimétrique d’une région afin de concevoir une carte 3D
https://abounding-fright-69d.notion.site/carte-couches-3D-0188c55cb48d4c3da58f0b18cb7bce88
Le télégramme de mercredi 25 janvier
On pourra juste corrigé Penn avec 2 N
Marc et Jean-Yves ont réaliser des modélisations de phares :
Le four, le Stiff, le Créach, la Jument et Kermorvan sont réalisés.
Ces modélisations 3D doivent clignoter selon leur signature lumineuse,
par ex le Four possède 5 éclats toutes les 15s.
Ainsi, conformément à notre devise, CONCEVOIR – MODÉLISER – FABRIQUER
voici les différentes étapes de ce projet en images :
//Programme clignotements led en fonction de la valeur analogique
//d'un pont diviseur. © Fablab Iroise
#include "tinysnore.h" // Include TinySnore Library
#define pinLed 0
#define RPin A1
int RValue = 0;
void setup() {
// put your setup code here, to run once:
pinMode(pinLed, OUTPUT);
RValue = analogRead(RPin);
}
void loop() {
if (RValue < 100) { // Four 5 eclats /15s
digitalWrite(pinLed, HIGH); // turn the LED on (HIGH is the voltage level)
snore(250); // wait for a half second
digitalWrite(pinLed, LOW); // turn the LED off by making the voltage LOW
snore(1000);//delay(2000);
digitalWrite(pinLed, HIGH); // turn the LED on (HIGH is the voltage level)
snore(250); // wait for a half second
digitalWrite(pinLed, LOW); // turn the LED off by making the voltage LOW
snore(1000);//delay(2000);
digitalWrite(pinLed, HIGH); // turn the LED on (HIGH is the voltage level)
snore(250); // wait for a half second
digitalWrite(pinLed, LOW); // turn the LED off by making the voltage LOW
snore(1000);//delay(2000);
digitalWrite(pinLed, HIGH); // turn the LED on (HIGH is the voltage level)
snore(250); // wait for a half second
digitalWrite(pinLed, LOW); // turn the LED off by making the voltage LOW
snore(1000);//delay(2000);
digitalWrite(pinLed, HIGH); // turn the LED on (HIGH is the voltage level)
snore(250); // wait for a half second
digitalWrite(pinLed, LOW); // turn the LED off by making the voltage LOW
snore(10000);//delay(2000);
}
if (RValue > 100 && RValue < 200) { // St-Mathieu 1 eclats /15s
digitalWrite(pinLed, HIGH); // turn the LED on (HIGH is the voltage level)
snore(250); // wait for a half second
digitalWrite(pinLed, LOW); // turn the LED off by making the voltage LOW
snore(14500);//delay(2000);
}
if (RValue > 200 && RValue < 300) { // Ile Vierge/Kermorvan 1 eclats /5s Pierres noire idem Rouge
digitalWrite(pinLed, HIGH); // turn the LED on (HIGH is the voltage level)
snore(250); // wait for a half second
digitalWrite(pinLed, LOW); // turn the LED off by making the voltage LOW
snore(4500);//delay(2000);
}
if (RValue > 300 && RValue < 400) { // Le Créach 2 eclats /10s Pierres noire idem Rouge
digitalWrite(pinLed, HIGH); // turn the LED on (HIGH is the voltage level)
snore(250); // wait for a half second
digitalWrite(pinLed, LOW); // turn the LED off by making the voltage LOW
snore(1000);//delay(2000);
digitalWrite(pinLed, HIGH); // turn the LED on (HIGH is the voltage level)
snore(250); // wait for a half second
digitalWrite(pinLed, LOW); // turn the LED off by making the voltage LOW
snore(8500);//delay(2000);
}
if (RValue > 500 && RValue < 600) { // Le Stiff 2 eclats /20s Rouge
digitalWrite(pinLed, HIGH); // turn the LED on (HIGH is the voltage level)
snore(250); // wait for a half second
digitalWrite(pinLed, LOW); // turn the LED off by making the voltage LOW
snore(1000);//delay(2000);
digitalWrite(pinLed, HIGH); // turn the LED on (HIGH is the voltage level)
snore(250); // wait for a half second
digitalWrite(pinLed, LOW); // turn the LED off by making the voltage LOW
snore(18500);//delay(2000);
}
if (RValue > 700 && RValue < 800) { // Nividic 9 scintillements /10s Blanc
digitalWrite(pinLed, HIGH); // turn the LED on (HIGH is the voltage level)
snore(250); // wait for a half second
digitalWrite(pinLed, LOW); // turn the LED off by making the voltage LOW
snore(250);//delay(2000);
digitalWrite(pinLed, HIGH); // turn the LED on (HIGH is the voltage level)
snore(250); // wait for a half second
digitalWrite(pinLed, LOW); // turn the LED off by making the voltage LOW
snore(250);//delay(2000);
digitalWrite(pinLed, HIGH); // turn the LED on (HIGH is the voltage level)
snore(250); // wait for a half second
digitalWrite(pinLed, LOW); // turn the LED off by making the voltage LOW
snore(250);//delay(2000);
digitalWrite(pinLed, HIGH); // turn the LED on (HIGH is the voltage level)
snore(250); // wait for a half second
digitalWrite(pinLed, LOW); // turn the LED off by making the voltage LOW
snore(250);//delay(2000);
digitalWrite(pinLed, HIGH); // turn the LED on (HIGH is the voltage level)
snore(250); // wait for a half second
digitalWrite(pinLed, LOW); // turn the LED off by making the voltage LOW
snore(250);//delay(2000);
digitalWrite(pinLed, HIGH); // turn the LED on (HIGH is the voltage level)
snore(250); // wait for a half second
digitalWrite(pinLed, LOW); // turn the LED off by making the voltage LOW
snore(250);//delay(2000);
digitalWrite(pinLed, HIGH); // turn the LED on (HIGH is the voltage level)
snore(250); // wait for a half second
digitalWrite(pinLed, LOW); // turn the LED off by making the voltage LOW
snore(250);//delay(2000);
digitalWrite(pinLed, HIGH); // turn the LED on (HIGH is the voltage level)
snore(250); // wait for a half second
digitalWrite(pinLed, LOW); // turn the LED off by making the voltage LOW
snore(250);//delay(2000);
digitalWrite(pinLed, HIGH); // turn the LED on (HIGH is the voltage level)
snore(250); // wait for a half second
digitalWrite(pinLed, LOW); // turn the LED off by making the voltage LOW
snore(5000);//delay(2000);
}
if (RValue > 800 && RValue < 900) { // La Jument 3 eclats /15s Blanc
digitalWrite(pinLed, HIGH); // turn the LED on (HIGH is the voltage level)
snore(250); // wait for a half second
digitalWrite(pinLed, LOW); // turn the LED off by making the voltage LOW
snore(1000);//delay(2000);
digitalWrite(pinLed, HIGH); // turn the LED on (HIGH is the voltage level)
snore(250); // wait for a half second
digitalWrite(pinLed, LOW); // turn the LED off by making the voltage LOW
snore(1000);//delay(2000);
digitalWrite(pinLed, HIGH); // turn the LED on (HIGH is the voltage level)
snore(250); // wait for a half second
digitalWrite(pinLed, LOW); // turn the LED off by making the voltage LOW
snore(12
500);//delay(2000);
}
}