|
|
(25 révisions intermédiaires par le même utilisateur non affichées) |
Ligne 1 : |
Ligne 1 : |
− | =Attiny10=
| |
| | | |
− | * [https://ww1.microchip.com/downloads/aemDocuments/documents/OTH/ProductDocuments/DataSheets/ATtiny4-5-9-10-Data-Sheet-DS40002060A.pdf datasheetAttiny10] | + | =Informatique embarquée= |
| + | *[[Cours:InfoEmbarqueeConcommationMicroC|Analyse de la consommation d'un µcontroleur]] |
| + | *[[Cours:InfoEmbarqueeScrutationInterruption|Analyse de la latence (et jitter)]] |
| + | *[[Cours:InfoEmbarqueeThread|Thread avec Qt]] |
| + | *[[Cours:InstallationLinux|installation d'une distribution Linux]] |
| + | *[[Cours:BashScript|scripts]] |
| + | *[[Cours:QtMqtt|mqtt : créer un capteur/actionneur sur HomeAssistant]] |
| | | |
− | Les schémas suivants vous permettent :
| + | =CEM= |
− | *de comprendre sur quel état logique les leds s'allument | + | *https://resources.altium.com/fr/p/plongee-dans-les-contraintes-de-conception-et-de-fabrication-partie-1 |
− | *de trouver la liste des sorties
| + | *https://resources.altium.com/fr/p/diving-into-the-constraints-of-design-and-manufacturing-part-two#21-espacement-des-conducteurs---clearance- |
− | *d'associer chaque led avec un numéro de patte
| + | *https://www.vishay.com/docs/28705/mcx0x0xpro.pdf |
− | | |
− | [[Fichier:SchemaDe.png]]
| |
− | | |
− | {|
| |
− | |-
| |
− | |[[Fichier:ATTINY10-pinout.jpg]]
| |
− | ||
| |
− | Le tableau donne la correspondance entre patte de sortie du µcontrôleur et position de(s) led(s) sur le dé :
| |
− | | |
− | | |
− | {|class="wikitable center"
| |
− | |-
| |
− | | PB0 || || PB1
| |
− | |-
| |
− | | PB3 || PB2 || PB3
| |
− | |-
| |
− | | PB1 || || PB0
| |
− | |}
| |
− | |}
| |
− | | |
− | | |
− | =script shell=
| |
− | | |
− | | |
− | ==mqtt==
| |
− | | |
− | | |
− | ===HA mqtt sensor===
| |
− | * https://www.home-assistant.io/integrations/sensor/ | |
− | * https://github.com/home-assistant/core/blob/dev/homeassistant/const.py#L489
| |
− | | |
− | <source lang=bash>
| |
− | | |
− | /usr/local/bin/createHaSensor :
| |
− | #!/bin/bash
| |
− | | |
− | echo "name : $1"
| |
− | echo "device class : $2"
| |
− | echo "unit : $3"
| |
− | | |
− | topic="homeassistant/sensor/$1/config"
| |
− | payload="{\"name\": \"$1\", \
| |
− | \"unique_id\": \"$1\", \
| |
− | \"state_topic\": \"homeassistant/sensor/$1/state\", \
| |
− | \"device_class\":\"$2\", \
| |
− | \"unit_of_measurement\":\"$3\" \
| |
− | }"
| |
− | | |
− | | |
− | mosquitto_pub -t "$topic" -m "$payload" -h 192.168.0.7
| |
− | | |
− | | |
− | /usr/local/bin/deleteHaSensor :
| |
− | #!/bin/bash
| |
− | | |
− | echo "name : $1"
| |
− | echo "device class : $2"
| |
− | echo "unit : $3"
| |
− | | |
− | topic="homeassistant/sensor/$1/config"
| |
− | | |
− | mosquitto_pub -t "$topic" -m "" -h 192.168.0.7
| |
− | | |
− | | |
− | /usr/local/bin/publishHaSensor :
| |
− | #!/bin/bash
| |
− | | |
− | echo "name : $1"
| |
− | echo "valeur : $2"
| |
− | | |
− | topic="homeassistant/sensor/$1/state"
| |
− | payload="{\"name\": \"$1\", \
| |
− | \"unique_id\": \"$1\", \
| |
− | \"state_topic\": \"homeassistant/sensor/$1/state\", \
| |
− | \"device_class\":\"$2\", \
| |
− | \"unit_of_measurement\":\"$4\" \
| |
− | }"
| |
− | | |
− | | |
− | mosquitto_pub -t "$topic" -m "$2" -h 192.168.0.7
| |
− | | |
− | | |
− | </source>
| |