Last modified on 11 May 2024, at 23:35

Difference between revisions of "Arbre Totem Fixme"

 
(13 intermediate revisions by the same user not shown)
Line 4: Line 4:
  
 
== Description ==
 
== Description ==
[FR] : le but de ce projet est de réaliser un totem lumineux pouvant afficher des messages défilants ou des animations.  
+
['''''FR'''''] : le but de ce projet est de réaliser un totem lumineux pouvant afficher des messages défilants ou des animations.
Ce totem sera utilisé lors de festivales ou de manifestions lié aux activités du hackersapce Fixme, que ce soit à l'intérieur ou à l'éxtérieur.
+
Ce totem sera utilisé lors de festivales ou de manifestions lié aux activités du hackerspace, que ce soit à l'intérieur ou à l'extérieur .<br>
Un premier prototype a été réaliser par un étudiant de l'ES (Nicolas Furst - 2019)
+
Un premier prototype a été réaliser par un étudiant de l'ES (Nicolas Furst - 2019).
  
[EN] : the goal of this project is to make a light totem which can display different scrolling messages or animations.  
+
['''''EN'''''] : the goal of this project is to make a light totem which can display different scrolling messages or animations.
This totem will be used at festivals or demonstration meeting related FIXME hackerspace activities, indorrs or outdorrs.  
+
This totem will be used at festivals or demonstration meeting related FIXME hackerspace activities, indorrs or outdorrs.<br>
A first prototype was realized by an former student of the ES technical school (Nicolas Furst - 2019).  
+
A first prototype was realized by an former student of the ES technical school (Nicolas Furst - 2019).
 +
 
 +
Below are the key points to be be implemeted on the totem :
 +
 
 +
* Lighted Totem with RGB Leds
 +
* Mast-mounted Totem
 +
* Colourful animation
 +
* Display a scrolling Texte
 +
* View the message form several angles
 +
* Battery Supply - rechargeable with a solar panel
 +
* Battery life => 12H
 +
* Connection with totem by Wifi, Bluetooth or 4G
  
 
== GIT ==  
 
== GIT ==  
Line 25: Line 36:
 
in progress !!!
 
in progress !!!
  
 +
== Blocs Diagram ==
 +
[[File:BlocDiagrammes.PNG]]
 +
 +
== Electronics PART ==
 +
=== uC part ===
 +
['''''FR''''']: le choix du '''uC''' s'est porté sur le fabriquant '''[https://www.microchip.com/ Microchip]'''. Pour choisir la famille et le modèle, il faut déterminer les différentes fonctions que l'on a besoin, voir les points essentielles ci-dessous :
 +
 +
On a besoin de :
 +
* 3 entrées analogiques,
 +
* une communication SPI comprenant la clock, le chip select, le MISO et le MOSI,
 +
* 5 I/O,
 +
* un reset
 +
* deux pins de programmation
 +
* alimentation pour la partie digitales et analogiques
 +
 +
ce qui fait au minium ~ **20pins** => voir le tableau ci-dessous
 +
 +
['''''EN''''']: uC's choice was on the  manufacturer '''[https://www.microchip.com/ Microchip]'''. To select the uC familiy and model, we need to determine the functions we require. Normaly, a minimum of 20pins is required. See the table below :
 +
 +
{| class="wikitable centre" style="width:80%;"
 +
|+ Module part
 +
!- scope=col | Application
 +
!- scope=col | Function
 +
!- scope=col | Pin's Number
 +
|-
 +
| style="text-align:center;" | battery current measurement
 +
| style="text-align:center;" | Analogic Input (ADC)
 +
| style="text-align:center;" | 1x
 +
|-
 +
| style="text-align:center;" | battery voltage measurement
 +
| style="text-align:center;" | Analogic Input (ADC)
 +
| style="text-align:center;" | 1x
 +
|-
 +
| style="text-align:center;" | luminosity measurement
 +
| style="text-align:center;" | Analogic Input (ADC)
 +
| style="text-align:center;" | 1x
 +
|-
 +
| style="text-align:center;" | Wifi Communication
 +
| style="text-align:center;" | SPI
 +
| style="text-align:center;" | 4x
 +
|-
 +
| style="text-align:center;" | Wifi Communication
 +
| style="text-align:center;" | Digital I/O
 +
| style="text-align:center;" | 4x
 +
|-
 +
| style="text-align:center;" | 5V activation
 +
| style="text-align:center;" | Digital I/O 
 +
| style="text-align:center;" | 1x
 +
|-
 +
| style="text-align:center;" | uC programming
 +
| style="text-align:center;" | PGE-D/C
 +
| style="text-align:center;" | 1x
 +
|-
 +
| style="text-align:center;" | buC Reset
 +
| style="text-align:center;" | _MCLR
 +
| style="text-align:center;" | 1x
 +
|-
 +
| style="text-align:center;" | Power Supply digital I/O
 +
| style="text-align:center;" | VDD
 +
| style="text-align:center;" | minimum 1x
 +
|-
 +
| style="text-align:center;" | Power Supply analog Input
 +
| style="text-align:center;" | AVDD
 +
| style="text-align:center;" | minimum 1x
 +
|-
 +
| style="text-align:center;" | Ground Supply
 +
| style="text-align:center;" | VSS - AVSS
 +
| style="text-align:center;" | minimum 1x
 +
|-
 +
|}
 +
 +
['''''FR''''']: En se référant au [https://ww1.microchip.com/downloads/aemDocuments/documents/MCU32/ProductDocuments/DataSheets/PIC32MX5XX6XX7XX_Family%29Datasheet_DS60001156K.pdf datasheet PIC32MX795H], vu le nombre de pattes estimées, il serait bien de choisir un boitier de type '''TQFP''' de 64pins.
 +
On reste sur du prototype, donc il serait bien d'utiliser le chip ayant le plus de mémoire (ROM -> 512ko | RAM -> 128ko)
 +
 +
['''''EN''''']: With reference to [https://ww1.microchip.com/downloads/aemDocuments/documents/MCU32/ProductDocuments/DataSheets/PIC32MX5XX6XX7XX_Family%29Datasheet_DS60001156K.pdf datasheet PIC32MX795H], with the estimated number of pins, you should choose a 64pins '''TQFP''' housing. It would be good idea to choose the uC with the largest memory (ROM -> 512ko | RAM -> 128ko)
  
 
== Mechanical PART ==  
 
== Mechanical PART ==  
Line 31: Line 117:
  
  
== Electronics PART ==
 
  
A venir !!!
 
  
== Firmware ==
+
== Software (Firmeware & Software apllication)  ==
 +
 
 +
['''''FR''''']: Pour la partie connexion avec la carte électronique, cela se fera par le réseau WiFi en connexion point à point avec une application (non défini) qui communiquera pour piloter le ToTem.
 +
 
 +
['''''EN''''']: to connect to the electronic board, this will be done using the point-to-point WiFi nwtwork with an application (no defined), which will communicate to control the Totem.
 +
 
 +
The possible functions will be :
 +
 
 +
* display alpha-numeric strings - see the special characters
 +
* luminosity modification
 +
* text's color modification
 +
* display's frequency modification
 +
* display the battery level
 +
* animation - gaming
 +
 
 +
 
 +
=== Firmware ===
  
A venir  
+
A venir !!
  
== Software ==  
+
=== Software ===  
  
 
A venir !!
 
A venir !!

Latest revision as of 23:35, 11 May 2024

CroquisTotem.PNG

Description

[FR] : le but de ce projet est de réaliser un totem lumineux pouvant afficher des messages défilants ou des animations. Ce totem sera utilisé lors de festivales ou de manifestions lié aux activités du hackerspace, que ce soit à l'intérieur ou à l'extérieur .
Un premier prototype a été réaliser par un étudiant de l'ES (Nicolas Furst - 2019).

[EN] : the goal of this project is to make a light totem which can display different scrolling messages or animations. This totem will be used at festivals or demonstration meeting related FIXME hackerspace activities, indorrs or outdorrs.
A first prototype was realized by an former student of the ES technical school (Nicolas Furst - 2019).

Below are the key points to be be implemeted on the totem :

  • Lighted Totem with RGB Leds
  • Mast-mounted Totem
  • Colourful animation
  • Display a scrolling Texte
  • View the message form several angles
  • Battery Supply - rechargeable with a solar panel
  • Battery life => 12H
  • Connection with totem by Wifi, Bluetooth or 4G

GIT

Sotfwares used

for the version 1_X (ETML-ES)

  • for mechanical part : soldiworks
  • for shematics and PCB design : Altium
  • for PIC micronctroller programming  : => IDE : MPLABX  ??- configurator : Harmony ?? - compilator : XC

for the version 2_x (FIXME)

in progress !!!

Blocs Diagram

BlocDiagrammes.PNG

Electronics PART

uC part

[FR]: le choix du uC s'est porté sur le fabriquant Microchip. Pour choisir la famille et le modèle, il faut déterminer les différentes fonctions que l'on a besoin, voir les points essentielles ci-dessous :

On a besoin de :

  • 3 entrées analogiques,
  • une communication SPI comprenant la clock, le chip select, le MISO et le MOSI,
  • 5 I/O,
  • un reset
  • deux pins de programmation
  • alimentation pour la partie digitales et analogiques

ce qui fait au minium ~ **20pins** => voir le tableau ci-dessous

[EN]: uC's choice was on the manufacturer Microchip. To select the uC familiy and model, we need to determine the functions we require. Normaly, a minimum of 20pins is required. See the table below :

Module part
Application Function Pin's Number
battery current measurement Analogic Input (ADC) 1x
battery voltage measurement Analogic Input (ADC) 1x
luminosity measurement Analogic Input (ADC) 1x
Wifi Communication SPI 4x
Wifi Communication Digital I/O 4x
5V activation Digital I/O 1x
uC programming PGE-D/C 1x
buC Reset _MCLR 1x
Power Supply digital I/O VDD minimum 1x
Power Supply analog Input AVDD minimum 1x
Ground Supply VSS - AVSS minimum 1x

[FR]: En se référant au datasheet PIC32MX795H, vu le nombre de pattes estimées, il serait bien de choisir un boitier de type TQFP de 64pins. On reste sur du prototype, donc il serait bien d'utiliser le chip ayant le plus de mémoire (ROM -> 512ko | RAM -> 128ko)

[EN]: With reference to datasheet PIC32MX795H, with the estimated number of pins, you should choose a 64pins TQFP housing. It would be good idea to choose the uC with the largest memory (ROM -> 512ko | RAM -> 128ko)

Mechanical PART

A venir !!!



Software (Firmeware & Software apllication)

[FR]: Pour la partie connexion avec la carte électronique, cela se fera par le réseau WiFi en connexion point à point avec une application (non défini) qui communiquera pour piloter le ToTem.

[EN]: to connect to the electronic board, this will be done using the point-to-point WiFi nwtwork with an application (no defined), which will communicate to control the Totem.

The possible functions will be :

  • display alpha-numeric strings - see the special characters
  • luminosity modification
  • text's color modification
  • display's frequency modification
  • display the battery level
  • animation - gaming


Firmware

A venir !!

Software

A venir !!

Links

A venir

Contributeur

A venir !!