x.phs1903 1.2.3__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- x_phs1903-1.2.3/.commitmsg +32 -0
- x_phs1903-1.2.3/.gitignore +7 -0
- x_phs1903-1.2.3/.readthedocs.yaml +18 -0
- x_phs1903-1.2.3/CITATION.cff +35 -0
- x_phs1903-1.2.3/LICENSE.rst +1560 -0
- x_phs1903-1.2.3/Makefile +35 -0
- x_phs1903-1.2.3/PKG-INFO +241 -0
- x_phs1903-1.2.3/Pipfile +31 -0
- x_phs1903-1.2.3/Pipfile.lock +1258 -0
- x_phs1903-1.2.3/README.rst +164 -0
- x_phs1903-1.2.3/arduino.yaml +2 -0
- x_phs1903-1.2.3/docs/Makefile +20 -0
- x_phs1903-1.2.3/docs/make.bat +35 -0
- x_phs1903-1.2.3/docs/source/arduino.rst +40 -0
- x_phs1903-1.2.3/docs/source/conf.py +94 -0
- x_phs1903-1.2.3/docs/source/glos.rst +10 -0
- x_phs1903-1.2.3/docs/source/index.rst +20 -0
- x_phs1903-1.2.3/docs/source/license.rst +1 -0
- x_phs1903-1.2.3/docs/source/python.rst +65 -0
- x_phs1903-1.2.3/docs/source/requirements.txt +55 -0
- x_phs1903-1.2.3/keywords.txt +0 -0
- x_phs1903-1.2.3/library.properties +11 -0
- x_phs1903-1.2.3/pip.conf +7 -0
- x_phs1903-1.2.3/pyproject.toml +140 -0
- x_phs1903-1.2.3/requirements.txt +55 -0
- x_phs1903-1.2.3/setup.cfg +4 -0
- x_phs1903-1.2.3/src/arduino/xphs1903.h +69 -0
- x_phs1903-1.2.3/src/x.phs1903.egg-info/PKG-INFO +241 -0
- x_phs1903-1.2.3/src/x.phs1903.egg-info/SOURCES.txt +40 -0
- x_phs1903-1.2.3/src/x.phs1903.egg-info/dependency_links.txt +1 -0
- x_phs1903-1.2.3/src/x.phs1903.egg-info/entry_points.txt +2 -0
- x_phs1903-1.2.3/src/x.phs1903.egg-info/requires.txt +79 -0
- x_phs1903-1.2.3/src/x.phs1903.egg-info/top_level.txt +1 -0
- x_phs1903-1.2.3/src/xphs1903/__init__.py +183 -0
- x_phs1903-1.2.3/src/xphs1903/__main__.py +38 -0
- x_phs1903-1.2.3/src/xphs1903/afficher.py +77 -0
- x_phs1903-1.2.3/src/xphs1903/analyse.py +63 -0
- x_phs1903-1.2.3/src/xphs1903/defs.py +44 -0
- x_phs1903-1.2.3/src/xphs1903/mesure.py +42 -0
- x_phs1903-1.2.3/tests/annonceur/annonceur.ino +101 -0
- x_phs1903-1.2.3/tests/demo.py +39 -0
- x_phs1903-1.2.3/tests/freq_adc/freq_adc.ino +212 -0
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
# Titre: Résumé, à l'impératif, en case de titre sans point à la fin
|
|
2
|
+
# Pas plus de 50 caractères ### C'est là: >|
|
|
3
|
+
# Préfixer le titre de façon appropriée:
|
|
4
|
+
#
|
|
5
|
+
# - ajout:<titre> pour un ajout de fonctionalité
|
|
6
|
+
# - struc:<titre> pour une modification purement structurelle
|
|
7
|
+
# - docum:<titre> pour une modification touchant uniquement la documentation
|
|
8
|
+
# - repar:<titre> pour une correction de bogue
|
|
9
|
+
|
|
10
|
+
# Au moins une ligne vide entre le titre et le corps
|
|
11
|
+
|
|
12
|
+
# Corps: Expliquer le *quoi* et le *pourquoi*. Éviter le *comment*.
|
|
13
|
+
# Faire référence aux questions, séances de cours, projets, etc.
|
|
14
|
+
# Limiter les lignes à 72 caractères, soit là: >|
|
|
15
|
+
|
|
16
|
+
# À la fin: inclure une section Co-authored-by.
|
|
17
|
+
# Placer au moins une ligne vide avant. Format:
|
|
18
|
+
# Co-authored-by: prénom nom <prenom.nom@polymtl.ca>
|
|
19
|
+
#
|
|
20
|
+
# Pour plus d'infos vvvv
|
|
21
|
+
# How to Write a Git Commit Message:
|
|
22
|
+
# https://chris.beams.io/posts/git-commit/
|
|
23
|
+
#
|
|
24
|
+
# 1. Séparer le titre du corps avec une ligne vide
|
|
25
|
+
# 2. Limiter le titre à 50 caractères
|
|
26
|
+
# 3. Mettre le titre en case de titre
|
|
27
|
+
# 4. Ne pas terminer le titre par un point
|
|
28
|
+
# 5. Utiliser l'impératif dans le titre
|
|
29
|
+
# 6. Limiter la largeur du corps à 72 caractères
|
|
30
|
+
# 7. Utiliser le corps pour expliquer le *quoi* et *pourquoi* plutôt que le
|
|
31
|
+
# *comment*
|
|
32
|
+
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
version: 2
|
|
2
|
+
build:
|
|
3
|
+
os: ubuntu-lts-latest
|
|
4
|
+
tools:
|
|
5
|
+
python: "3.14"
|
|
6
|
+
# You can also specify other tool versions:
|
|
7
|
+
# nodejs: "16"
|
|
8
|
+
apt_packages:
|
|
9
|
+
- libclang-14-dev
|
|
10
|
+
|
|
11
|
+
# Build documentation in the docs/ directory with Sphinx
|
|
12
|
+
sphinx:
|
|
13
|
+
configuration: docs/source/conf.py
|
|
14
|
+
|
|
15
|
+
# Dependencies required to build your docs
|
|
16
|
+
python:
|
|
17
|
+
install:
|
|
18
|
+
- requirements: docs/source/requirements.txt
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
# This CITATION.cff file was generated with cffinit.
|
|
2
|
+
# Visit https://bit.ly/cffinit to generate yours today!
|
|
3
|
+
|
|
4
|
+
cff-version: 1.2.0
|
|
5
|
+
title: x.phs1903
|
|
6
|
+
message: >-
|
|
7
|
+
If you use this software, please cite it using the
|
|
8
|
+
metadata from this file.
|
|
9
|
+
type: software
|
|
10
|
+
authors:
|
|
11
|
+
- given-names: Émile
|
|
12
|
+
family-names: Jetzer
|
|
13
|
+
name-suffix: tech.
|
|
14
|
+
email: emile.jetzer@polymtl.ca
|
|
15
|
+
affiliation: Polytechnique Montréal
|
|
16
|
+
orcid: 'https://orcid.org/0009-0001-4576-4480'
|
|
17
|
+
- given-names: Jacques
|
|
18
|
+
family-names: Massicotte
|
|
19
|
+
name-suffix: tech.
|
|
20
|
+
email: jacques-2.massicotte@polymtl.ca
|
|
21
|
+
affiliation: Polytechnique Montréal
|
|
22
|
+
- name: Polytechnique Montréal
|
|
23
|
+
address: 2500 ch de Polytechnique
|
|
24
|
+
city: Montréal
|
|
25
|
+
post-code: H3T 1J4
|
|
26
|
+
region: Québec
|
|
27
|
+
tel: 514-340-4711
|
|
28
|
+
website: 'https://polymtl.ca'
|
|
29
|
+
repository-code: 'https://github.com/ejetzer/x.phs1903'
|
|
30
|
+
keywords:
|
|
31
|
+
- python
|
|
32
|
+
- arduino
|
|
33
|
+
- phs1903
|
|
34
|
+
- polymtl
|
|
35
|
+
license: GPL-3.0-or-later
|