Les deux révisions précédentes Révision précédente Prochaine révision | Révision précédente |
materiels:temps:htr:htri2c [2024/05/20 16:09] – [2.1 Généralités] phil | materiels:temps:htr:htri2c [2024/07/30 17:37] (Version actuelle) – [Matériels - Horloge Temps Réel (HTR) I²C] phil |
---|
===== Matériels - Horloge Temps Réel (HTR) I²C ===== | ===== Matériels - Horloge Temps Réel (HTR) I²C ===== |
| |
[Mise à jour le 3/5/2024] | [Mise à jour le 30/7/2024] |
| |
| \\ |
| |
=== Lecture connexe === | === Lecture connexe === |
| |
\\ | \\ |
| |
| |
==== 1. Généralités ==== | ==== 1. Généralités ==== |
* Dimensions: 22,5 x 21 mm | * Dimensions: 22,5 x 21 mm |
| |
| * //**Application typique**// |
| {{ :materiels:temps:htr:appli_typique_ds3231m.png?nolink |}} |
| |
| * //**Schéma-blocs**// |
| {{ :materiels:temps:htr:ds3231m_bloc_diagram.png?nolink |}} |
| |
| |
* //**Signaux**// | * //**Signaux**// |
| * SCL, SDA : clock et data du bus I2C |
* INT : interruption en sortie de niveau bas ou d'onde carrée de 1 Hz | * INT : interruption en sortie de niveau bas ou d'onde carrée de 1 Hz |
* RST : Réinitialisation du processeur | * RST : Réinitialisation du processeur |
* 32K : Sortie 32,768 kHz | * 32K : Sortie 32,768 kHz |
| |
| <callout type="warning" title="Interruption" icon="true">Voir <html><b><a href="https://www.arduino.cc/reference/en/language/functions/external-interrupts/attachinterrupt/" target="_blank">attachInterrupt()</a></b></html> pour la correspondance entre les numéros d'interruption et les broches d'E/S.</callout> |
| |
{{ :materiels:capteurs:acrobate.gif?nolink&40|}} | {{ :materiels:capteurs:acrobate.gif?nolink&40|}} |
* //**Documentation**// | * //**Documentation**// |
* Datasheet à télécharger <html><a href="https://www.analog.com/media/en/technical-documentation/data-sheets/DS3231M.pdf" target="_blank"><b>ici</b></a></html> | * Datasheet à télécharger <html><a href="https://www.analog.com/media/en/technical-documentation/data-sheets/DS3231M.pdf" target="_blank"><b>ici</b></a></html> |
| |
| {{ :materiels:capteurs:environnement:iconechronogrammes.png?nolink&50|}} |
| * //**Chronogrammes**// |
| * Relevé des signaux du bus I2C faite lors d'une configuration du circuit pour générer un signal 1HZ sur INT. A télécharger <html><a href="https://webge.fr/doc/wikis/img/Mesures_DS3231M.zip" target="_blank"><b>ici</b></a></html>. |
| |
\\ | \\ |
| |
<pane id="tab-ds3231mduino_2"> | <pane id="tab-ds3231mduino_2"> |
* //**Ressources**// : <html><a href="https://wiki.dfrobot.com/DS3231M%20MEMS%20Precise%20RTC%20SKU:%20DFR0641" target="_blank"><b>Wiki</b></a></html> DFROBOT | <html><a href="https://www.arduino.cc/reference/en/language/functions/external-interrupts/attachinterrupt/" target="_blank">attachInterrupt()</a></html> | <html><a href="https://www.arduino.cc/reference/en/language/functions/external-interrupts/digitalpintointerrupt/" target="_blank">digitalPinToInterrupt()</a></html> | * //**Ressources**// |
| * <html><a href="https://wiki.dfrobot.com/DS3231M%20MEMS%20Precise%20RTC%20SKU:%20DFR0641" target="_blank"><b>Wiki</b></a></html> DFROBOT | <html><a href="https://www.arduino.cc/reference/en/language/functions/external-interrupts/attachinterrupt/" target="_blank">attachInterrupt()</a></html> | <html><a href="https://www.arduino.cc/reference/en/language/functions/external-interrupts/digitalpintointerrupt/" target="_blank">digitalPinToInterrupt()</a></html>{{ :materiels:capteurs:intensite:doc.gif?nolink|}} |
| * //**Fiche guide**// pour l'étude d'une chaîne d'information comprenant une HTR **DS3231M** <html><a href="https://webge.fr/doc/projets/tsin/0_Fiches guide TSIN/TSIN_FGA_DS3231M.zip">[Télécharger]</a></html> |
| |
| * //**Connexion**// à une <html><a href="https://wiki.seeedstudio.com/Base_Shield_V2/" target="_blank">Base Shield V2</a></html> montée sur une Arduino Uno \\ {{ :materiels:temps:htr:ds3231m_arduino.jpg?nolink&500 |}} |
| |
* //**Exemple** pour tester l'HTR// \\ | * //**Exemple** pour tester l'HTR// \\ |
| |
// Broche utilisée pour l'interruption | // Broche utilisée pour l'interruption |
// Arduino UNO : 2 | // Arduino UNO : 2 (D2) |
// Arduino MKR0 ou MKR Wifi1010 : 0 | // Arduino MKR0 ou MKR Wifi1010 : 0 (D0) |
const byte interruptPin = 0; | const byte interruptPin = 0; |
| |