diff --git a/Documentation/Pre-projet/Custom Dongle/Arduino code/GettingStarted/GettingStarted.ino b/Documentation/Pre-projet/Custom Dongle/Arduino code/GettingStarted/GettingStarted.ino new file mode 100644 index 0000000000000000000000000000000000000000..70ac363a5157ba8e69682c03f54ed82dcbe52ae9 --- /dev/null +++ b/Documentation/Pre-projet/Custom Dongle/Arduino code/GettingStarted/GettingStarted.ino @@ -0,0 +1,154 @@ +/* + * See documentation at https://nRF24.github.io/RF24 + * See License information at root directory of this library + * Author: Brendan Doherty (2bndy5) + */ + +/** + * A simple example of sending data from 1 nRF24L01 transceiver to another. + * + * This example was written to be used on 2 devices acting as "nodes". + * Use the Serial Monitor to change each node's behavior. + */ +#include <SPI.h> +#include "printf.h" +#include "RF24.h" + +// instantiate an object for the nRF24L01 transceiver +RF24 radio(10, 9); // using pin 7 for the CE pin, and pin 8 for the CSN pin + +// Let these addresses be used for the pair +uint8_t address[][6] = { "1Node", "2Node" }; +// It is very helpful to think of an address as a path instead of as +// an identifying device destination + +// to use different addresses on a pair of radios, we need a variable to +// uniquely identify which address this radio will use to transmit +bool radioNumber = 1; // 0 uses address[0] to transmit, 1 uses address[1] to transmit + +// Used to control whether this node is sending or receiving +bool role = false; // true = TX role, false = RX role + +// For this example, we'll be using a payload containing +// a single float number that will be incremented +// on every successful transmission +float payload = 0.0; + +void setup() { + + Serial.begin(115200); + while (!Serial) { + // some boards need to wait to ensure access to serial over USB + } + + // initialize the transceiver on the SPI bus + if (!radio.begin()) { + Serial.println(F("radio hardware is not responding!!")); + while (1) {} // hold in infinite loop + } + + // print example's introductory prompt + Serial.println(F("RF24/examples/GettingStarted")); + + // To set the radioNumber via the Serial monitor on startup + Serial.println(F("Which radio is this? Enter '0' or '1'. Defaults to '0'")); + while (!Serial.available()) { + // wait for user input + } + char input = Serial.parseInt(); + radioNumber = input == 1; + Serial.print(F("radioNumber = ")); + Serial.println((int)radioNumber); + + // role variable is hardcoded to RX behavior, inform the user of this + Serial.println(F("*** PRESS 'T' to begin transmitting to the other node")); + + // Set the PA Level low to try preventing power supply related problems + // because these examples are likely run with nodes in close proximity to + // each other. + radio.setPALevel(RF24_PA_LOW); // RF24_PA_MAX is default. + + // save on transmission time by setting the radio to only transmit the + // number of bytes we need to transmit a float + radio.setPayloadSize(sizeof(payload)); // float datatype occupies 4 bytes + + // set the TX address of the RX node into the TX pipe + radio.openWritingPipe(address[radioNumber]); // always uses pipe 0 + + // set the RX address of the TX node into a RX pipe + radio.openReadingPipe(1, address[!radioNumber]); // using pipe 1 + + // additional setup specific to the node's role + if (role) { + radio.stopListening(); // put radio in TX mode + } else { + radio.startListening(); // put radio in RX mode + } + + // For debugging info + // printf_begin(); // needed only once for printing details + // radio.printDetails(); // (smaller) function that prints raw register values + // radio.printPrettyDetails(); // (larger) function that prints human readable data + +} // setup + +void loop() { + + if (role) { + // This device is a TX node + + unsigned long start_timer = micros(); // start the timer + bool report = radio.write(&payload, sizeof(float)); // transmit & save the report + unsigned long end_timer = micros(); // end the timer + + if (report) { + Serial.print(F("Transmission successful! ")); // payload was delivered + Serial.print(F("Time to transmit = ")); + Serial.print(end_timer - start_timer); // print the timer result + Serial.print(F(" us. Sent: ")); + Serial.println(payload); // print payload sent + payload += 0.01; // increment float payload + } else { + Serial.println(F("Transmission failed or timed out")); // payload was not delivered + } + + // to make this example readable in the serial monitor + delay(1000); // slow transmissions down by 1 second + + } else { + // This device is a RX node + + uint8_t pipe; + if (radio.available(&pipe)) { // is there a payload? get the pipe number that recieved it + uint8_t bytes = radio.getPayloadSize(); // get the size of the payload + radio.read(&payload, bytes); // fetch payload from FIFO + Serial.print(F("Received ")); + Serial.print(bytes); // print the size of the payload + Serial.print(F(" bytes on pipe ")); + Serial.print(pipe); // print the pipe number + Serial.print(F(": ")); + Serial.println(payload); // print the payload's value + } + } // role + + if (Serial.available()) { + // change the role via the serial monitor + + char c = toupper(Serial.read()); + if (c == 'T' && !role) { + // Become the TX node + + role = true; + Serial.println(F("*** CHANGING TO TRANSMIT ROLE -- PRESS 'R' TO SWITCH BACK")); + radio.stopListening(); + + } else if (c == 'R' && role) { + // Become the RX node + + role = false; + Serial.println(F("*** CHANGING TO RECEIVE ROLE -- PRESS 'T' TO SWITCH BACK")); + radio.startListening(); + } + } + +} // loop diff --git a/Documentation/Pre-projet/Custom Dongle/Wiring.png b/Documentation/Pre-projet/Custom Dongle/Wiring.png new file mode 100644 index 0000000000000000000000000000000000000000..6eb7f5b45c2fdbe89eb07a3b5d3603065c1c1cb3 Binary files /dev/null and b/Documentation/Pre-projet/Custom Dongle/Wiring.png differ diff --git a/Documentation/Pre-projet/Custom Dongle/dongle-presentation.aux b/Documentation/Pre-projet/Custom Dongle/dongle-presentation.aux new file mode 100644 index 0000000000000000000000000000000000000000..7569d6e25bcd06dee2566cfca08a538fc9b044f2 --- /dev/null +++ b/Documentation/Pre-projet/Custom Dongle/dongle-presentation.aux @@ -0,0 +1,34 @@ +\relax +\providecommand\hyper@newdestlabel[2]{} +\providecommand\babel@aux[2]{} +\@nameuse{bbl@beforestart} +\catcode `:\active +\catcode `;\active +\catcode `!\active +\catcode `?\active +\providecommand\HyperFirstAtBeginDocument{\AtBeginDocument} +\HyperFirstAtBeginDocument{\ifx\hyper@anchor\@undefined +\global\let\oldcontentsline\contentsline +\gdef\contentsline#1#2#3#4{\oldcontentsline{#1}{#2}{#3}} +\global\let\oldnewlabel\newlabel +\gdef\newlabel#1#2{\newlabelxx{#1}#2} +\gdef\newlabelxx#1#2#3#4#5#6{\oldnewlabel{#1}{{#2}{#3}}} +\AtEndDocument{\ifx\hyper@anchor\@undefined +\let\contentsline\oldcontentsline +\let\newlabel\oldnewlabel +\fi} +\fi} +\global\let\hyper@last\relax +\gdef\HyperFirstAtBeginDocument#1{#1} +\providecommand\HyField@AuxAddToFields[1]{} +\providecommand\HyField@AuxAddToCoFields[2]{} +\pgfsyspdfmark {pgfid2}{0}{38412394} +\pgfsyspdfmark {pgfid3}{0}{37462122} +\babel@aux{french}{} +\@writefile{toc}{\contentsline {section}{\numberline {1}Présentation}{1}{section.1}\protected@file@percent } +\@writefile{toc}{\contentsline {section}{\numberline {2}Construction}{1}{section.2}\protected@file@percent } +\@writefile{lof}{\contentsline {figure}{\numberline {1}{\ignorespaces Câblage possible d'une nrf24l01 avec une arduino nano\relax }}{2}{figure.caption.2}\protected@file@percent } +\providecommand*\caption@xref[2]{\@setref\relax\@undefined{#1}} +\newlabel{fig:wiring}{{1}{2}{Câblage possible d'une nrf24l01 avec une arduino nano\relax }{figure.caption.2}{}} +\@writefile{toc}{\contentsline {section}{\numberline {3}Script de contrôle}{2}{section.3}\protected@file@percent } +\gdef \@abspage@last{3} diff --git a/Documentation/Pre-projet/Custom Dongle/dongle-presentation.log b/Documentation/Pre-projet/Custom Dongle/dongle-presentation.log new file mode 100644 index 0000000000000000000000000000000000000000..d6f9a42e33e5530e55f77e3b62afbf05eed1e7e1 --- /dev/null +++ b/Documentation/Pre-projet/Custom Dongle/dongle-presentation.log @@ -0,0 +1,1392 @@ +This is pdfTeX, Version 3.141592653-2.6-1.40.24 (MiKTeX 22.3) (preloaded format=pdflatex 2022.8.25) 25 AUG 2022 20:54 +entering extended mode + \write18 enabled. + %&-line parsing enabled. +**./dongle-presentation.tex +(dongle-presentation.tex +LaTeX2e <2021-11-15> patch level 1 +L3 programming layer <2022-02-24> +(C:/AA_perso/localtex\tex/latex\EPSA-rap-template\EPSA-rap-template.cls +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/latex/base\article.cls +Document Class: article 2021/10/04 v1.4n Standard LaTeX document class +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/latex/base\size12.clo +File: size12.clo 2021/10/04 v1.4n Standard LaTeX file (size option) +) +\c@part=\count185 +\c@section=\count186 +\c@subsection=\count187 +\c@subsubsection=\count188 +\c@paragraph=\count189 +\c@subparagraph=\count190 +\c@figure=\count191 +\c@table=\count192 +\abovecaptionskip=\skip47 +\belowcaptionskip=\skip48 +\bibindent=\dimen138 +) +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/generic/babel\babel.sty +Package: babel 2022/02/26 3.73 The Babel package +\babel@savecnt=\count193 +\U@D=\dimen139 +\l@unhyphenated=\language79 + +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/generic/babel\txtbabel. +def) +\bbl@readstream=\read2 +\bbl@dirlevel=\count194 + +************************************* +* Local config file bblopts.cfg used +* + +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/latex/arabi\bblopts.cfg +File: bblopts.cfg 2005/09/08 v0.1 add Arabic and Farsi to "declared" options of + babel +) +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/generic/babel-french\fr +ench.ldf +Language: french 2022/04/18 v3.5n French support from the babel system +Package babel Info: Hyphen rules for 'acadian' set to \l@french +(babel) (\language22). Reported on input line 91. +Package babel Info: Hyphen rules for 'canadien' set to \l@french +(babel) (\language22). Reported on input line 92. +\FB@nonchar=\count195 +Package babel Info: Making : an active character on input line 430. +Package babel Info: Making ; an active character on input line 431. +Package babel Info: Making ! an active character on input line 432. +Package babel Info: Making ? an active character on input line 433. +\FBguill@level=\count196 +\FBold@everypar=\toks16 +\FB@Mht=\dimen140 +\mc@charclass=\count197 +\mc@charfam=\count198 +\mc@charslot=\count199 +\std@mcc=\count266 +\dec@mcc=\count267 +\listindentFB=\dimen141 +\descindentFB=\dimen142 +\labelindentFB=\dimen143 +\labelwidthFB=\dimen144 +\leftmarginFB=\dimen145 +\parindentFFN=\dimen146 +\FBfnindent=\dimen147 +)) +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/latex/carlisle\scalefnt +.sty) +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/latex/graphics\keyval.s +ty +Package: keyval 2014/10/28 v1.15 key=value parser (DPC) +\KV@toks@=\toks17 +) +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/latex/base\inputenc.sty +Package: inputenc 2021/02/14 v1.3d Input encoding file +\inpenc@prehook=\toks18 +\inpenc@posthook=\toks19 +) +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/latex/placeins\placeins +.sty +Package: placeins 2005/04/18 v 2.2 +) +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/latex/mathtools\mathtoo +ls.sty +Package: mathtools 2022/02/07 v1.28a mathematical typesetting tools + +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/latex/tools\calc.sty +Package: calc 2017/05/25 v4.3 Infix arithmetic (KKT,FJ) +\calc@Acount=\count268 +\calc@Bcount=\count269 +\calc@Adimen=\dimen148 +\calc@Bdimen=\dimen149 +\calc@Askip=\skip49 +\calc@Bskip=\skip50 +LaTeX Info: Redefining \setlength on input line 80. +LaTeX Info: Redefining \addtolength on input line 81. +\calc@Ccount=\count270 +\calc@Cskip=\skip51 +) +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/latex/mathtools\mhsetup +.sty +Package: mhsetup 2021/03/18 v1.4 programming setup (MH) +) +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/latex/amsmath\amsmath.s +ty +Package: amsmath 2021/10/15 v2.17l AMS math features +\@mathmargin=\skip52 + +For additional information on amsmath, use the `?' option. + +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/latex/amsmath\amstext.s +ty +Package: amstext 2021/08/26 v2.01 AMS text + +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/latex/amsmath\amsgen.st +y +File: amsgen.sty 1999/11/30 v2.0 generic functions +\@emptytoks=\toks20 +\ex@=\dimen150 +)) +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/latex/amsmath\amsbsy.st +y +Package: amsbsy 1999/11/29 v1.2d Bold Symbols +\pmbraise@=\dimen151 +) +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/latex/amsmath\amsopn.st +y +Package: amsopn 2021/08/26 v2.02 operator names +) +\inf@bad=\count271 +LaTeX Info: Redefining \frac on input line 234. +\uproot@=\count272 +\leftroot@=\count273 +LaTeX Info: Redefining \overline on input line 399. +\classnum@=\count274 +\DOTSCASE@=\count275 +LaTeX Info: Redefining \ldots on input line 496. +LaTeX Info: Redefining \dots on input line 499. +LaTeX Info: Redefining \cdots on input line 620. +\Mathstrutbox@=\box50 +\strutbox@=\box51 +\big@size=\dimen152 +LaTeX Font Info: Redeclaring font encoding OML on input line 743. +LaTeX Font Info: Redeclaring font encoding OMS on input line 744. +\macc@depth=\count276 +\c@MaxMatrixCols=\count277 +\dotsspace@=\muskip16 +\c@parentequation=\count278 +\dspbrk@lvl=\count279 +\tag@help=\toks21 +\row@=\count280 +\column@=\count281 +\maxfields@=\count282 +\andhelp@=\toks22 +\eqnshift@=\dimen153 +\alignsep@=\dimen154 +\tagshift@=\dimen155 +\tagwidth@=\dimen156 +\totwidth@=\dimen157 +\lineht@=\dimen158 +\@envbody=\toks23 +\multlinegap=\skip53 +\multlinetaggap=\skip54 +\mathdisplay@stack=\toks24 +LaTeX Info: Redefining \[ on input line 2938. +LaTeX Info: Redefining \] on input line 2939. +) +\g_MT_multlinerow_int=\count283 +\l_MT_multwidth_dim=\dimen159 +\origjot=\skip55 +\l_MT_shortvdotswithinadjustabove_dim=\dimen160 +\l_MT_shortvdotswithinadjustbelow_dim=\dimen161 +\l_MT_above_intertext_sep=\dimen162 +\l_MT_below_intertext_sep=\dimen163 +\l_MT_above_shortintertext_sep=\dimen164 +\l_MT_below_shortintertext_sep=\dimen165 +\xmathstrut@box=\box52 +\xmathstrut@dim=\dimen166 +) +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/latex/siunitx\siunitx.s +ty +Package: siunitx 2022-05-03 v3.1.1 A comprehensive (SI) units package +\l__siunitx_angle_tmp_dim=\dimen167 +\l__siunitx_angle_marker_box=\box53 +\l__siunitx_angle_unit_box=\box54 +\l__siunitx_compound_count_int=\count284 + +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/latex/translations\tran +slations.sty +Package: translations 2022/02/05 v1.12 internationalization of LaTeX2e packages + (CN) + +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/latex/etoolbox\etoolbox +.sty +Package: etoolbox 2020/10/05 v2.5k e-TeX tools for LaTeX (JAW) +\etb@tempcnta=\count285 +) +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/generic/pdftexcmds\pdft +excmds.sty +Package: pdftexcmds 2020-06-27 v0.33 Utility functions of pdfTeX for LuaTeX (HO +) + +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/generic/infwarerr\infwa +rerr.sty +Package: infwarerr 2019/12/03 v1.5 Providing info/warning/error messages (HO) +) +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/generic/iftex\iftex.sty +Package: iftex 2022/02/03 v1.0f TeX engine tests +) +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/generic/ltxcmds\ltxcmds +.sty +Package: ltxcmds 2020-05-10 v1.25 LaTeX kernel commands for general use (HO) +) +Package pdftexcmds Info: \pdf@primitive is available. +Package pdftexcmds Info: \pdf@ifprimitive is available. +Package pdftexcmds Info: \pdfdraftmode found. +)) +\l__siunitx_number_exponent_fixed_int=\count286 +\l__siunitx_number_min_decimal_int=\count287 +\l__siunitx_number_min_integer_int=\count288 +\l__siunitx_number_round_precision_int=\count289 +\l__siunitx_number_group_first_int=\count290 +\l__siunitx_number_group_size_int=\count291 +\l__siunitx_number_group_minimum_int=\count292 +\l__siunitx_table_tmp_box=\box55 +\l__siunitx_table_tmp_dim=\dimen168 +\l__siunitx_table_column_width_dim=\dimen169 +\l__siunitx_table_integer_box=\box56 +\l__siunitx_table_decimal_box=\box57 +\l__siunitx_table_before_box=\box58 +\l__siunitx_table_after_box=\box59 +\l__siunitx_table_before_dim=\dimen170 +\l__siunitx_table_carry_dim=\dimen171 +\l__siunitx_unit_tmp_int=\count293 +\l__siunitx_unit_position_int=\count294 +\l__siunitx_unit_total_int=\count295 + +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/latex/l3packages/l3keys +2e\l3keys2e.sty +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/latex/l3kernel\expl3.st +y +Package: expl3 2022-02-24 L3 programming layer (loader) + +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/latex/l3backend\l3backe +nd-pdftex.def +File: l3backend-pdftex.def 2022-02-07 L3 backend support: PDF output (pdfTeX) +\l__color_backend_stack_int=\count296 +\l__pdf_internal_box=\box60 +)) +Package: l3keys2e 2022-01-12 LaTeX2e option processing using LaTeX3 keys +) +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/latex/tools\array.sty +Package: array 2021/10/04 v2.5f Tabular extension package (FMi) +\col@sep=\dimen172 +\ar@mcellbox=\box61 +\extrarowheight=\dimen173 +\NC@list=\toks25 +\extratabsurround=\skip56 +\backup@length=\skip57 +\ar@cellbox=\box62 +)) (C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/latex/float\float.st +y +Package: float 2001/11/08 v1.3d Float enhancements (AL) +\c@float@type=\count297 +\float@exts=\toks26 +\float@box=\box63 +\@float@everytoks=\toks27 +\@floatcapt=\box64 +) +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/latex/graphics\graphicx +.sty +Package: graphicx 2021/09/16 v1.2d Enhanced LaTeX Graphics (DPC,SPQR) + +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/latex/graphics\graphics +.sty +Package: graphics 2021/03/04 v1.4d Standard LaTeX Graphics (DPC,SPQR) + +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/latex/graphics\trig.sty +Package: trig 2021/08/11 v1.11 sin cos tan (DPC) +) +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/latex/graphics-cfg\grap +hics.cfg +File: graphics.cfg 2016/06/04 v1.11 sample graphics configuration +) +Package graphics Info: Driver file: pdftex.def on input line 107. + +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/latex/graphics-def\pdft +ex.def +File: pdftex.def 2020/10/05 v1.2a Graphics/color driver for pdftex +)) +\Gin@req@height=\dimen174 +\Gin@req@width=\dimen175 +) +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/latex/caption\caption.s +ty +Package: caption 2022/03/01 v3.6b Customizing captions (AR) + +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/latex/caption\caption3. +sty +Package: caption3 2022/03/17 v2.3b caption3 kernel (AR) +\caption@tempdima=\dimen176 +\captionmargin=\dimen177 +\caption@leftmargin=\dimen178 +\caption@rightmargin=\dimen179 +\caption@width=\dimen180 +\caption@indent=\dimen181 +\caption@parindent=\dimen182 +\caption@hangindent=\dimen183 +Package caption Info: Standard document class detected. +Package caption Info: french babel package is loaded. +) +\c@caption@flags=\count298 +\c@continuedfloat=\count299 +Package caption Info: float package is loaded. +) +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/latex/caption\subcaptio +n.sty +Package: subcaption 2022/01/07 v1.5 Sub-captions (AR) +\c@subfigure=\count300 +\c@subtable=\count301 +) +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/latex/pgf/frontendlayer +\tikz.sty +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/latex/pgf/basiclayer\pg +f.sty +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/latex/pgf/utilities\pgf +rcs.sty +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/generic/pgf/utilities\p +gfutil-common.tex +\pgfutil@everybye=\toks28 +\pgfutil@tempdima=\dimen184 +\pgfutil@tempdimb=\dimen185 + +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/generic/pgf/utilities\p +gfutil-common-lists.tex)) +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/generic/pgf/utilities\p +gfutil-latex.def +\pgfutil@abb=\box65 +) +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/generic/pgf/utilities\p +gfrcs.code.tex +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/generic/pgf\pgf.revisio +n.tex) +Package: pgfrcs 2021/05/15 v3.1.9a (3.1.9a) +)) +Package: pgf 2021/05/15 v3.1.9a (3.1.9a) + +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/latex/pgf/basiclayer\pg +fcore.sty +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/latex/pgf/systemlayer\p +gfsys.sty +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/generic/pgf/systemlayer +\pgfsys.code.tex +Package: pgfsys 2021/05/15 v3.1.9a (3.1.9a) + +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/generic/pgf/utilities\p +gfkeys.code.tex +\pgfkeys@pathtoks=\toks29 +\pgfkeys@temptoks=\toks30 + +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/generic/pgf/utilities\p +gfkeysfiltered.code.tex +\pgfkeys@tmptoks=\toks31 +)) +\pgf@x=\dimen186 +\pgf@y=\dimen187 +\pgf@xa=\dimen188 +\pgf@ya=\dimen189 +\pgf@xb=\dimen190 +\pgf@yb=\dimen191 +\pgf@xc=\dimen192 +\pgf@yc=\dimen193 +\pgf@xd=\dimen194 +\pgf@yd=\dimen195 +\w@pgf@writea=\write3 +\r@pgf@reada=\read3 +\c@pgf@counta=\count302 +\c@pgf@countb=\count303 +\c@pgf@countc=\count304 +\c@pgf@countd=\count305 +\t@pgf@toka=\toks32 +\t@pgf@tokb=\toks33 +\t@pgf@tokc=\toks34 +\pgf@sys@id@count=\count306 + +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/generic/pgf/systemlayer +\pgf.cfg +File: pgf.cfg 2021/05/15 v3.1.9a (3.1.9a) +) +Driver file for pgf: pgfsys-pdftex.def + +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/generic/pgf/systemlayer +\pgfsys-pdftex.def +File: pgfsys-pdftex.def 2021/05/15 v3.1.9a (3.1.9a) + +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/generic/pgf/systemlayer +\pgfsys-common-pdf.def +File: pgfsys-common-pdf.def 2021/05/15 v3.1.9a (3.1.9a) +))) +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/generic/pgf/systemlayer +\pgfsyssoftpath.code.tex +File: pgfsyssoftpath.code.tex 2021/05/15 v3.1.9a (3.1.9a) +\pgfsyssoftpath@smallbuffer@items=\count307 +\pgfsyssoftpath@bigbuffer@items=\count308 +) +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/generic/pgf/systemlayer +\pgfsysprotocol.code.tex +File: pgfsysprotocol.code.tex 2021/05/15 v3.1.9a (3.1.9a) +)) +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/latex/xcolor\xcolor.sty +Package: xcolor 2021/10/31 v2.13 LaTeX color extensions (UK) + +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/latex/graphics-cfg\colo +r.cfg +File: color.cfg 2016/01/02 v1.6 sample color configuration +) +Package xcolor Info: Driver file: pdftex.def on input line 227. +Package xcolor Info: Model `cmy' substituted by `cmy0' on input line 1352. +Package xcolor Info: Model `hsb' substituted by `rgb' on input line 1356. +Package xcolor Info: Model `RGB' extended on input line 1368. +Package xcolor Info: Model `HTML' substituted by `rgb' on input line 1370. +Package xcolor Info: Model `Hsb' substituted by `hsb' on input line 1371. +Package xcolor Info: Model `tHsb' substituted by `hsb' on input line 1372. +Package xcolor Info: Model `HSB' substituted by `hsb' on input line 1373. +Package xcolor Info: Model `Gray' substituted by `gray' on input line 1374. +Package xcolor Info: Model `wave' substituted by `hsb' on input line 1375. +) +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/generic/pgf/basiclayer\ +pgfcore.code.tex +Package: pgfcore 2021/05/15 v3.1.9a (3.1.9a) + +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/generic/pgf/math\pgfmat +h.code.tex +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/generic/pgf/math\pgfmat +hcalc.code.tex +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/generic/pgf/math\pgfmat +hutil.code.tex) +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/generic/pgf/math\pgfmat +hparser.code.tex +\pgfmath@dimen=\dimen196 +\pgfmath@count=\count309 +\pgfmath@box=\box66 +\pgfmath@toks=\toks35 +\pgfmath@stack@operand=\toks36 +\pgfmath@stack@operation=\toks37 +) +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/generic/pgf/math\pgfmat +hfunctions.code.tex +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/generic/pgf/math\pgfmat +hfunctions.basic.code.tex) +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/generic/pgf/math\pgfmat +hfunctions.trigonometric.code.tex) +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/generic/pgf/math\pgfmat +hfunctions.random.code.tex) +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/generic/pgf/math\pgfmat +hfunctions.comparison.code.tex) +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/generic/pgf/math\pgfmat +hfunctions.base.code.tex) +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/generic/pgf/math\pgfmat +hfunctions.round.code.tex) +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/generic/pgf/math\pgfmat +hfunctions.misc.code.tex) +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/generic/pgf/math\pgfmat +hfunctions.integerarithmetics.code.tex))) +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/generic/pgf/math\pgfmat +hfloat.code.tex +\c@pgfmathroundto@lastzeros=\count310 +)) +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/generic/pgf/math\pgfint +.code.tex) +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/generic/pgf/basiclayer\ +pgfcorepoints.code.tex +File: pgfcorepoints.code.tex 2021/05/15 v3.1.9a (3.1.9a) +\pgf@picminx=\dimen197 +\pgf@picmaxx=\dimen198 +\pgf@picminy=\dimen199 +\pgf@picmaxy=\dimen256 +\pgf@pathminx=\dimen257 +\pgf@pathmaxx=\dimen258 +\pgf@pathminy=\dimen259 +\pgf@pathmaxy=\dimen260 +\pgf@xx=\dimen261 +\pgf@xy=\dimen262 +\pgf@yx=\dimen263 +\pgf@yy=\dimen264 +\pgf@zx=\dimen265 +\pgf@zy=\dimen266 +) +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/generic/pgf/basiclayer\ +pgfcorepathconstruct.code.tex +File: pgfcorepathconstruct.code.tex 2021/05/15 v3.1.9a (3.1.9a) +\pgf@path@lastx=\dimen267 +\pgf@path@lasty=\dimen268 +) +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/generic/pgf/basiclayer\ +pgfcorepathusage.code.tex +File: pgfcorepathusage.code.tex 2021/05/15 v3.1.9a (3.1.9a) +\pgf@shorten@end@additional=\dimen269 +\pgf@shorten@start@additional=\dimen270 +) +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/generic/pgf/basiclayer\ +pgfcorescopes.code.tex +File: pgfcorescopes.code.tex 2021/05/15 v3.1.9a (3.1.9a) +\pgfpic=\box67 +\pgf@hbox=\box68 +\pgf@layerbox@main=\box69 +\pgf@picture@serial@count=\count311 +) +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/generic/pgf/basiclayer\ +pgfcoregraphicstate.code.tex +File: pgfcoregraphicstate.code.tex 2021/05/15 v3.1.9a (3.1.9a) +\pgflinewidth=\dimen271 +) +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/generic/pgf/basiclayer\ +pgfcoretransformations.code.tex +File: pgfcoretransformations.code.tex 2021/05/15 v3.1.9a (3.1.9a) +\pgf@pt@x=\dimen272 +\pgf@pt@y=\dimen273 +\pgf@pt@temp=\dimen274 +) +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/generic/pgf/basiclayer\ +pgfcorequick.code.tex +File: pgfcorequick.code.tex 2021/05/15 v3.1.9a (3.1.9a) +) +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/generic/pgf/basiclayer\ +pgfcoreobjects.code.tex +File: pgfcoreobjects.code.tex 2021/05/15 v3.1.9a (3.1.9a) +) +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/generic/pgf/basiclayer\ +pgfcorepathprocessing.code.tex +File: pgfcorepathprocessing.code.tex 2021/05/15 v3.1.9a (3.1.9a) +) +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/generic/pgf/basiclayer\ +pgfcorearrows.code.tex +File: pgfcorearrows.code.tex 2021/05/15 v3.1.9a (3.1.9a) +\pgfarrowsep=\dimen275 +) +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/generic/pgf/basiclayer\ +pgfcoreshade.code.tex +File: pgfcoreshade.code.tex 2021/05/15 v3.1.9a (3.1.9a) +\pgf@max=\dimen276 +\pgf@sys@shading@range@num=\count312 +\pgf@shadingcount=\count313 +) +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/generic/pgf/basiclayer\ +pgfcoreimage.code.tex +File: pgfcoreimage.code.tex 2021/05/15 v3.1.9a (3.1.9a) + +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/generic/pgf/basiclayer\ +pgfcoreexternal.code.tex +File: pgfcoreexternal.code.tex 2021/05/15 v3.1.9a (3.1.9a) +\pgfexternal@startupbox=\box70 +)) +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/generic/pgf/basiclayer\ +pgfcorelayers.code.tex +File: pgfcorelayers.code.tex 2021/05/15 v3.1.9a (3.1.9a) +) +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/generic/pgf/basiclayer\ +pgfcoretransparency.code.tex +File: pgfcoretransparency.code.tex 2021/05/15 v3.1.9a (3.1.9a) +) +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/generic/pgf/basiclayer\ +pgfcorepatterns.code.tex +File: pgfcorepatterns.code.tex 2021/05/15 v3.1.9a (3.1.9a) +) +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/generic/pgf/basiclayer\ +pgfcorerdf.code.tex +File: pgfcorerdf.code.tex 2021/05/15 v3.1.9a (3.1.9a) +))) +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/generic/pgf/modules\pgf +moduleshapes.code.tex +File: pgfmoduleshapes.code.tex 2021/05/15 v3.1.9a (3.1.9a) +\pgfnodeparttextbox=\box71 +) +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/generic/pgf/modules\pgf +moduleplot.code.tex +File: pgfmoduleplot.code.tex 2021/05/15 v3.1.9a (3.1.9a) +) +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/latex/pgf/compatibility +\pgfcomp-version-0-65.sty +Package: pgfcomp-version-0-65 2021/05/15 v3.1.9a (3.1.9a) +\pgf@nodesepstart=\dimen277 +\pgf@nodesepend=\dimen278 +) +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/latex/pgf/compatibility +\pgfcomp-version-1-18.sty +Package: pgfcomp-version-1-18 2021/05/15 v3.1.9a (3.1.9a) +)) +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/latex/pgf/utilities\pgf +for.sty +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/latex/pgf/utilities\pgf +keys.sty +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/generic/pgf/utilities\p +gfkeys.code.tex)) +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/latex/pgf/math\pgfmath. +sty +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/generic/pgf/math\pgfmat +h.code.tex)) +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/generic/pgf/utilities\p +gffor.code.tex +Package: pgffor 2021/05/15 v3.1.9a (3.1.9a) + +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/generic/pgf/math\pgfmat +h.code.tex) +\pgffor@iter=\dimen279 +\pgffor@skip=\dimen280 +\pgffor@stack=\toks38 +\pgffor@toks=\toks39 +)) +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/generic/pgf/frontendlay +er/tikz\tikz.code.tex +Package: tikz 2021/05/15 v3.1.9a (3.1.9a) + +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/generic/pgf/libraries\p +gflibraryplothandlers.code.tex +File: pgflibraryplothandlers.code.tex 2021/05/15 v3.1.9a (3.1.9a) +\pgf@plot@mark@count=\count314 +\pgfplotmarksize=\dimen281 +) +\tikz@lastx=\dimen282 +\tikz@lasty=\dimen283 +\tikz@lastxsaved=\dimen284 +\tikz@lastysaved=\dimen285 +\tikz@lastmovetox=\dimen286 +\tikz@lastmovetoy=\dimen287 +\tikzleveldistance=\dimen288 +\tikzsiblingdistance=\dimen289 +\tikz@figbox=\box72 +\tikz@figbox@bg=\box73 +\tikz@tempbox=\box74 +\tikz@tempbox@bg=\box75 +\tikztreelevel=\count315 +\tikznumberofchildren=\count316 +\tikznumberofcurrentchild=\count317 +\tikz@fig@count=\count318 + +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/generic/pgf/modules\pgf +modulematrix.code.tex +File: pgfmodulematrix.code.tex 2021/05/15 v3.1.9a (3.1.9a) +\pgfmatrixcurrentrow=\count319 +\pgfmatrixcurrentcolumn=\count320 +\pgf@matrix@numberofcolumns=\count321 +) +\tikz@expandcount=\count322 + +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/generic/pgf/frontendlay +er/tikz/libraries\tikzlibrarytopaths.code.tex +File: tikzlibrarytopaths.code.tex 2021/05/15 v3.1.9a (3.1.9a) +))) +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/generic/pgf/frontendlay +er/tikz/libraries\tikzlibraryshapes.geometric.code.tex +File: tikzlibraryshapes.geometric.code.tex 2021/05/15 v3.1.9a (3.1.9a) + +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/generic/pgf/libraries/s +hapes\pgflibraryshapes.geometric.code.tex +File: pgflibraryshapes.geometric.code.tex 2021/05/15 v3.1.9a (3.1.9a) +)) +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/generic/pgf/frontendlay +er/tikz/libraries\tikzlibrarycalc.code.tex +File: tikzlibrarycalc.code.tex 2021/05/15 v3.1.9a (3.1.9a) +) +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/latex/url\url.sty +\Urlmuskip=\muskip17 +Package: url 2013/09/16 ver 3.4 Verb mode for urls, etc. +) +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/latex/geometry\geometry +.sty +Package: geometry 2020/01/02 v5.9 Page Geometry + +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/generic/iftex\ifvtex.st +y +Package: ifvtex 2019/10/25 v1.7 ifvtex legacy package. Use iftex instead. +) +\Gm@cnth=\count323 +\Gm@cntv=\count324 +\c@Gm@tempcnt=\count325 +\Gm@bindingoffset=\dimen290 +\Gm@wd@mp=\dimen291 +\Gm@odd@mp=\dimen292 +\Gm@even@mp=\dimen293 +\Gm@layoutwidth=\dimen294 +\Gm@layoutheight=\dimen295 +\Gm@layouthoffset=\dimen296 +\Gm@layoutvoffset=\dimen297 +\Gm@dimlist=\toks40 + +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/latex/geometry\geometry +.cfg)) +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/latex/hyperref\hyperref +.sty +Package: hyperref 2022-02-21 v7.00n Hypertext links for LaTeX + +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/generic/kvsetkeys\kvset +keys.sty +Package: kvsetkeys 2019/12/15 v1.18 Key value parser (HO) +) +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/generic/kvdefinekeys\kv +definekeys.sty +Package: kvdefinekeys 2019-12-19 v1.6 Define keys (HO) +) +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/generic/pdfescape\pdfes +cape.sty +Package: pdfescape 2019/12/09 v1.15 Implements pdfTeX's escape features (HO) +) +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/latex/hycolor\hycolor.s +ty +Package: hycolor 2020-01-27 v1.10 Color options for hyperref/bookmark (HO) +) +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/latex/letltxmacro\letlt +xmacro.sty +Package: letltxmacro 2019/12/03 v1.6 Let assignment for LaTeX macros (HO) +) +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/latex/auxhook\auxhook.s +ty +Package: auxhook 2019-12-17 v1.6 Hooks for auxiliary files (HO) +) +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/latex/kvoptions\kvoptio +ns.sty +Package: kvoptions 2020-10-07 v3.14 Key value format for package options (HO) +) +\@linkdim=\dimen298 +\Hy@linkcounter=\count326 +\Hy@pagecounter=\count327 + +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/latex/hyperref\pd1enc.d +ef +File: pd1enc.def 2022-02-21 v7.00n Hyperref: PDFDocEncoding definition (HO) +Now handling font encoding PD1 ... +... no UTF-8 mapping file for font encoding PD1 +) +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/generic/intcalc\intcalc +.sty +Package: intcalc 2019/12/15 v1.3 Expandable calculations with integers (HO) +) +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/generic/etexcmds\etexcm +ds.sty +Package: etexcmds 2019/12/15 v1.7 Avoid name clashes with e-TeX commands (HO) +) +\Hy@SavedSpaceFactor=\count328 + +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/latex/hyperref\puenc.de +f +File: puenc.def 2022-02-21 v7.00n Hyperref: PDF Unicode definition (HO) +Now handling font encoding PU ... +... no UTF-8 mapping file for font encoding PU +) +Package hyperref Info: Hyper figures OFF on input line 4137. +Package hyperref Info: Link nesting OFF on input line 4142. +Package hyperref Info: Hyper index ON on input line 4145. +Package hyperref Info: Plain pages OFF on input line 4152. +Package hyperref Info: Backreferencing OFF on input line 4157. +Package hyperref Info: Implicit mode ON; LaTeX internals redefined. +Package hyperref Info: Bookmarks ON on input line 4390. +\c@Hy@tempcnt=\count329 +LaTeX Info: Redefining \url on input line 4749. +\XeTeXLinkMargin=\dimen299 + +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/generic/bitset\bitset.s +ty +Package: bitset 2019/12/09 v1.3 Handle bit-vector datatype (HO) + +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/generic/bigintcalc\bigi +ntcalc.sty +Package: bigintcalc 2019/12/15 v1.5 Expandable calculations on big integers (HO +) +)) +\Fld@menulength=\count330 +\Field@Width=\dimen300 +\Fld@charsize=\dimen301 +Package hyperref Info: Hyper figures OFF on input line 6027. +Package hyperref Info: Link nesting OFF on input line 6032. +Package hyperref Info: Hyper index ON on input line 6035. +Package hyperref Info: backreferencing OFF on input line 6042. +Package hyperref Info: Link coloring OFF on input line 6047. +Package hyperref Info: Link coloring with OCG OFF on input line 6052. +Package hyperref Info: PDF/A mode OFF on input line 6057. +LaTeX Info: Redefining \ref on input line 6097. +LaTeX Info: Redefining \pageref on input line 6101. + +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/latex/base\atbegshi-ltx +.sty +Package: atbegshi-ltx 2021/01/10 v1.0c Emulation of the original atbegshi +package with kernel methods +) +\Hy@abspage=\count331 +\c@Item=\count332 +\c@Hfootnote=\count333 +) +Package hyperref Info: Driver: hpdftex. + +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/latex/hyperref\hpdftex. +def +File: hpdftex.def 2022-02-21 v7.00n Hyperref driver for pdfTeX + +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/latex/base\atveryend-lt +x.sty +Package: atveryend-ltx 2020/08/19 v1.0a Emulation of the original atveryend pac +kage +with kernel methods +) +\Fld@listcount=\count334 +\c@bookmark@seq@number=\count335 + +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/latex/rerunfilecheck\re +runfilecheck.sty +Package: rerunfilecheck 2019/12/05 v1.9 Rerun checks for auxiliary files (HO) + +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/generic/uniquecounter\u +niquecounter.sty +Package: uniquecounter 2019/12/15 v1.4 Provide unlimited unique counter (HO) +) +Package uniquecounter Info: New unique counter `rerunfilecheck' on input line 2 +86. +) +\Hy@SectionHShift=\skip58 +) +\headeroffset=\skip59 +\headerheight=\skip60 +\titlestraw=\skip61 +\EPSALogo=\skip62 +\EPSAoff=\skip63 +\ECLLogo=\skip64 +\SecBar=\skip65 +\margintop=\skip66 +\marginbottom=\skip67 +\marginright=\skip68 +\marginleft=\skip69 + +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/latex/montserrat\montse +rrat.sty +Package: montserrat 2019/11/07 v1.03 + +`montserrat' v1.03, 2019/11/07 Style file for Montserrat and Alternates (msharp +e) +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/latex/base\fontenc.sty +Package: fontenc 2021/04/29 v2.0v Standard LaTeX package + +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/latex/ly1\ly1enc.def +File: ly1enc.def 2022/06/11 v0.8 TeX 'n ANSI encoding (DPC/KB) +Now handling font encoding LY1 ... +... processing UTF-8 mapping file for font encoding LY1 + +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/latex/base\ly1enc.dfu +File: ly1enc.dfu 2021/06/21 v1.2n UTF-8 support + defining Unicode char U+00A0 (decimal 160) + defining Unicode char U+00A1 (decimal 161) + defining Unicode char U+00A2 (decimal 162) + defining Unicode char U+00A3 (decimal 163) + defining Unicode char U+00A4 (decimal 164) + defining Unicode char U+00A5 (decimal 165) + defining Unicode char U+00A6 (decimal 166) + defining Unicode char U+00A7 (decimal 167) + defining Unicode char U+00AA (decimal 170) + defining Unicode char U+00AB (decimal 171) + defining Unicode char U+00AD (decimal 173) + defining Unicode char U+00AE (decimal 174) + defining Unicode char U+00B0 (decimal 176) + defining Unicode char U+00B5 (decimal 181) + defining Unicode char U+00B6 (decimal 182) + defining Unicode char U+00B7 (decimal 183) + defining Unicode char U+00BA (decimal 186) + defining Unicode char U+00BB (decimal 187) + defining Unicode char U+00BC (decimal 188) + defining Unicode char U+00BD (decimal 189) + defining Unicode char U+00BE (decimal 190) + defining Unicode char U+00BF (decimal 191) + defining Unicode char U+00C0 (decimal 192) + defining Unicode char U+00C1 (decimal 193) + defining Unicode char U+00C2 (decimal 194) + defining Unicode char U+00C3 (decimal 195) + defining Unicode char U+00C4 (decimal 196) + defining Unicode char U+00C5 (decimal 197) + defining Unicode char U+00C6 (decimal 198) + defining Unicode char U+00C7 (decimal 199) + defining Unicode char U+00C8 (decimal 200) + defining Unicode char U+00C9 (decimal 201) + defining Unicode char U+00CA (decimal 202) + defining Unicode char U+00CB (decimal 203) + defining Unicode char U+00CC (decimal 204) + defining Unicode char U+00CD (decimal 205) + defining Unicode char U+00CE (decimal 206) + defining Unicode char U+00CF (decimal 207) + defining Unicode char U+00D0 (decimal 208) + defining Unicode char U+00D1 (decimal 209) + defining Unicode char U+00D2 (decimal 210) + defining Unicode char U+00D3 (decimal 211) + defining Unicode char U+00D4 (decimal 212) + defining Unicode char U+00D5 (decimal 213) + defining Unicode char U+00D6 (decimal 214) + defining Unicode char U+00D8 (decimal 216) + defining Unicode char U+00D9 (decimal 217) + defining Unicode char U+00DA (decimal 218) + defining Unicode char U+00DB (decimal 219) + defining Unicode char U+00DC (decimal 220) + defining Unicode char U+00DD (decimal 221) + defining Unicode char U+00DE (decimal 222) + defining Unicode char U+00DF (decimal 223) + defining Unicode char U+00E0 (decimal 224) + defining Unicode char U+00E1 (decimal 225) + defining Unicode char U+00E2 (decimal 226) + defining Unicode char U+00E3 (decimal 227) + defining Unicode char U+00E4 (decimal 228) + defining Unicode char U+00E5 (decimal 229) + defining Unicode char U+00E6 (decimal 230) + defining Unicode char U+00E7 (decimal 231) + defining Unicode char U+00E8 (decimal 232) + defining Unicode char U+00E9 (decimal 233) + defining Unicode char U+00EA (decimal 234) + defining Unicode char U+00EB (decimal 235) + defining Unicode char U+00EC (decimal 236) + defining Unicode char U+00ED (decimal 237) + defining Unicode char U+00EE (decimal 238) + defining Unicode char U+00EF (decimal 239) + defining Unicode char U+00F0 (decimal 240) + defining Unicode char U+00F1 (decimal 241) + defining Unicode char U+00F2 (decimal 242) + defining Unicode char U+00F3 (decimal 243) + defining Unicode char U+00F4 (decimal 244) + defining Unicode char U+00F5 (decimal 245) + defining Unicode char U+00F6 (decimal 246) + defining Unicode char U+00F8 (decimal 248) + defining Unicode char U+00F9 (decimal 249) + defining Unicode char U+00FA (decimal 250) + defining Unicode char U+00FB (decimal 251) + defining Unicode char U+00FC (decimal 252) + defining Unicode char U+00FD (decimal 253) + defining Unicode char U+00FE (decimal 254) + defining Unicode char U+00FF (decimal 255) + defining Unicode char U+0131 (decimal 305) + defining Unicode char U+0141 (decimal 321) + defining Unicode char U+0142 (decimal 322) + defining Unicode char U+0152 (decimal 338) + defining Unicode char U+0153 (decimal 339) + defining Unicode char U+0160 (decimal 352) + defining Unicode char U+0161 (decimal 353) + defining Unicode char U+0174 (decimal 372) + defining Unicode char U+0175 (decimal 373) + defining Unicode char U+0176 (decimal 374) + defining Unicode char U+0177 (decimal 375) + defining Unicode char U+0178 (decimal 376) + defining Unicode char U+017D (decimal 381) + defining Unicode char U+017E (decimal 382) + defining Unicode char U+0192 (decimal 402) + defining Unicode char U+0218 (decimal 536) + defining Unicode char U+0219 (decimal 537) + defining Unicode char U+021A (decimal 538) + defining Unicode char U+021B (decimal 539) + defining Unicode char U+0237 (decimal 567) + defining Unicode char U+02C6 (decimal 710) + defining Unicode char U+02DC (decimal 732) + defining Unicode char U+2013 (decimal 8211) + defining Unicode char U+2014 (decimal 8212) + defining Unicode char U+201C (decimal 8220) + defining Unicode char U+201D (decimal 8221) + defining Unicode char U+2020 (decimal 8224) + defining Unicode char U+2021 (decimal 8225) + defining Unicode char U+2022 (decimal 8226) + defining Unicode char U+2026 (decimal 8230) + defining Unicode char U+2030 (decimal 8240) + defining Unicode char U+2039 (decimal 8249) + defining Unicode char U+203A (decimal 8250) + defining Unicode char U+2122 (decimal 8482) + defining Unicode char U+FB00 (decimal 64256) + defining Unicode char U+FB01 (decimal 64257) + defining Unicode char U+FB02 (decimal 64258) + defining Unicode char U+FB03 (decimal 64259) + defining Unicode char U+FB04 (decimal 64260) + defining Unicode char U+FB05 (decimal 64261) + defining Unicode char U+FB06 (decimal 64262) +))) +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/latex/base\textcomp.sty +Package: textcomp 2020/02/02 v2.0n Standard LaTeX package +) +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/latex/fontaxes\fontaxes +.sty +Package: fontaxes 2020/07/21 v1.0e Font selection axes +LaTeX Info: Redefining \upshape on input line 29. +LaTeX Info: Redefining \itshape on input line 31. +LaTeX Info: Redefining \slshape on input line 33. +LaTeX Info: Redefining \swshape on input line 35. +LaTeX Info: Redefining \scshape on input line 37. +LaTeX Info: Redefining \sscshape on input line 39. +LaTeX Info: Redefining \ulcshape on input line 41. +LaTeX Info: Redefining \textsw on input line 47. +LaTeX Info: Redefining \textssc on input line 48. +LaTeX Info: Redefining \textulc on input line 49. +) +LaTeX Info: Redefining \textin on input line 42. + +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/latex/xkeyval\xkeyval.s +ty +Package: xkeyval 2020/11/20 v2.8 package option processing (HA) + +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/generic/xkeyval\xkeyval +.tex +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/generic/xkeyval\xkvutil +s.tex +\XKV@toks=\toks41 +\XKV@tempa@toks=\toks42 +) +\XKV@depth=\count336 +File: xkeyval.tex 2014/12/03 v2.7a key=value parser (HA) +))) +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/latex/base\fontenc.sty +Package: fontenc 2021/04/29 v2.0v Standard LaTeX package +LaTeX Font Info: Trying to load font information for T1+Montserrat-TLF on in +put line 112. + +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/latex/montserrat\t1mont +serrat-tlf.fd +File: T1Montserrat-TLF.fd 2019/11/07 (autoinst) Font definitions for T1/Montser +rat-TLF. +) +LaTeX Font Info: Font shape `T1/Montserrat-TLF/regular/n' will be +(Font) scaled to size 12.0pt on input line 112. +) +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/latex/xpatch\xpatch.sty +Package: xpatch 2020/03/25 v0.3a Extending etoolbox patching commands + +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/latex/l3packages/xparse +\xparse.sty +Package: xparse 2022-01-12 L3 Experimental document command parser +)) +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/latex/koma-script\scrla +yer-scrpage.sty +Package: scrlayer-scrpage 2021/11/13 v3.35 KOMA-Script package (end user interf +ace for scrlayer) + +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/latex/koma-script\scrla +yer.sty +Package: scrlayer 2021/11/13 v3.35 KOMA-Script package (defining layers and pag +e styles) + +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/latex/koma-script\scrkb +ase.sty +Package: scrkbase 2021/11/13 v3.35 KOMA-Script package (KOMA-Script-dependent b +asics and keyval usage) + +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/latex/koma-script\scrba +se.sty +Package: scrbase 2021/11/13 v3.35 KOMA-Script package (KOMA-Script-independent +basics and keyval usage) + +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/latex/koma-script\scrlf +ile.sty +Package: scrlfile 2021/11/13 v3.35 KOMA-Script package (file load hooks) + +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/latex/koma-script\scrlf +ile-hook.sty +Package: scrlfile-hook 2021/11/13 v3.35 KOMA-Script package (using LaTeX hooks) + + +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/latex/koma-script\scrlo +go.sty +Package: scrlogo 2021/11/13 v3.35 KOMA-Script package (logo) +))) +Applying: [2021/05/01] Usage of raw or classic option list on input line 252. +Already applied: [0000/00/00] Usage of raw or classic option list on input line + 368. +)) +\footheight=\skip70 +Package scrlayer Info: patching LaTeX kernel macro \pagestyle on input line 216 +2. +) +Package scrbase Info: Unknown processing state. +(scrbase) Processing option `markcase=noupper' +(scrbase) of member `.scrlayer-scrpage.sty' of family +(scrbase) `KOMA' doesn't set +(scrbase) a valid state. This will be interpreted +(scrbase) as \FamilyKeyStateProcessed on input line 636. +) +Package scrlayer-scrpage Info: auto-selection of `pagestyleset=standard'. + +1: subsection +1: section +1: section +1: subsection +) +Package hyperref Info: Option `unicode' set `true' on input line 26. +Package hyperref Info: Option `colorlinks' set `true' on input line 26. + (dongle-presentation.aux) +\openout1 = `dongle-presentation.aux'. + +LaTeX Font Info: Checking defaults for OML/cmm/m/it on input line 28. +LaTeX Font Info: ... okay on input line 28. +LaTeX Font Info: Checking defaults for OMS/cmsy/m/n on input line 28. +LaTeX Font Info: ... okay on input line 28. +LaTeX Font Info: Checking defaults for OT1/cmr/m/n on input line 28. +LaTeX Font Info: ... okay on input line 28. +LaTeX Font Info: Checking defaults for T1/cmr/m/n on input line 28. +LaTeX Font Info: ... okay on input line 28. +LaTeX Font Info: Checking defaults for TS1/cmr/m/n on input line 28. +LaTeX Font Info: ... okay on input line 28. +LaTeX Font Info: Checking defaults for OMX/cmex/m/n on input line 28. +LaTeX Font Info: ... okay on input line 28. +LaTeX Font Info: Checking defaults for U/cmr/m/n on input line 28. +LaTeX Font Info: ... okay on input line 28. +LaTeX Font Info: Checking defaults for PD1/pdf/m/n on input line 28. +LaTeX Font Info: ... okay on input line 28. +LaTeX Font Info: Checking defaults for PU/pdf/m/n on input line 28. +LaTeX Font Info: ... okay on input line 28. +LaTeX Font Info: Checking defaults for LY1/ptm/m/n on input line 28. +LaTeX Font Info: Trying to load font information for LY1+ptm on input line 2 +8. + +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/latex/ly1\ly1ptm.fd +File: ly1ptm.fd 2001/02/01 font definitions for LY1/ptm using Berry names. +) +LaTeX Font Info: ... okay on input line 28. +LaTeX Info: Redefining \degres on input line 28. +LaTeX Info: Redefining \up on input line 28. + +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/latex/translations/dict +s\translations-basic-dictionary-french.trsl +File: translations-basic-dictionary-french.trsl (french translation file `trans +lations-basic-dictionary') +) +Package translations Info: loading dictionary `translations-basic-dictionary' f +or `french'. on input line 28. + +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/context/base/mkii\supp- +pdf.mkii +[Loading MPS to PDF converter (version 2006.09.02).] +\scratchcounter=\count337 +\scratchdimen=\dimen302 +\scratchbox=\box76 +\nofMPsegments=\count338 +\nofMParguments=\count339 +\everyMPshowfont=\toks43 +\MPscratchCnt=\count340 +\MPscratchDim=\dimen303 +\MPnumerator=\count341 +\makeMPintoPDFobject=\count342 +\everyMPtoPDFconversion=\toks44 +) +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/latex/epstopdf-pkg\epst +opdf-base.sty +Package: epstopdf-base 2020-01-24 v2.11 Base part for package epstopdf + +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/latex/grfext\grfext.sty +Package: grfext 2019/12/03 v1.3 Manage graphics extensions (HO) +) +Package epstopdf-base Info: Redefining graphics rule for `.eps' on input line 4 +85. +Package grfext Info: Graphics extension search list: +(grfext) [.pdf,.png,.jpg,.mps,.jpeg,.jbig2,.jb2,.PDF,.PNG,.JPG,.JPE +G,.JBIG2,.JB2,.eps] +(grfext) \AppendGraphicsExtensions on input line 504. + +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/latex/00miktex\epstopdf +-sys.cfg +File: epstopdf-sys.cfg 2021/03/18 v2.0 Configuration of epstopdf for MiKTeX +)) +Package caption Info: Begin \AtBeginDocument code. +Package caption Info: hyperref package is loaded. +Package caption Info: End \AtBeginDocument code. + +*geometry* driver: auto-detecting +*geometry* detected driver: pdftex +*geometry* verbose mode - [ preamble ] result: +* driver: pdftex +* paper: <default> +* layout: <same size as paper> +* layoutoffset:(h,v)=(0.0pt,0.0pt) +* modes: +* h-part:(L,W,R)=(71.13188pt, 469.47049pt, 56.9055pt) +* v-part:(T,H,B)=(85.35826pt, 660.10394pt, 99.58464pt) +* \paperwidth=597.50787pt +* \paperheight=845.04684pt +* \textwidth=469.47049pt +* \textheight=660.10394pt +* \oddsidemargin=-1.1381pt +* \evensidemargin=-1.1381pt +* \topmargin=-23.91173pt +* \headheight=12.0pt +* \headsep=25.0pt +* \topskip=12.0pt +* \footskip=30.0pt +* \marginparwidth=35.0pt +* \marginparsep=10.0pt +* \columnsep=10.0pt +* \skip\footins=10.8pt plus 4.0pt minus 2.0pt +* \hoffset=0.0pt +* \voffset=0.0pt +* \mag=1000 +* \@twocolumnfalse +* \@twosidefalse +* \@mparswitchfalse +* \@reversemarginfalse +* (1in=72.27pt=25.4mm, 1cm=28.453pt) + +Package hyperref Info: Link coloring ON on input line 28. + +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/latex/hyperref\nameref. +sty +Package: nameref 2021-04-02 v2.47 Cross-referencing by name of section + +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/latex/refcount\refcount +.sty +Package: refcount 2019/12/15 v3.6 Data extraction from label references (HO) +) +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/generic/gettitlestring\ +gettitlestring.sty +Package: gettitlestring 2019/12/15 v1.6 Cleanup title references (HO) +) +\c@section@level=\count343 +) +LaTeX Info: Redefining \ref on input line 28. +LaTeX Info: Redefining \pageref on input line 28. +LaTeX Info: Redefining \nameref on input line 28. + (dongle-presentation.out) (dongle-presentation.out) +\@outlinefile=\write4 +\openout4 = `dongle-presentation.out'. + +\c@mv@tabular=\count344 +\c@mv@boldtabular=\count345 +Package scrlayer Info: Setting magic \footheight to \baselineskip while +(scrlayer) \begin{document} on input line 28. + + +Package scrlayer-scrpage Warning: Very small head height detected! +(scrlayer-scrpage) Using scrlayer-scrpage the head height +(scrlayer-scrpage) should be at least \baselineskip, which is +(scrlayer-scrpage) 14.5pt currently. +(scrlayer-scrpage) But head height is currently 12.0pt only. +(scrlayer-scrpage) You may use +(scrlayer-scrpage) geometry option `head=14.5pt' +(scrlayer-scrpage) \relax to avoid this warning. + +*geometry* verbose mode - [ newgeometry ] result: +* driver: pdftex +* paper: <default> +* layout: <same size as paper> +* layoutoffset:(h,v)=(0.0pt,0.0pt) +* modes: +* h-part:(L,W,R)=(71.13188pt, 469.47049pt, 56.9055pt) +* v-part:(T,H,B)=(85.35826pt, 717.00946pt, 42.67912pt) +* \paperwidth=597.50787pt +* \paperheight=845.04684pt +* \textwidth=469.47049pt +* \textheight=717.00946pt +* \oddsidemargin=-1.1381pt +* \evensidemargin=-1.1381pt +* \topmargin=-23.91173pt +* \headheight=12.0pt +* \headsep=25.0pt +* \topskip=12.0pt +* \footskip=30.0pt +* \marginparwidth=35.0pt +* \marginparsep=10.0pt +* \columnsep=10.0pt +* \skip\footins=10.8pt plus 4.0pt minus 2.0pt +* \hoffset=0.0pt +* \voffset=0.0pt +* \mag=1000 +* \@twocolumnfalse +* \@twosidefalse +* \@mparswitchfalse +* \@reversemarginfalse +* (1in=72.27pt=25.4mm, 1cm=28.453pt) + +<logos/Logo_EPSA_2019.png, id=14, 523.2348pt x 139.11975pt> +File: logos/Logo_EPSA_2019.png Graphic file (type png) +<use logos/Logo_EPSA_2019.png> +Package pdftex.def Info: logos/Logo_EPSA_2019.png used on input line 30. +(pdftex.def) Requested size: 428.04933pt x 113.81102pt. +LaTeX Font Info: Font shape `T1/Montserrat-TLF/regular/n' will be +(Font) scaled to size 20.74pt on input line 30. +LaTeX Font Info: Font shape `T1/Montserrat-TLF/bold/n' will be +(Font) scaled to size 20.74pt on input line 30. +LaTeX Font Info: Font shape `T1/Montserrat-TLF/regular/n' will be +(Font) scaled to size 17.28pt on input line 30. +<logos/LogoCentrale.png, id=16, 1505.625pt x 1505.625pt> +File: logos/LogoCentrale.png Graphic file (type png) +<use logos/LogoCentrale.png> +Package pdftex.def Info: logos/LogoCentrale.png used on input line 30. +(pdftex.def) Requested size: 133.72786pt x 133.70844pt. + +Overfull \hbox (24.66261pt too wide) in paragraph at lines 30--30 +[]| [] [] + [] + +LaTeX Font Info: Font shape `T1/Montserrat-TLF/bold/n' will be +(Font) scaled to size 12.0pt on input line 30. +LaTeX Font Info: Font shape `T1/Montserrat-TLF/bold/n' will be +(Font) scaled to size 17.28pt on input line 30. +LaTeX Font Info: Font shape `T1/Montserrat-TLF/regular/n' will be +(Font) scaled to size 14.4pt on input line 30. +LaTeX Font Info: Font shape `T1/Montserrat-TLF/regular/it' will be +(Font) scaled to size 14.4pt on input line 30. +LaTeX Font Info: Font shape `T1/Montserrat-TLF/bold/it' will be +(Font) scaled to size 14.4pt on input line 30. +LaTeX Font Info: Font shape `T1/Montserrat-TLF/bold/n' will be +(Font) scaled to size 14.4pt on input line 30. +LaTeX Font Info: Font shape `T1/Montserrat-TLF/regular/n' will be +(Font) scaled to size 10.0pt on input line 30. +LaTeX Font Info: Font shape `T1/Montserrat-TLF/bold/n' will be +(Font) scaled to size 10.0pt on input line 30. +Missing character: There is no , in font nullfont! +<logos/texte centrale.png, id=17, 1504.8722pt x 301.125pt> +File: logos/texte centrale.png Graphic file (type png) +<use logos/texte centrale.png> +Package pdftex.def Info: logos/texte centrale.png used on input line 30. +(pdftex.def) Requested size: 227.62204pt x 45.54356pt. + +Overfull \hbox (56.9055pt too wide) has occurred while \output is active +[]|[][][] + [] + +[1 + + +{C:/Users/Utilisateur/AppData/Local/MiKTeX/fonts/map/pdftex/pdftex.map} <C:/AA_ +perso/localtex/tex/latex/EPSA-rap-template/logos/Logo_EPSA_2019.png> <C:/AA_per +so/localtex/tex/latex/EPSA-rap-template/logos/LogoCentrale.png> <C:/AA_perso/lo +caltex/tex/latex/EPSA-rap-template/logos/texte centrale.png>] +(dongle-presentation.toc) +\tf@toc=\write5 +\openout5 = `dongle-presentation.toc'. + +<Wiring.png, id=32, 367.3725pt x 539.01375pt> +File: Wiring.png Graphic file (type png) +<use Wiring.png> +Package pdftex.def Info: Wiring.png used on input line 46. +(pdftex.def) Requested size: 187.78532pt x 275.52667pt. +LaTeX Font Info: Font shape `T1/Montserrat-TLF/regular/sc' will be +(Font) scaled to size 12.0pt on input line 47. +File: logos/LogoCentrale.png Graphic file (type png) +<use logos/LogoCentrale.png> +Package pdftex.def Info: logos/LogoCentrale.png used on input line 51. +(pdftex.def) Requested size: 17.06964pt x 17.07182pt. +<logos/Logo_EPSA_2019_r.png, id=33, 487.0998pt x 87.80804pt> +File: logos/Logo_EPSA_2019_r.png Graphic file (type png) +<use logos/Logo_EPSA_2019_r.png> +Package pdftex.def Info: logos/Logo_EPSA_2019_r.png used on input line 51. +(pdftex.def) Requested size: 94.69792pt x 17.07182pt. + +pdfTeX warning (ext4): destination with the same identifier (name{page.1}) has +been already used, duplicate ignored +<to be read again> + \relax +l.51 \section + {Script de contrôle} [1 + + <C:/AA_perso/localtex/tex/latex/EPSA-rap-template/logos/Logo_EPSA_2019_r.png>] +File: logos/LogoCentrale.png Graphic file (type png) +<use logos/LogoCentrale.png> +Package pdftex.def Info: logos/LogoCentrale.png used on input line 56. +(pdftex.def) Requested size: 17.06964pt x 17.07182pt. +File: logos/Logo_EPSA_2019_r.png Graphic file (type png) +<use logos/Logo_EPSA_2019_r.png> +Package pdftex.def Info: logos/Logo_EPSA_2019_r.png used on input line 56. +(pdftex.def) Requested size: 94.69792pt x 17.07182pt. + [2 <./Wiring.png>] +(dongle-presentation.aux) + +Package rerunfilecheck Warning: File `dongle-presentation.out' has changed. +(rerunfilecheck) Rerun to get outlines right +(rerunfilecheck) or use package `bookmark'. + +Package rerunfilecheck Info: Checksums for `dongle-presentation.out': +(rerunfilecheck) Before: 3640838EBE8E1D39B6AD43AF74510D9D;209 +(rerunfilecheck) After: 574C9704E8176759D741363C2D36F36A;351. + ) +Here is how much of TeX's memory you used: + 31763 strings out of 478582 + 675764 string characters out of 2841512 + 944678 words of memory out of 3000000 + 49458 multiletter control sequences out of 15000+600000 + 665094 words of font info for 54 fonts, out of 8000000 for 9000 + 1141 hyphenation exceptions out of 8191 + 138i,18n,134p,441b,955s stack positions out of 10000i,1000n,20000p,200000b,80000s +{C:/Users/Utilisateur/AppData/Local/Programs/MiKTeX/fonts/enc/dvips/montserra +t/zmo_poz7al.enc}{C:/Users/Utilisateur/AppData/Local/Programs/MiKTeX/fonts/enc/ +dvips/montserrat/zmo_bapnwu.enc}<C:/Users/Utilisateur/AppData/Local/Programs/Mi +KTeX/fonts/type1/public/montserrat/Montserrat-Bold.pfb><C:/Users/Utilisateur/Ap +pData/Local/Programs/MiKTeX/fonts/type1/public/montserrat/Montserrat-BoldItalic +.pfb><C:/Users/Utilisateur/AppData/Local/Programs/MiKTeX/fonts/type1/public/mon +tserrat/Montserrat-Regular.pfb> +Output written on dongle-presentation.pdf (3 pages, 477880 bytes). +PDF statistics: + 69 PDF objects out of 1000 (max. 8388607) + 8 named destinations out of 1000 (max. 500000) + 54 words of extra memory for PDF output out of 10000 (max. 10000000) + diff --git a/Documentation/Pre-projet/Custom Dongle/dongle-presentation.out b/Documentation/Pre-projet/Custom Dongle/dongle-presentation.out new file mode 100644 index 0000000000000000000000000000000000000000..741a54bb492ff6394b045848595f4598ea0ab8ff --- /dev/null +++ b/Documentation/Pre-projet/Custom Dongle/dongle-presentation.out @@ -0,0 +1,3 @@ +\BOOKMARK [1][-]{section.1}{\376\377\000P\000r\000\351\000s\000e\000n\000t\000a\000t\000i\000o\000n}{}% 1 +\BOOKMARK [1][-]{section.2}{\376\377\000C\000o\000n\000s\000t\000r\000u\000c\000t\000i\000o\000n}{}% 2 +\BOOKMARK [1][-]{section.3}{\376\377\000S\000c\000r\000i\000p\000t\000\040\000d\000e\000\040\000c\000o\000n\000t\000r\000\364\000l\000e}{}% 3 diff --git a/Documentation/Pre-projet/Custom Dongle/dongle-presentation.pdf b/Documentation/Pre-projet/Custom Dongle/dongle-presentation.pdf new file mode 100644 index 0000000000000000000000000000000000000000..131a952c8ecbea725baae9bd89cb76b11bbe55d9 Binary files /dev/null and b/Documentation/Pre-projet/Custom Dongle/dongle-presentation.pdf differ diff --git a/Documentation/Pre-projet/Custom Dongle/dongle-presentation.synctex.gz b/Documentation/Pre-projet/Custom Dongle/dongle-presentation.synctex.gz new file mode 100644 index 0000000000000000000000000000000000000000..5bfa60408a0d06281a78c7bbb6bb2e705b25a682 Binary files /dev/null and b/Documentation/Pre-projet/Custom Dongle/dongle-presentation.synctex.gz differ diff --git a/Documentation/Pre-projet/Custom Dongle/dongle-presentation.tex b/Documentation/Pre-projet/Custom Dongle/dongle-presentation.tex new file mode 100644 index 0000000000000000000000000000000000000000..cb69a85a6285c75c883f34eb431d1eeb71c0401c --- /dev/null +++ b/Documentation/Pre-projet/Custom Dongle/dongle-presentation.tex @@ -0,0 +1,56 @@ +\documentclass{EPSA-rap-template} + +\type{Présentation} + +\titresize{\LARGE} % ne pas hésiter a changer la taille : +%\normalsize +%\large +%\Large +%\LARGE +%\huge +%\Huge +%\HUGE + +\titre{Dongle de contrôle} + +\departement{Recherche} + +\auteurs{Eymeric \textbf{Chauchat}} + +\version{V1.0} + +\versionnement{ +\ver{V1.0}{25 aout 2022}{ ECT }{Rédaction initiale.}{1} +} + +\setuppack + +\begin{document} + +\fairepagedegarde +\newpage +\tableofcontents + +\section{Présentation} +Ce document va présenter la réalisation du Dongle de contrôle de la voiture RC et du script permettant son arrêt d'urgence et sa commande si l'on choisit une intelligence déporté. + +Le Dongle est composé d'une arduino Nano, d'une carte nrf24l01 et d'un bouton poussoir. Il va permettre de contrôler en temps réel la voiture et de récupérer des informations des différents capteurs. + +\section{Construction} + + +Le câblage suit celui d'une carte nrf24l01 basique (Figure \ref{fig:wiring}). La carte se branche ensuite directement à l'ordinateur qui va la contrôler soit directement grâce à l'invité port série d'arduino ou au travers d'un script python. + +\begin{figure} +\centering +\includegraphics[width=0.4\textwidth]{Wiring.png} +\caption{Câblage possible d'une nrf24l01 avec une arduino nano} +\label{fig:wiring} +\end{figure} + +\section{Script de contrôle} + + + + +\end{document} \ No newline at end of file diff --git a/Documentation/Pre-projet/Custom Dongle/dongle-presentation.toc b/Documentation/Pre-projet/Custom Dongle/dongle-presentation.toc new file mode 100644 index 0000000000000000000000000000000000000000..2afea20195a9a506275e61495b8666b52653e354 --- /dev/null +++ b/Documentation/Pre-projet/Custom Dongle/dongle-presentation.toc @@ -0,0 +1,4 @@ +\babel@toc {french}{}\relax +\contentsline {section}{\numberline {1}Présentation}{1}{section.1}% +\contentsline {section}{\numberline {2}Construction}{1}{section.2}% +\contentsline {section}{\numberline {3}Script de contrôle}{2}{section.3}% diff --git a/Documentation/Pre-projet/Presentation Pae.rar b/Documentation/Pre-projet/Presentation Pae.rar new file mode 100644 index 0000000000000000000000000000000000000000..3fd7a6b77f7e84b754ac0e3317ceec71025acc88 Binary files /dev/null and b/Documentation/Pre-projet/Presentation Pae.rar differ diff --git a/Documentation/Pre-projet/Presentation projet/presentation-pae.aux b/Documentation/Pre-projet/Presentation projet/presentation-pae.aux new file mode 100644 index 0000000000000000000000000000000000000000..9ba4c02eed6f37162d6315fa812998dca2d80fff --- /dev/null +++ b/Documentation/Pre-projet/Presentation projet/presentation-pae.aux @@ -0,0 +1,32 @@ +\relax +\providecommand\hyper@newdestlabel[2]{} +\providecommand\babel@aux[2]{} +\@nameuse{bbl@beforestart} +\catcode `:\active +\catcode `;\active +\catcode `!\active +\catcode `?\active +\providecommand\HyperFirstAtBeginDocument{\AtBeginDocument} +\HyperFirstAtBeginDocument{\ifx\hyper@anchor\@undefined +\global\let\oldcontentsline\contentsline +\gdef\contentsline#1#2#3#4{\oldcontentsline{#1}{#2}{#3}} +\global\let\oldnewlabel\newlabel +\gdef\newlabel#1#2{\newlabelxx{#1}#2} +\gdef\newlabelxx#1#2#3#4#5#6{\oldnewlabel{#1}{{#2}{#3}}} +\AtEndDocument{\ifx\hyper@anchor\@undefined +\let\contentsline\oldcontentsline +\let\newlabel\oldnewlabel +\fi} +\fi} +\global\let\hyper@last\relax +\gdef\HyperFirstAtBeginDocument#1{#1} +\providecommand\HyField@AuxAddToFields[1]{} +\providecommand\HyField@AuxAddToCoFields[2]{} +\pgfsyspdfmark {pgfid3}{0}{38412394} +\pgfsyspdfmark {pgfid4}{0}{37462122} +\babel@aux{french}{} +\@writefile{toc}{\contentsline {section}{\numberline {1}Mise en contexte}{1}{section.1}\protected@file@percent } +\@writefile{toc}{\contentsline {section}{\numberline {2}Introduction}{1}{section.2}\protected@file@percent } +\@writefile{toc}{\contentsline {section}{\numberline {3}Organisation Macro}{2}{section.3}\protected@file@percent } +\@writefile{toc}{\contentsline {section}{\numberline {4}Déroulé macro de l'année}{2}{section.4}\protected@file@percent } +\gdef \@abspage@last{3} diff --git a/Documentation/Pre-projet/Presentation projet/presentation-pae.log b/Documentation/Pre-projet/Presentation projet/presentation-pae.log new file mode 100644 index 0000000000000000000000000000000000000000..33d611f76018c0fade598d2426ad20be0838face --- /dev/null +++ b/Documentation/Pre-projet/Presentation projet/presentation-pae.log @@ -0,0 +1,1380 @@ +This is pdfTeX, Version 3.141592653-2.6-1.40.24 (MiKTeX 22.3) (preloaded format=pdflatex 2022.8.25) 5 SEP 2022 17:27 +entering extended mode + \write18 enabled. + %&-line parsing enabled. +**./presentation-pae.tex +(presentation-pae.tex +LaTeX2e <2021-11-15> patch level 1 +L3 programming layer <2022-02-24> +(C:/AA_perso/localtex\tex/latex\EPSA-rap-template\EPSA-rap-template.cls +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/latex/base\article.cls +Document Class: article 2021/10/04 v1.4n Standard LaTeX document class +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/latex/base\size12.clo +File: size12.clo 2021/10/04 v1.4n Standard LaTeX file (size option) +) +\c@part=\count185 +\c@section=\count186 +\c@subsection=\count187 +\c@subsubsection=\count188 +\c@paragraph=\count189 +\c@subparagraph=\count190 +\c@figure=\count191 +\c@table=\count192 +\abovecaptionskip=\skip47 +\belowcaptionskip=\skip48 +\bibindent=\dimen138 +) +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/generic/babel\babel.sty +Package: babel 2022/02/26 3.73 The Babel package +\babel@savecnt=\count193 +\U@D=\dimen139 +\l@unhyphenated=\language79 + +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/generic/babel\txtbabel. +def) +\bbl@readstream=\read2 +\bbl@dirlevel=\count194 + +************************************* +* Local config file bblopts.cfg used +* + +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/latex/arabi\bblopts.cfg +File: bblopts.cfg 2005/09/08 v0.1 add Arabic and Farsi to "declared" options of + babel +) +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/generic/babel-french\fr +ench.ldf +Language: french 2022/04/18 v3.5n French support from the babel system +Package babel Info: Hyphen rules for 'acadian' set to \l@french +(babel) (\language22). Reported on input line 91. +Package babel Info: Hyphen rules for 'canadien' set to \l@french +(babel) (\language22). Reported on input line 92. +\FB@nonchar=\count195 +Package babel Info: Making : an active character on input line 430. +Package babel Info: Making ; an active character on input line 431. +Package babel Info: Making ! an active character on input line 432. +Package babel Info: Making ? an active character on input line 433. +\FBguill@level=\count196 +\FBold@everypar=\toks16 +\FB@Mht=\dimen140 +\mc@charclass=\count197 +\mc@charfam=\count198 +\mc@charslot=\count199 +\std@mcc=\count266 +\dec@mcc=\count267 +\listindentFB=\dimen141 +\descindentFB=\dimen142 +\labelindentFB=\dimen143 +\labelwidthFB=\dimen144 +\leftmarginFB=\dimen145 +\parindentFFN=\dimen146 +\FBfnindent=\dimen147 +)) +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/latex/carlisle\scalefnt +.sty) +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/latex/graphics\keyval.s +ty +Package: keyval 2014/10/28 v1.15 key=value parser (DPC) +\KV@toks@=\toks17 +) +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/latex/base\inputenc.sty +Package: inputenc 2021/02/14 v1.3d Input encoding file +\inpenc@prehook=\toks18 +\inpenc@posthook=\toks19 +) +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/latex/placeins\placeins +.sty +Package: placeins 2005/04/18 v 2.2 +) +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/latex/mathtools\mathtoo +ls.sty +Package: mathtools 2022/02/07 v1.28a mathematical typesetting tools + +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/latex/tools\calc.sty +Package: calc 2017/05/25 v4.3 Infix arithmetic (KKT,FJ) +\calc@Acount=\count268 +\calc@Bcount=\count269 +\calc@Adimen=\dimen148 +\calc@Bdimen=\dimen149 +\calc@Askip=\skip49 +\calc@Bskip=\skip50 +LaTeX Info: Redefining \setlength on input line 80. +LaTeX Info: Redefining \addtolength on input line 81. +\calc@Ccount=\count270 +\calc@Cskip=\skip51 +) +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/latex/mathtools\mhsetup +.sty +Package: mhsetup 2021/03/18 v1.4 programming setup (MH) +) +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/latex/amsmath\amsmath.s +ty +Package: amsmath 2021/10/15 v2.17l AMS math features +\@mathmargin=\skip52 + +For additional information on amsmath, use the `?' option. + +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/latex/amsmath\amstext.s +ty +Package: amstext 2021/08/26 v2.01 AMS text + +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/latex/amsmath\amsgen.st +y +File: amsgen.sty 1999/11/30 v2.0 generic functions +\@emptytoks=\toks20 +\ex@=\dimen150 +)) +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/latex/amsmath\amsbsy.st +y +Package: amsbsy 1999/11/29 v1.2d Bold Symbols +\pmbraise@=\dimen151 +) +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/latex/amsmath\amsopn.st +y +Package: amsopn 2021/08/26 v2.02 operator names +) +\inf@bad=\count271 +LaTeX Info: Redefining \frac on input line 234. +\uproot@=\count272 +\leftroot@=\count273 +LaTeX Info: Redefining \overline on input line 399. +\classnum@=\count274 +\DOTSCASE@=\count275 +LaTeX Info: Redefining \ldots on input line 496. +LaTeX Info: Redefining \dots on input line 499. +LaTeX Info: Redefining \cdots on input line 620. +\Mathstrutbox@=\box50 +\strutbox@=\box51 +\big@size=\dimen152 +LaTeX Font Info: Redeclaring font encoding OML on input line 743. +LaTeX Font Info: Redeclaring font encoding OMS on input line 744. +\macc@depth=\count276 +\c@MaxMatrixCols=\count277 +\dotsspace@=\muskip16 +\c@parentequation=\count278 +\dspbrk@lvl=\count279 +\tag@help=\toks21 +\row@=\count280 +\column@=\count281 +\maxfields@=\count282 +\andhelp@=\toks22 +\eqnshift@=\dimen153 +\alignsep@=\dimen154 +\tagshift@=\dimen155 +\tagwidth@=\dimen156 +\totwidth@=\dimen157 +\lineht@=\dimen158 +\@envbody=\toks23 +\multlinegap=\skip53 +\multlinetaggap=\skip54 +\mathdisplay@stack=\toks24 +LaTeX Info: Redefining \[ on input line 2938. +LaTeX Info: Redefining \] on input line 2939. +) +\g_MT_multlinerow_int=\count283 +\l_MT_multwidth_dim=\dimen159 +\origjot=\skip55 +\l_MT_shortvdotswithinadjustabove_dim=\dimen160 +\l_MT_shortvdotswithinadjustbelow_dim=\dimen161 +\l_MT_above_intertext_sep=\dimen162 +\l_MT_below_intertext_sep=\dimen163 +\l_MT_above_shortintertext_sep=\dimen164 +\l_MT_below_shortintertext_sep=\dimen165 +\xmathstrut@box=\box52 +\xmathstrut@dim=\dimen166 +) +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/latex/siunitx\siunitx.s +ty +Package: siunitx 2022-05-03 v3.1.1 A comprehensive (SI) units package +\l__siunitx_angle_tmp_dim=\dimen167 +\l__siunitx_angle_marker_box=\box53 +\l__siunitx_angle_unit_box=\box54 +\l__siunitx_compound_count_int=\count284 + +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/latex/translations\tran +slations.sty +Package: translations 2022/02/05 v1.12 internationalization of LaTeX2e packages + (CN) + +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/latex/etoolbox\etoolbox +.sty +Package: etoolbox 2020/10/05 v2.5k e-TeX tools for LaTeX (JAW) +\etb@tempcnta=\count285 +) +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/generic/pdftexcmds\pdft +excmds.sty +Package: pdftexcmds 2020-06-27 v0.33 Utility functions of pdfTeX for LuaTeX (HO +) + +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/generic/infwarerr\infwa +rerr.sty +Package: infwarerr 2019/12/03 v1.5 Providing info/warning/error messages (HO) +) +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/generic/iftex\iftex.sty +Package: iftex 2022/02/03 v1.0f TeX engine tests +) +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/generic/ltxcmds\ltxcmds +.sty +Package: ltxcmds 2020-05-10 v1.25 LaTeX kernel commands for general use (HO) +) +Package pdftexcmds Info: \pdf@primitive is available. +Package pdftexcmds Info: \pdf@ifprimitive is available. +Package pdftexcmds Info: \pdfdraftmode found. +)) +\l__siunitx_number_exponent_fixed_int=\count286 +\l__siunitx_number_min_decimal_int=\count287 +\l__siunitx_number_min_integer_int=\count288 +\l__siunitx_number_round_precision_int=\count289 +\l__siunitx_number_group_first_int=\count290 +\l__siunitx_number_group_size_int=\count291 +\l__siunitx_number_group_minimum_int=\count292 +\l__siunitx_table_tmp_box=\box55 +\l__siunitx_table_tmp_dim=\dimen168 +\l__siunitx_table_column_width_dim=\dimen169 +\l__siunitx_table_integer_box=\box56 +\l__siunitx_table_decimal_box=\box57 +\l__siunitx_table_before_box=\box58 +\l__siunitx_table_after_box=\box59 +\l__siunitx_table_before_dim=\dimen170 +\l__siunitx_table_carry_dim=\dimen171 +\l__siunitx_unit_tmp_int=\count293 +\l__siunitx_unit_position_int=\count294 +\l__siunitx_unit_total_int=\count295 + +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/latex/l3packages/l3keys +2e\l3keys2e.sty +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/latex/l3kernel\expl3.st +y +Package: expl3 2022-02-24 L3 programming layer (loader) + +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/latex/l3backend\l3backe +nd-pdftex.def +File: l3backend-pdftex.def 2022-02-07 L3 backend support: PDF output (pdfTeX) +\l__color_backend_stack_int=\count296 +\l__pdf_internal_box=\box60 +)) +Package: l3keys2e 2022-01-12 LaTeX2e option processing using LaTeX3 keys +) +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/latex/tools\array.sty +Package: array 2021/10/04 v2.5f Tabular extension package (FMi) +\col@sep=\dimen172 +\ar@mcellbox=\box61 +\extrarowheight=\dimen173 +\NC@list=\toks25 +\extratabsurround=\skip56 +\backup@length=\skip57 +\ar@cellbox=\box62 +)) (C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/latex/float\float.st +y +Package: float 2001/11/08 v1.3d Float enhancements (AL) +\c@float@type=\count297 +\float@exts=\toks26 +\float@box=\box63 +\@float@everytoks=\toks27 +\@floatcapt=\box64 +) +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/latex/graphics\graphicx +.sty +Package: graphicx 2021/09/16 v1.2d Enhanced LaTeX Graphics (DPC,SPQR) + +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/latex/graphics\graphics +.sty +Package: graphics 2021/03/04 v1.4d Standard LaTeX Graphics (DPC,SPQR) + +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/latex/graphics\trig.sty +Package: trig 2021/08/11 v1.11 sin cos tan (DPC) +) +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/latex/graphics-cfg\grap +hics.cfg +File: graphics.cfg 2016/06/04 v1.11 sample graphics configuration +) +Package graphics Info: Driver file: pdftex.def on input line 107. + +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/latex/graphics-def\pdft +ex.def +File: pdftex.def 2020/10/05 v1.2a Graphics/color driver for pdftex +)) +\Gin@req@height=\dimen174 +\Gin@req@width=\dimen175 +) +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/latex/caption\caption.s +ty +Package: caption 2022/03/01 v3.6b Customizing captions (AR) + +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/latex/caption\caption3. +sty +Package: caption3 2022/03/17 v2.3b caption3 kernel (AR) +\caption@tempdima=\dimen176 +\captionmargin=\dimen177 +\caption@leftmargin=\dimen178 +\caption@rightmargin=\dimen179 +\caption@width=\dimen180 +\caption@indent=\dimen181 +\caption@parindent=\dimen182 +\caption@hangindent=\dimen183 +Package caption Info: Standard document class detected. +Package caption Info: french babel package is loaded. +) +\c@caption@flags=\count298 +\c@continuedfloat=\count299 +Package caption Info: float package is loaded. +) +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/latex/caption\subcaptio +n.sty +Package: subcaption 2022/01/07 v1.5 Sub-captions (AR) +\c@subfigure=\count300 +\c@subtable=\count301 +) +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/latex/pgf/frontendlayer +\tikz.sty +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/latex/pgf/basiclayer\pg +f.sty +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/latex/pgf/utilities\pgf +rcs.sty +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/generic/pgf/utilities\p +gfutil-common.tex +\pgfutil@everybye=\toks28 +\pgfutil@tempdima=\dimen184 +\pgfutil@tempdimb=\dimen185 + +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/generic/pgf/utilities\p +gfutil-common-lists.tex)) +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/generic/pgf/utilities\p +gfutil-latex.def +\pgfutil@abb=\box65 +) +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/generic/pgf/utilities\p +gfrcs.code.tex +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/generic/pgf\pgf.revisio +n.tex) +Package: pgfrcs 2021/05/15 v3.1.9a (3.1.9a) +)) +Package: pgf 2021/05/15 v3.1.9a (3.1.9a) + +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/latex/pgf/basiclayer\pg +fcore.sty +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/latex/pgf/systemlayer\p +gfsys.sty +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/generic/pgf/systemlayer +\pgfsys.code.tex +Package: pgfsys 2021/05/15 v3.1.9a (3.1.9a) + +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/generic/pgf/utilities\p +gfkeys.code.tex +\pgfkeys@pathtoks=\toks29 +\pgfkeys@temptoks=\toks30 + +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/generic/pgf/utilities\p +gfkeysfiltered.code.tex +\pgfkeys@tmptoks=\toks31 +)) +\pgf@x=\dimen186 +\pgf@y=\dimen187 +\pgf@xa=\dimen188 +\pgf@ya=\dimen189 +\pgf@xb=\dimen190 +\pgf@yb=\dimen191 +\pgf@xc=\dimen192 +\pgf@yc=\dimen193 +\pgf@xd=\dimen194 +\pgf@yd=\dimen195 +\w@pgf@writea=\write3 +\r@pgf@reada=\read3 +\c@pgf@counta=\count302 +\c@pgf@countb=\count303 +\c@pgf@countc=\count304 +\c@pgf@countd=\count305 +\t@pgf@toka=\toks32 +\t@pgf@tokb=\toks33 +\t@pgf@tokc=\toks34 +\pgf@sys@id@count=\count306 + +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/generic/pgf/systemlayer +\pgf.cfg +File: pgf.cfg 2021/05/15 v3.1.9a (3.1.9a) +) +Driver file for pgf: pgfsys-pdftex.def + +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/generic/pgf/systemlayer +\pgfsys-pdftex.def +File: pgfsys-pdftex.def 2021/05/15 v3.1.9a (3.1.9a) + +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/generic/pgf/systemlayer +\pgfsys-common-pdf.def +File: pgfsys-common-pdf.def 2021/05/15 v3.1.9a (3.1.9a) +))) +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/generic/pgf/systemlayer +\pgfsyssoftpath.code.tex +File: pgfsyssoftpath.code.tex 2021/05/15 v3.1.9a (3.1.9a) +\pgfsyssoftpath@smallbuffer@items=\count307 +\pgfsyssoftpath@bigbuffer@items=\count308 +) +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/generic/pgf/systemlayer +\pgfsysprotocol.code.tex +File: pgfsysprotocol.code.tex 2021/05/15 v3.1.9a (3.1.9a) +)) +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/latex/xcolor\xcolor.sty +Package: xcolor 2021/10/31 v2.13 LaTeX color extensions (UK) + +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/latex/graphics-cfg\colo +r.cfg +File: color.cfg 2016/01/02 v1.6 sample color configuration +) +Package xcolor Info: Driver file: pdftex.def on input line 227. +Package xcolor Info: Model `cmy' substituted by `cmy0' on input line 1352. +Package xcolor Info: Model `hsb' substituted by `rgb' on input line 1356. +Package xcolor Info: Model `RGB' extended on input line 1368. +Package xcolor Info: Model `HTML' substituted by `rgb' on input line 1370. +Package xcolor Info: Model `Hsb' substituted by `hsb' on input line 1371. +Package xcolor Info: Model `tHsb' substituted by `hsb' on input line 1372. +Package xcolor Info: Model `HSB' substituted by `hsb' on input line 1373. +Package xcolor Info: Model `Gray' substituted by `gray' on input line 1374. +Package xcolor Info: Model `wave' substituted by `hsb' on input line 1375. +) +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/generic/pgf/basiclayer\ +pgfcore.code.tex +Package: pgfcore 2021/05/15 v3.1.9a (3.1.9a) + +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/generic/pgf/math\pgfmat +h.code.tex +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/generic/pgf/math\pgfmat +hcalc.code.tex +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/generic/pgf/math\pgfmat +hutil.code.tex) +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/generic/pgf/math\pgfmat +hparser.code.tex +\pgfmath@dimen=\dimen196 +\pgfmath@count=\count309 +\pgfmath@box=\box66 +\pgfmath@toks=\toks35 +\pgfmath@stack@operand=\toks36 +\pgfmath@stack@operation=\toks37 +) +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/generic/pgf/math\pgfmat +hfunctions.code.tex +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/generic/pgf/math\pgfmat +hfunctions.basic.code.tex) +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/generic/pgf/math\pgfmat +hfunctions.trigonometric.code.tex) +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/generic/pgf/math\pgfmat +hfunctions.random.code.tex) +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/generic/pgf/math\pgfmat +hfunctions.comparison.code.tex) +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/generic/pgf/math\pgfmat +hfunctions.base.code.tex) +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/generic/pgf/math\pgfmat +hfunctions.round.code.tex) +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/generic/pgf/math\pgfmat +hfunctions.misc.code.tex) +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/generic/pgf/math\pgfmat +hfunctions.integerarithmetics.code.tex))) +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/generic/pgf/math\pgfmat +hfloat.code.tex +\c@pgfmathroundto@lastzeros=\count310 +)) +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/generic/pgf/math\pgfint +.code.tex) +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/generic/pgf/basiclayer\ +pgfcorepoints.code.tex +File: pgfcorepoints.code.tex 2021/05/15 v3.1.9a (3.1.9a) +\pgf@picminx=\dimen197 +\pgf@picmaxx=\dimen198 +\pgf@picminy=\dimen199 +\pgf@picmaxy=\dimen256 +\pgf@pathminx=\dimen257 +\pgf@pathmaxx=\dimen258 +\pgf@pathminy=\dimen259 +\pgf@pathmaxy=\dimen260 +\pgf@xx=\dimen261 +\pgf@xy=\dimen262 +\pgf@yx=\dimen263 +\pgf@yy=\dimen264 +\pgf@zx=\dimen265 +\pgf@zy=\dimen266 +) +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/generic/pgf/basiclayer\ +pgfcorepathconstruct.code.tex +File: pgfcorepathconstruct.code.tex 2021/05/15 v3.1.9a (3.1.9a) +\pgf@path@lastx=\dimen267 +\pgf@path@lasty=\dimen268 +) +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/generic/pgf/basiclayer\ +pgfcorepathusage.code.tex +File: pgfcorepathusage.code.tex 2021/05/15 v3.1.9a (3.1.9a) +\pgf@shorten@end@additional=\dimen269 +\pgf@shorten@start@additional=\dimen270 +) +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/generic/pgf/basiclayer\ +pgfcorescopes.code.tex +File: pgfcorescopes.code.tex 2021/05/15 v3.1.9a (3.1.9a) +\pgfpic=\box67 +\pgf@hbox=\box68 +\pgf@layerbox@main=\box69 +\pgf@picture@serial@count=\count311 +) +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/generic/pgf/basiclayer\ +pgfcoregraphicstate.code.tex +File: pgfcoregraphicstate.code.tex 2021/05/15 v3.1.9a (3.1.9a) +\pgflinewidth=\dimen271 +) +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/generic/pgf/basiclayer\ +pgfcoretransformations.code.tex +File: pgfcoretransformations.code.tex 2021/05/15 v3.1.9a (3.1.9a) +\pgf@pt@x=\dimen272 +\pgf@pt@y=\dimen273 +\pgf@pt@temp=\dimen274 +) +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/generic/pgf/basiclayer\ +pgfcorequick.code.tex +File: pgfcorequick.code.tex 2021/05/15 v3.1.9a (3.1.9a) +) +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/generic/pgf/basiclayer\ +pgfcoreobjects.code.tex +File: pgfcoreobjects.code.tex 2021/05/15 v3.1.9a (3.1.9a) +) +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/generic/pgf/basiclayer\ +pgfcorepathprocessing.code.tex +File: pgfcorepathprocessing.code.tex 2021/05/15 v3.1.9a (3.1.9a) +) +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/generic/pgf/basiclayer\ +pgfcorearrows.code.tex +File: pgfcorearrows.code.tex 2021/05/15 v3.1.9a (3.1.9a) +\pgfarrowsep=\dimen275 +) +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/generic/pgf/basiclayer\ +pgfcoreshade.code.tex +File: pgfcoreshade.code.tex 2021/05/15 v3.1.9a (3.1.9a) +\pgf@max=\dimen276 +\pgf@sys@shading@range@num=\count312 +\pgf@shadingcount=\count313 +) +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/generic/pgf/basiclayer\ +pgfcoreimage.code.tex +File: pgfcoreimage.code.tex 2021/05/15 v3.1.9a (3.1.9a) + +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/generic/pgf/basiclayer\ +pgfcoreexternal.code.tex +File: pgfcoreexternal.code.tex 2021/05/15 v3.1.9a (3.1.9a) +\pgfexternal@startupbox=\box70 +)) +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/generic/pgf/basiclayer\ +pgfcorelayers.code.tex +File: pgfcorelayers.code.tex 2021/05/15 v3.1.9a (3.1.9a) +) +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/generic/pgf/basiclayer\ +pgfcoretransparency.code.tex +File: pgfcoretransparency.code.tex 2021/05/15 v3.1.9a (3.1.9a) +) +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/generic/pgf/basiclayer\ +pgfcorepatterns.code.tex +File: pgfcorepatterns.code.tex 2021/05/15 v3.1.9a (3.1.9a) +) +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/generic/pgf/basiclayer\ +pgfcorerdf.code.tex +File: pgfcorerdf.code.tex 2021/05/15 v3.1.9a (3.1.9a) +))) +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/generic/pgf/modules\pgf +moduleshapes.code.tex +File: pgfmoduleshapes.code.tex 2021/05/15 v3.1.9a (3.1.9a) +\pgfnodeparttextbox=\box71 +) +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/generic/pgf/modules\pgf +moduleplot.code.tex +File: pgfmoduleplot.code.tex 2021/05/15 v3.1.9a (3.1.9a) +) +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/latex/pgf/compatibility +\pgfcomp-version-0-65.sty +Package: pgfcomp-version-0-65 2021/05/15 v3.1.9a (3.1.9a) +\pgf@nodesepstart=\dimen277 +\pgf@nodesepend=\dimen278 +) +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/latex/pgf/compatibility +\pgfcomp-version-1-18.sty +Package: pgfcomp-version-1-18 2021/05/15 v3.1.9a (3.1.9a) +)) +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/latex/pgf/utilities\pgf +for.sty +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/latex/pgf/utilities\pgf +keys.sty +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/generic/pgf/utilities\p +gfkeys.code.tex)) +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/latex/pgf/math\pgfmath. +sty +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/generic/pgf/math\pgfmat +h.code.tex)) +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/generic/pgf/utilities\p +gffor.code.tex +Package: pgffor 2021/05/15 v3.1.9a (3.1.9a) + +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/generic/pgf/math\pgfmat +h.code.tex) +\pgffor@iter=\dimen279 +\pgffor@skip=\dimen280 +\pgffor@stack=\toks38 +\pgffor@toks=\toks39 +)) +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/generic/pgf/frontendlay +er/tikz\tikz.code.tex +Package: tikz 2021/05/15 v3.1.9a (3.1.9a) + +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/generic/pgf/libraries\p +gflibraryplothandlers.code.tex +File: pgflibraryplothandlers.code.tex 2021/05/15 v3.1.9a (3.1.9a) +\pgf@plot@mark@count=\count314 +\pgfplotmarksize=\dimen281 +) +\tikz@lastx=\dimen282 +\tikz@lasty=\dimen283 +\tikz@lastxsaved=\dimen284 +\tikz@lastysaved=\dimen285 +\tikz@lastmovetox=\dimen286 +\tikz@lastmovetoy=\dimen287 +\tikzleveldistance=\dimen288 +\tikzsiblingdistance=\dimen289 +\tikz@figbox=\box72 +\tikz@figbox@bg=\box73 +\tikz@tempbox=\box74 +\tikz@tempbox@bg=\box75 +\tikztreelevel=\count315 +\tikznumberofchildren=\count316 +\tikznumberofcurrentchild=\count317 +\tikz@fig@count=\count318 + +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/generic/pgf/modules\pgf +modulematrix.code.tex +File: pgfmodulematrix.code.tex 2021/05/15 v3.1.9a (3.1.9a) +\pgfmatrixcurrentrow=\count319 +\pgfmatrixcurrentcolumn=\count320 +\pgf@matrix@numberofcolumns=\count321 +) +\tikz@expandcount=\count322 + +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/generic/pgf/frontendlay +er/tikz/libraries\tikzlibrarytopaths.code.tex +File: tikzlibrarytopaths.code.tex 2021/05/15 v3.1.9a (3.1.9a) +))) +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/generic/pgf/frontendlay +er/tikz/libraries\tikzlibraryshapes.geometric.code.tex +File: tikzlibraryshapes.geometric.code.tex 2021/05/15 v3.1.9a (3.1.9a) + +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/generic/pgf/libraries/s +hapes\pgflibraryshapes.geometric.code.tex +File: pgflibraryshapes.geometric.code.tex 2021/05/15 v3.1.9a (3.1.9a) +)) +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/generic/pgf/frontendlay +er/tikz/libraries\tikzlibrarycalc.code.tex +File: tikzlibrarycalc.code.tex 2021/05/15 v3.1.9a (3.1.9a) +) +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/latex/url\url.sty +\Urlmuskip=\muskip17 +Package: url 2013/09/16 ver 3.4 Verb mode for urls, etc. +) +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/latex/geometry\geometry +.sty +Package: geometry 2020/01/02 v5.9 Page Geometry + +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/generic/iftex\ifvtex.st +y +Package: ifvtex 2019/10/25 v1.7 ifvtex legacy package. Use iftex instead. +) +\Gm@cnth=\count323 +\Gm@cntv=\count324 +\c@Gm@tempcnt=\count325 +\Gm@bindingoffset=\dimen290 +\Gm@wd@mp=\dimen291 +\Gm@odd@mp=\dimen292 +\Gm@even@mp=\dimen293 +\Gm@layoutwidth=\dimen294 +\Gm@layoutheight=\dimen295 +\Gm@layouthoffset=\dimen296 +\Gm@layoutvoffset=\dimen297 +\Gm@dimlist=\toks40 + +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/latex/geometry\geometry +.cfg)) +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/latex/hyperref\hyperref +.sty +Package: hyperref 2022-02-21 v7.00n Hypertext links for LaTeX + +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/generic/kvsetkeys\kvset +keys.sty +Package: kvsetkeys 2019/12/15 v1.18 Key value parser (HO) +) +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/generic/kvdefinekeys\kv +definekeys.sty +Package: kvdefinekeys 2019-12-19 v1.6 Define keys (HO) +) +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/generic/pdfescape\pdfes +cape.sty +Package: pdfescape 2019/12/09 v1.15 Implements pdfTeX's escape features (HO) +) +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/latex/hycolor\hycolor.s +ty +Package: hycolor 2020-01-27 v1.10 Color options for hyperref/bookmark (HO) +) +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/latex/letltxmacro\letlt +xmacro.sty +Package: letltxmacro 2019/12/03 v1.6 Let assignment for LaTeX macros (HO) +) +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/latex/auxhook\auxhook.s +ty +Package: auxhook 2019-12-17 v1.6 Hooks for auxiliary files (HO) +) +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/latex/kvoptions\kvoptio +ns.sty +Package: kvoptions 2020-10-07 v3.14 Key value format for package options (HO) +) +\@linkdim=\dimen298 +\Hy@linkcounter=\count326 +\Hy@pagecounter=\count327 + +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/latex/hyperref\pd1enc.d +ef +File: pd1enc.def 2022-02-21 v7.00n Hyperref: PDFDocEncoding definition (HO) +Now handling font encoding PD1 ... +... no UTF-8 mapping file for font encoding PD1 +) +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/generic/intcalc\intcalc +.sty +Package: intcalc 2019/12/15 v1.3 Expandable calculations with integers (HO) +) +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/generic/etexcmds\etexcm +ds.sty +Package: etexcmds 2019/12/15 v1.7 Avoid name clashes with e-TeX commands (HO) +) +\Hy@SavedSpaceFactor=\count328 + +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/latex/hyperref\puenc.de +f +File: puenc.def 2022-02-21 v7.00n Hyperref: PDF Unicode definition (HO) +Now handling font encoding PU ... +... no UTF-8 mapping file for font encoding PU +) +Package hyperref Info: Hyper figures OFF on input line 4137. +Package hyperref Info: Link nesting OFF on input line 4142. +Package hyperref Info: Hyper index ON on input line 4145. +Package hyperref Info: Plain pages OFF on input line 4152. +Package hyperref Info: Backreferencing OFF on input line 4157. +Package hyperref Info: Implicit mode ON; LaTeX internals redefined. +Package hyperref Info: Bookmarks ON on input line 4390. +\c@Hy@tempcnt=\count329 +LaTeX Info: Redefining \url on input line 4749. +\XeTeXLinkMargin=\dimen299 + +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/generic/bitset\bitset.s +ty +Package: bitset 2019/12/09 v1.3 Handle bit-vector datatype (HO) + +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/generic/bigintcalc\bigi +ntcalc.sty +Package: bigintcalc 2019/12/15 v1.5 Expandable calculations on big integers (HO +) +)) +\Fld@menulength=\count330 +\Field@Width=\dimen300 +\Fld@charsize=\dimen301 +Package hyperref Info: Hyper figures OFF on input line 6027. +Package hyperref Info: Link nesting OFF on input line 6032. +Package hyperref Info: Hyper index ON on input line 6035. +Package hyperref Info: backreferencing OFF on input line 6042. +Package hyperref Info: Link coloring OFF on input line 6047. +Package hyperref Info: Link coloring with OCG OFF on input line 6052. +Package hyperref Info: PDF/A mode OFF on input line 6057. +LaTeX Info: Redefining \ref on input line 6097. +LaTeX Info: Redefining \pageref on input line 6101. + +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/latex/base\atbegshi-ltx +.sty +Package: atbegshi-ltx 2021/01/10 v1.0c Emulation of the original atbegshi +package with kernel methods +) +\Hy@abspage=\count331 +\c@Item=\count332 +\c@Hfootnote=\count333 +) +Package hyperref Info: Driver: hpdftex. + +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/latex/hyperref\hpdftex. +def +File: hpdftex.def 2022-02-21 v7.00n Hyperref driver for pdfTeX + +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/latex/base\atveryend-lt +x.sty +Package: atveryend-ltx 2020/08/19 v1.0a Emulation of the original atveryend pac +kage +with kernel methods +) +\Fld@listcount=\count334 +\c@bookmark@seq@number=\count335 + +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/latex/rerunfilecheck\re +runfilecheck.sty +Package: rerunfilecheck 2019/12/05 v1.9 Rerun checks for auxiliary files (HO) + +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/generic/uniquecounter\u +niquecounter.sty +Package: uniquecounter 2019/12/15 v1.4 Provide unlimited unique counter (HO) +) +Package uniquecounter Info: New unique counter `rerunfilecheck' on input line 2 +86. +) +\Hy@SectionHShift=\skip58 +) +\headeroffset=\skip59 +\headerheight=\skip60 +\titlestraw=\skip61 +\EPSALogo=\skip62 +\EPSAoff=\skip63 +\ECLLogo=\skip64 +\SecBar=\skip65 +\margintop=\skip66 +\marginbottom=\skip67 +\marginright=\skip68 +\marginleft=\skip69 + +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/latex/base\fontenc.sty +Package: fontenc 2021/04/29 v2.0v Standard LaTeX package +) +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/latex/montserrat\montse +rrat.sty +Package: montserrat 2019/11/07 v1.03 + +`montserrat' v1.03, 2019/11/07 Style file for Montserrat and Alternates (msharp +e) +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/latex/base\fontenc.sty +Package: fontenc 2021/04/29 v2.0v Standard LaTeX package + +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/latex/ly1\ly1enc.def +File: ly1enc.def 2022/06/11 v0.8 TeX 'n ANSI encoding (DPC/KB) +Now handling font encoding LY1 ... +... processing UTF-8 mapping file for font encoding LY1 + +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/latex/base\ly1enc.dfu +File: ly1enc.dfu 2021/06/21 v1.2n UTF-8 support + defining Unicode char U+00A0 (decimal 160) + defining Unicode char U+00A1 (decimal 161) + defining Unicode char U+00A2 (decimal 162) + defining Unicode char U+00A3 (decimal 163) + defining Unicode char U+00A4 (decimal 164) + defining Unicode char U+00A5 (decimal 165) + defining Unicode char U+00A6 (decimal 166) + defining Unicode char U+00A7 (decimal 167) + defining Unicode char U+00AA (decimal 170) + defining Unicode char U+00AB (decimal 171) + defining Unicode char U+00AD (decimal 173) + defining Unicode char U+00AE (decimal 174) + defining Unicode char U+00B0 (decimal 176) + defining Unicode char U+00B5 (decimal 181) + defining Unicode char U+00B6 (decimal 182) + defining Unicode char U+00B7 (decimal 183) + defining Unicode char U+00BA (decimal 186) + defining Unicode char U+00BB (decimal 187) + defining Unicode char U+00BC (decimal 188) + defining Unicode char U+00BD (decimal 189) + defining Unicode char U+00BE (decimal 190) + defining Unicode char U+00BF (decimal 191) + defining Unicode char U+00C0 (decimal 192) + defining Unicode char U+00C1 (decimal 193) + defining Unicode char U+00C2 (decimal 194) + defining Unicode char U+00C3 (decimal 195) + defining Unicode char U+00C4 (decimal 196) + defining Unicode char U+00C5 (decimal 197) + defining Unicode char U+00C6 (decimal 198) + defining Unicode char U+00C7 (decimal 199) + defining Unicode char U+00C8 (decimal 200) + defining Unicode char U+00C9 (decimal 201) + defining Unicode char U+00CA (decimal 202) + defining Unicode char U+00CB (decimal 203) + defining Unicode char U+00CC (decimal 204) + defining Unicode char U+00CD (decimal 205) + defining Unicode char U+00CE (decimal 206) + defining Unicode char U+00CF (decimal 207) + defining Unicode char U+00D0 (decimal 208) + defining Unicode char U+00D1 (decimal 209) + defining Unicode char U+00D2 (decimal 210) + defining Unicode char U+00D3 (decimal 211) + defining Unicode char U+00D4 (decimal 212) + defining Unicode char U+00D5 (decimal 213) + defining Unicode char U+00D6 (decimal 214) + defining Unicode char U+00D8 (decimal 216) + defining Unicode char U+00D9 (decimal 217) + defining Unicode char U+00DA (decimal 218) + defining Unicode char U+00DB (decimal 219) + defining Unicode char U+00DC (decimal 220) + defining Unicode char U+00DD (decimal 221) + defining Unicode char U+00DE (decimal 222) + defining Unicode char U+00DF (decimal 223) + defining Unicode char U+00E0 (decimal 224) + defining Unicode char U+00E1 (decimal 225) + defining Unicode char U+00E2 (decimal 226) + defining Unicode char U+00E3 (decimal 227) + defining Unicode char U+00E4 (decimal 228) + defining Unicode char U+00E5 (decimal 229) + defining Unicode char U+00E6 (decimal 230) + defining Unicode char U+00E7 (decimal 231) + defining Unicode char U+00E8 (decimal 232) + defining Unicode char U+00E9 (decimal 233) + defining Unicode char U+00EA (decimal 234) + defining Unicode char U+00EB (decimal 235) + defining Unicode char U+00EC (decimal 236) + defining Unicode char U+00ED (decimal 237) + defining Unicode char U+00EE (decimal 238) + defining Unicode char U+00EF (decimal 239) + defining Unicode char U+00F0 (decimal 240) + defining Unicode char U+00F1 (decimal 241) + defining Unicode char U+00F2 (decimal 242) + defining Unicode char U+00F3 (decimal 243) + defining Unicode char U+00F4 (decimal 244) + defining Unicode char U+00F5 (decimal 245) + defining Unicode char U+00F6 (decimal 246) + defining Unicode char U+00F8 (decimal 248) + defining Unicode char U+00F9 (decimal 249) + defining Unicode char U+00FA (decimal 250) + defining Unicode char U+00FB (decimal 251) + defining Unicode char U+00FC (decimal 252) + defining Unicode char U+00FD (decimal 253) + defining Unicode char U+00FE (decimal 254) + defining Unicode char U+00FF (decimal 255) + defining Unicode char U+0131 (decimal 305) + defining Unicode char U+0141 (decimal 321) + defining Unicode char U+0142 (decimal 322) + defining Unicode char U+0152 (decimal 338) + defining Unicode char U+0153 (decimal 339) + defining Unicode char U+0160 (decimal 352) + defining Unicode char U+0161 (decimal 353) + defining Unicode char U+0174 (decimal 372) + defining Unicode char U+0175 (decimal 373) + defining Unicode char U+0176 (decimal 374) + defining Unicode char U+0177 (decimal 375) + defining Unicode char U+0178 (decimal 376) + defining Unicode char U+017D (decimal 381) + defining Unicode char U+017E (decimal 382) + defining Unicode char U+0192 (decimal 402) + defining Unicode char U+0218 (decimal 536) + defining Unicode char U+0219 (decimal 537) + defining Unicode char U+021A (decimal 538) + defining Unicode char U+021B (decimal 539) + defining Unicode char U+0237 (decimal 567) + defining Unicode char U+02C6 (decimal 710) + defining Unicode char U+02DC (decimal 732) + defining Unicode char U+2013 (decimal 8211) + defining Unicode char U+2014 (decimal 8212) + defining Unicode char U+201C (decimal 8220) + defining Unicode char U+201D (decimal 8221) + defining Unicode char U+2020 (decimal 8224) + defining Unicode char U+2021 (decimal 8225) + defining Unicode char U+2022 (decimal 8226) + defining Unicode char U+2026 (decimal 8230) + defining Unicode char U+2030 (decimal 8240) + defining Unicode char U+2039 (decimal 8249) + defining Unicode char U+203A (decimal 8250) + defining Unicode char U+2122 (decimal 8482) + defining Unicode char U+FB00 (decimal 64256) + defining Unicode char U+FB01 (decimal 64257) + defining Unicode char U+FB02 (decimal 64258) + defining Unicode char U+FB03 (decimal 64259) + defining Unicode char U+FB04 (decimal 64260) + defining Unicode char U+FB05 (decimal 64261) + defining Unicode char U+FB06 (decimal 64262) +))) +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/latex/base\textcomp.sty +Package: textcomp 2020/02/02 v2.0n Standard LaTeX package +) +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/latex/fontaxes\fontaxes +.sty +Package: fontaxes 2020/07/21 v1.0e Font selection axes +LaTeX Info: Redefining \upshape on input line 29. +LaTeX Info: Redefining \itshape on input line 31. +LaTeX Info: Redefining \slshape on input line 33. +LaTeX Info: Redefining \swshape on input line 35. +LaTeX Info: Redefining \scshape on input line 37. +LaTeX Info: Redefining \sscshape on input line 39. +LaTeX Info: Redefining \ulcshape on input line 41. +LaTeX Info: Redefining \textsw on input line 47. +LaTeX Info: Redefining \textssc on input line 48. +LaTeX Info: Redefining \textulc on input line 49. +) +LaTeX Info: Redefining \textin on input line 42. + +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/latex/xkeyval\xkeyval.s +ty +Package: xkeyval 2020/11/20 v2.8 package option processing (HA) + +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/generic/xkeyval\xkeyval +.tex +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/generic/xkeyval\xkvutil +s.tex +\XKV@toks=\toks41 +\XKV@tempa@toks=\toks42 +) +\XKV@depth=\count336 +File: xkeyval.tex 2014/12/03 v2.7a key=value parser (HA) +))) +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/latex/xpatch\xpatch.sty +Package: xpatch 2020/03/25 v0.3a Extending etoolbox patching commands + +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/latex/l3packages/xparse +\xparse.sty +Package: xparse 2022-01-12 L3 Experimental document command parser +)) +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/latex/koma-script\scrla +yer-scrpage.sty +Package: scrlayer-scrpage 2021/11/13 v3.35 KOMA-Script package (end user interf +ace for scrlayer) + +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/latex/koma-script\scrla +yer.sty +Package: scrlayer 2021/11/13 v3.35 KOMA-Script package (defining layers and pag +e styles) + +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/latex/koma-script\scrkb +ase.sty +Package: scrkbase 2021/11/13 v3.35 KOMA-Script package (KOMA-Script-dependent b +asics and keyval usage) + +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/latex/koma-script\scrba +se.sty +Package: scrbase 2021/11/13 v3.35 KOMA-Script package (KOMA-Script-independent +basics and keyval usage) + +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/latex/koma-script\scrlf +ile.sty +Package: scrlfile 2021/11/13 v3.35 KOMA-Script package (file load hooks) + +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/latex/koma-script\scrlf +ile-hook.sty +Package: scrlfile-hook 2021/11/13 v3.35 KOMA-Script package (using LaTeX hooks) + + +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/latex/koma-script\scrlo +go.sty +Package: scrlogo 2021/11/13 v3.35 KOMA-Script package (logo) +))) +Applying: [2021/05/01] Usage of raw or classic option list on input line 252. +Already applied: [0000/00/00] Usage of raw or classic option list on input line + 368. +)) +\footheight=\skip70 +Package scrlayer Info: patching LaTeX kernel macro \pagestyle on input line 216 +2. +) +Package scrbase Info: Unknown processing state. +(scrbase) Processing option `markcase=noupper' +(scrbase) of member `.scrlayer-scrpage.sty' of family +(scrbase) `KOMA' doesn't set +(scrbase) a valid state. This will be interpreted +(scrbase) as \FamilyKeyStateProcessed on input line 636. +) +Package scrlayer-scrpage Info: auto-selection of `pagestyleset=standard'. + +1: subsection +1: section +1: section +1: subsection +) +Package hyperref Info: Option `unicode' set `true' on input line 31. +Package hyperref Info: Option `colorlinks' set `true' on input line 31. +LaTeX Font Info: Trying to load font information for T1+Montserrat-TLF on in +put line 33. + +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/latex/montserrat\t1mont +serrat-tlf.fd +File: T1Montserrat-TLF.fd 2019/11/07 (autoinst) Font definitions for T1/Montser +rat-TLF. +) +LaTeX Font Info: Font shape `T1/Montserrat-TLF/regular/n' will be +(Font) scaled to size 12.0pt on input line 33. + (presentation-pae.aux) +\openout1 = `presentation-pae.aux'. + +LaTeX Font Info: Checking defaults for OML/cmm/m/it on input line 33. +LaTeX Font Info: ... okay on input line 33. +LaTeX Font Info: Checking defaults for OMS/cmsy/m/n on input line 33. +LaTeX Font Info: ... okay on input line 33. +LaTeX Font Info: Checking defaults for OT1/cmr/m/n on input line 33. +LaTeX Font Info: ... okay on input line 33. +LaTeX Font Info: Checking defaults for T1/cmr/m/n on input line 33. +LaTeX Font Info: ... okay on input line 33. +LaTeX Font Info: Checking defaults for TS1/cmr/m/n on input line 33. +LaTeX Font Info: ... okay on input line 33. +LaTeX Font Info: Checking defaults for OMX/cmex/m/n on input line 33. +LaTeX Font Info: ... okay on input line 33. +LaTeX Font Info: Checking defaults for U/cmr/m/n on input line 33. +LaTeX Font Info: ... okay on input line 33. +LaTeX Font Info: Checking defaults for PD1/pdf/m/n on input line 33. +LaTeX Font Info: ... okay on input line 33. +LaTeX Font Info: Checking defaults for PU/pdf/m/n on input line 33. +LaTeX Font Info: ... okay on input line 33. +LaTeX Font Info: Checking defaults for LY1/ptm/m/n on input line 33. +LaTeX Font Info: Trying to load font information for LY1+ptm on input line 3 +3. + +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/latex/ly1\ly1ptm.fd +File: ly1ptm.fd 2001/02/01 font definitions for LY1/ptm using Berry names. +) +LaTeX Font Info: ... okay on input line 33. +LaTeX Info: Redefining \degres on input line 33. +LaTeX Info: Redefining \up on input line 33. + +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/latex/translations/dict +s\translations-basic-dictionary-french.trsl +File: translations-basic-dictionary-french.trsl (french translation file `trans +lations-basic-dictionary') +) +Package translations Info: loading dictionary `translations-basic-dictionary' f +or `french'. on input line 33. + +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/context/base/mkii\supp- +pdf.mkii +[Loading MPS to PDF converter (version 2006.09.02).] +\scratchcounter=\count337 +\scratchdimen=\dimen302 +\scratchbox=\box76 +\nofMPsegments=\count338 +\nofMParguments=\count339 +\everyMPshowfont=\toks43 +\MPscratchCnt=\count340 +\MPscratchDim=\dimen303 +\MPnumerator=\count341 +\makeMPintoPDFobject=\count342 +\everyMPtoPDFconversion=\toks44 +) +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/latex/epstopdf-pkg\epst +opdf-base.sty +Package: epstopdf-base 2020-01-24 v2.11 Base part for package epstopdf + +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/latex/grfext\grfext.sty +Package: grfext 2019/12/03 v1.3 Manage graphics extensions (HO) +) +Package epstopdf-base Info: Redefining graphics rule for `.eps' on input line 4 +85. +Package grfext Info: Graphics extension search list: +(grfext) [.pdf,.png,.jpg,.mps,.jpeg,.jbig2,.jb2,.PDF,.PNG,.JPG,.JPE +G,.JBIG2,.JB2,.eps] +(grfext) \AppendGraphicsExtensions on input line 504. + +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/latex/00miktex\epstopdf +-sys.cfg +File: epstopdf-sys.cfg 2021/03/18 v2.0 Configuration of epstopdf for MiKTeX +)) +Package caption Info: Begin \AtBeginDocument code. +Package caption Info: hyperref package is loaded. +Package caption Info: End \AtBeginDocument code. + +*geometry* driver: auto-detecting +*geometry* detected driver: pdftex +*geometry* verbose mode - [ preamble ] result: +* driver: pdftex +* paper: <default> +* layout: <same size as paper> +* layoutoffset:(h,v)=(0.0pt,0.0pt) +* modes: +* h-part:(L,W,R)=(71.13188pt, 469.47049pt, 56.9055pt) +* v-part:(T,H,B)=(85.35826pt, 660.10394pt, 99.58464pt) +* \paperwidth=597.50787pt +* \paperheight=845.04684pt +* \textwidth=469.47049pt +* \textheight=660.10394pt +* \oddsidemargin=-1.1381pt +* \evensidemargin=-1.1381pt +* \topmargin=-23.91173pt +* \headheight=12.0pt +* \headsep=25.0pt +* \topskip=12.0pt +* \footskip=30.0pt +* \marginparwidth=35.0pt +* \marginparsep=10.0pt +* \columnsep=10.0pt +* \skip\footins=10.8pt plus 4.0pt minus 2.0pt +* \hoffset=0.0pt +* \voffset=0.0pt +* \mag=1000 +* \@twocolumnfalse +* \@twosidefalse +* \@mparswitchfalse +* \@reversemarginfalse +* (1in=72.27pt=25.4mm, 1cm=28.453pt) + +Package hyperref Info: Link coloring ON on input line 33. + +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/latex/hyperref\nameref. +sty +Package: nameref 2021-04-02 v2.47 Cross-referencing by name of section + +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/latex/refcount\refcount +.sty +Package: refcount 2019/12/15 v3.6 Data extraction from label references (HO) +) +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/generic/gettitlestring\ +gettitlestring.sty +Package: gettitlestring 2019/12/15 v1.6 Cleanup title references (HO) +) +\c@section@level=\count343 +) +LaTeX Info: Redefining \ref on input line 33. +LaTeX Info: Redefining \pageref on input line 33. +LaTeX Info: Redefining \nameref on input line 33. + (presentation-pae.out) (presentation-pae.out) +\@outlinefile=\write4 +\openout4 = `presentation-pae.out'. + +\c@mv@tabular=\count344 +\c@mv@boldtabular=\count345 +Package scrlayer Info: Setting magic \footheight to \baselineskip while +(scrlayer) \begin{document} on input line 33. + + +Package scrlayer-scrpage Warning: Very small head height detected! +(scrlayer-scrpage) Using scrlayer-scrpage the head height +(scrlayer-scrpage) should be at least \baselineskip, which is +(scrlayer-scrpage) 14.5pt currently. +(scrlayer-scrpage) But head height is currently 12.0pt only. +(scrlayer-scrpage) You may use +(scrlayer-scrpage) geometry option `head=14.5pt' +(scrlayer-scrpage) \relax to avoid this warning. + +*geometry* verbose mode - [ newgeometry ] result: +* driver: pdftex +* paper: <default> +* layout: <same size as paper> +* layoutoffset:(h,v)=(0.0pt,0.0pt) +* modes: +* h-part:(L,W,R)=(71.13188pt, 469.47049pt, 56.9055pt) +* v-part:(T,H,B)=(85.35826pt, 717.00946pt, 42.67912pt) +* \paperwidth=597.50787pt +* \paperheight=845.04684pt +* \textwidth=469.47049pt +* \textheight=717.00946pt +* \oddsidemargin=-1.1381pt +* \evensidemargin=-1.1381pt +* \topmargin=-23.91173pt +* \headheight=12.0pt +* \headsep=25.0pt +* \topskip=12.0pt +* \footskip=30.0pt +* \marginparwidth=35.0pt +* \marginparsep=10.0pt +* \columnsep=10.0pt +* \skip\footins=10.8pt plus 4.0pt minus 2.0pt +* \hoffset=0.0pt +* \voffset=0.0pt +* \mag=1000 +* \@twocolumnfalse +* \@twosidefalse +* \@mparswitchfalse +* \@reversemarginfalse +* (1in=72.27pt=25.4mm, 1cm=28.453pt) + +<logos/Logo_EPSA_2019.png, id=22, 523.2348pt x 139.11975pt> +File: logos/Logo_EPSA_2019.png Graphic file (type png) +<use logos/Logo_EPSA_2019.png> +Package pdftex.def Info: logos/Logo_EPSA_2019.png used on input line 35. +(pdftex.def) Requested size: 428.04933pt x 113.81102pt. +LaTeX Font Info: Font shape `T1/Montserrat-TLF/regular/n' will be +(Font) scaled to size 17.28pt on input line 35. +LaTeX Font Info: Font shape `T1/Montserrat-TLF/bold/n' will be +(Font) scaled to size 17.28pt on input line 35. +<logos/LogoCentrale.png, id=24, 1505.625pt x 1505.625pt> +File: logos/LogoCentrale.png Graphic file (type png) +<use logos/LogoCentrale.png> +Package pdftex.def Info: logos/LogoCentrale.png used on input line 35. +(pdftex.def) Requested size: 133.72786pt x 133.70844pt. + +Overfull \hbox (24.66261pt too wide) in paragraph at lines 35--35 +[]| [] [] + [] + +LaTeX Font Info: Font shape `T1/Montserrat-TLF/bold/n' will be +(Font) scaled to size 12.0pt on input line 35. + +Overfull \hbox (25.88527pt too wide) in paragraph at lines 35--35 +[]\T1/Montserrat-TLF/bold/n/17.28 Departement Di-rec-tion Re-cherche & In-no-va +-tion EPSA + [] + +LaTeX Font Info: Font shape `T1/Montserrat-TLF/regular/n' will be +(Font) scaled to size 14.4pt on input line 35. +LaTeX Font Info: Font shape `T1/Montserrat-TLF/regular/it' will be +(Font) scaled to size 14.4pt on input line 35. +LaTeX Font Info: Font shape `T1/Montserrat-TLF/bold/it' will be +(Font) scaled to size 14.4pt on input line 35. +LaTeX Font Info: Font shape `T1/Montserrat-TLF/bold/n' will be +(Font) scaled to size 14.4pt on input line 35. +LaTeX Font Info: Font shape `T1/Montserrat-TLF/regular/n' will be +(Font) scaled to size 10.0pt on input line 35. +LaTeX Font Info: Font shape `T1/Montserrat-TLF/bold/n' will be +(Font) scaled to size 10.0pt on input line 35. +Missing character: There is no , in font nullfont! +Missing character: There is no , in font nullfont! +<logos/texte centrale.png, id=25, 1504.8722pt x 301.125pt> +File: logos/texte centrale.png Graphic file (type png) +<use logos/texte centrale.png> +Package pdftex.def Info: logos/texte centrale.png used on input line 35. +(pdftex.def) Requested size: 227.62204pt x 45.54356pt. + +Overfull \hbox (56.9055pt too wide) has occurred while \output is active +[]|[][][] + [] + +[1 + + +{C:/Users/Utilisateur/AppData/Local/MiKTeX/fonts/map/pdftex/pdftex.map} <C:/AA_ +perso/localtex/tex/latex/EPSA-rap-template/logos/Logo_EPSA_2019.png> <C:/AA_per +so/localtex/tex/latex/EPSA-rap-template/logos/LogoCentrale.png> <C:/AA_perso/lo +caltex/tex/latex/EPSA-rap-template/logos/texte centrale.png>] +(presentation-pae.toc) +\tf@toc=\write5 +\openout5 = `presentation-pae.toc'. + +File: logos/LogoCentrale.png Graphic file (type png) +<use logos/LogoCentrale.png> +Package pdftex.def Info: logos/LogoCentrale.png used on input line 60. +(pdftex.def) Requested size: 17.06964pt x 17.07182pt. +<logos/Logo_EPSA_2019_r.png, id=41, 487.0998pt x 87.80804pt> +File: logos/Logo_EPSA_2019_r.png Graphic file (type png) +<use logos/Logo_EPSA_2019_r.png> +Package pdftex.def Info: logos/Logo_EPSA_2019_r.png used on input line 60. +(pdftex.def) Requested size: 94.69792pt x 17.07182pt. + +pdfTeX warning (ext4): destination with the same identifier (name{page.1}) has +been already used, duplicate ignored +<to be read again> + \relax +l.60 + [1 + + <C:/AA_perso/localtex/tex/latex/EPSA-rap-template/logos/Logo_EPSA_2019_r.png>] +File: logos/LogoCentrale.png Graphic file (type png) +<use logos/LogoCentrale.png> +Package pdftex.def Info: logos/LogoCentrale.png used on input line 77. +(pdftex.def) Requested size: 17.06964pt x 17.07182pt. +File: logos/Logo_EPSA_2019_r.png Graphic file (type png) +<use logos/Logo_EPSA_2019_r.png> +Package pdftex.def Info: logos/Logo_EPSA_2019_r.png used on input line 77. +(pdftex.def) Requested size: 94.69792pt x 17.07182pt. + [2] (presentation-pae.aux) +Package rerunfilecheck Info: File `presentation-pae.out' has not changed. +(rerunfilecheck) Checksum: F50032FA1E52AE3F34E8EBDE3D4D875C;549. + ) +Here is how much of TeX's memory you used: + 31752 strings out of 478582 + 675441 string characters out of 2841512 + 948819 words of memory out of 3000000 + 49451 multiletter control sequences out of 15000+600000 + 622109 words of font info for 49 fonts, out of 8000000 for 9000 + 1141 hyphenation exceptions out of 8191 + 138i,18n,134p,484b,955s stack positions out of 10000i,1000n,20000p,200000b,80000s +{C:/Users/Utilisateur/AppData/Local/Programs/MiKTeX/fonts/enc/dvips/montserra +t/zmo_bapnwu.enc}<C:/Users/Utilisateur/AppData/Local/Programs/MiKTeX/fonts/type +1/public/montserrat/Montserrat-Bold.pfb><C:/Users/Utilisateur/AppData/Local/Pro +grams/MiKTeX/fonts/type1/public/montserrat/Montserrat-BoldItalic.pfb><C:/Users/ +Utilisateur/AppData/Local/Programs/MiKTeX/fonts/type1/public/montserrat/Montser +rat-Regular.pfb> +Output written on presentation-pae.pdf (3 pages, 463608 bytes). +PDF statistics: + 70 PDF objects out of 1000 (max. 8388607) + 8 named destinations out of 1000 (max. 500000) + 65 words of extra memory for PDF output out of 10000 (max. 10000000) + diff --git a/Documentation/Pre-projet/Presentation projet/presentation-pae.out b/Documentation/Pre-projet/Presentation projet/presentation-pae.out new file mode 100644 index 0000000000000000000000000000000000000000..3d1ec46bd71d90380fae555863109ef57885fe51 --- /dev/null +++ b/Documentation/Pre-projet/Presentation projet/presentation-pae.out @@ -0,0 +1,4 @@ +\BOOKMARK [1][-]{section.1}{\376\377\000M\000i\000s\000e\000\040\000e\000n\000\040\000c\000o\000n\000t\000e\000x\000t\000e}{}% 1 +\BOOKMARK [1][-]{section.2}{\376\377\000I\000n\000t\000r\000o\000d\000u\000c\000t\000i\000o\000n}{}% 2 +\BOOKMARK [1][-]{section.3}{\376\377\000O\000r\000g\000a\000n\000i\000s\000a\000t\000i\000o\000n\000\040\000M\000a\000c\000r\000o}{}% 3 +\BOOKMARK [1][-]{section.4}{\376\377\000D\000\351\000r\000o\000u\000l\000\351\000\040\000m\000a\000c\000r\000o\000\040\000d\000e\000\040\000l\000'\000a\000n\000n\000\351\000e}{}% 4 diff --git a/Documentation/Pre-projet/Presentation projet/presentation-pae.pdf b/Documentation/Pre-projet/Presentation projet/presentation-pae.pdf new file mode 100644 index 0000000000000000000000000000000000000000..48eec9c48448a5db9da0ec4fa8248e07d65b97c3 Binary files /dev/null and b/Documentation/Pre-projet/Presentation projet/presentation-pae.pdf differ diff --git a/Documentation/Pre-projet/Presentation projet/presentation-pae.synctex.gz b/Documentation/Pre-projet/Presentation projet/presentation-pae.synctex.gz new file mode 100644 index 0000000000000000000000000000000000000000..de7dd81289ff19337ea97edde2ced32c6adbb8bf Binary files /dev/null and b/Documentation/Pre-projet/Presentation projet/presentation-pae.synctex.gz differ diff --git a/Documentation/Pre-projet/Presentation projet/presentation-pae.tex b/Documentation/Pre-projet/Presentation projet/presentation-pae.tex new file mode 100644 index 0000000000000000000000000000000000000000..22e3cfb4c4a373d923d5ba58f500dc382c9f66b5 --- /dev/null +++ b/Documentation/Pre-projet/Presentation projet/presentation-pae.tex @@ -0,0 +1,77 @@ +\documentclass{EPSA-rap-template} + +\type{Présentation} + +\titresize{\Large} % ne pas hésiter a changer la taille : +%\normalsize +%\large +%\Large +%\LARGE +%\huge +%\Huge +%\HUGE + +\titre{ Démonstrateur FASTBOT-AutoDrive v1.0} + +\titresh{ Démonstrateur FASTBOT-AutoDrive} + +\departement{Direction Recherche \& Innovation EPSA} + +\departementsh{ R\& I} + +\auteurs{Eymeric \textbf{Chauchat}} + +\version{V1.0} + +\versionnement{ +\ver{V1.1}{4 Septembre 2022}{ ECT }{Changement de titre.}{2} +\ver{V1.0}{31 août 2022}{ ECT }{Rédaction initiale.}{1} +} + +\setuppack + +\begin{document} + +\fairepagedegarde +\newpage +\tableofcontents + + +\section{Mise en contexte} + +En 2022 les règles du concours de formula student ont évolué et ont pour la première fois dans l'histoire du FS rendu obligatoire les épreuves driverless (conduite autonome) pour la catégorie de véhicule électrique. +Ce changement à pour conséquence de donner un très fort malus aux équipes FS ne possèdent pas de Driverless sur leur véhicule (0 points sur le DV-skidpad et sur le DV-acceleration). L'EPSA faisant parti de cette catégorie, il faut trouver au plus vite une solution pour permettre de développer en parallèle de voiture FS un système de conduite autonome pour voiture. + +L'EPSA dans son projet principal à pour l'instant énormément de mal à réunir des élèves ingénieurs talentueux en électronique et en programmation du à sa propension à la réalisation mécanique et à son passé dans les FS thermiques. + +\section{Introduction} + +L'idée a donc émergé d'essayer d'organiser un Pae satellite composé exclusivement de passionné d'informatique pour permettre un travail sur le sujet. Les nouveaux membres de ce projet auront pour exclusif but de préparer un système de détection et un algorithme permettant la conduite autonome d'un véhicule radio commandé. + +Ce véhicule radio commandé taille un seizième possède des performances se rapprochant à son échelle d'une Formula Student électrique. + +Pour bien sûre garder le lien total avec le Formula Student, la voiture devra être autonome uniquement et spécifiquement sur des répliques des épreuves de Formula Student à l'échelle un seizième. + +Sachant que le but du projet est de principalement programmer, la voiture va être pré-préparer pour être commandable par des cartes de contrôles modernes. + +\section{Organisation Macro} + +Le projet bien que dirigé par l'EPSA sera de la forme d'un Pae classique centralien : il sera composé de 5-7 membres. Il possèdera en plus des revues centralienne, son propre système de jalonnement TOP avec de plus une liaison hebdomadaire avec la direction EPSA (lors de la séance de Pae). + +Un nouveau professeur référent a été cherché : M.Deveautour plus en lien direct avec la recherche et qui aura un rôle principal de conseiller stratégique du projet. + +\section{Déroulé macro de l'année} + +Le projet sera durant l'année séparé en groupe de travail qui bien que lié dans la finalité travailleront de manière semi-indépendante. + + +Durant la première phase de l'année la première tâche sera de trouver pour la première équipe de trouver un moyen d'acquérir le flux vidéo sur l'intelligence (qui pourra être ou non embarqué) et pour l'autre de développer une simulation de comportement de la voiture pour pouvoir entrainer les différents algorithmes dessus (espace 3D où peut évoluer une réplique numérique de la voiture). (jusqu'à fin Octobre) + + +La deuxième phase de l'année sera principalement axée sur le développement de la solution. La première équipe devra réussir à extraire du flux vidéo la position de la voiture dans l'espace et par rapport aux obstacles, tandis que la seconde mettra en place un algorithme qui permettra à partir de la position de la voiture par rapport aux obstacles, de la contrôler de manière autonome dans la simulation. (jusqu'à mi-février) + + +La troisième phase du projet est la plus courte. Elle aura pour but de réunir les deux parties du projet pour pouvoir réaliser une série de test de l'algorithme de détection et de contrôle sur la voiture radio-commandé. C'est en ce sens que les deux groupes restent lié car il est nécessaire que à l'aube de la troisième phase le résultat de l'algorithme de détection soit l'entrée de l'algorithme de contrôle + + +\end{document} \ No newline at end of file diff --git a/Documentation/Pre-projet/Presentation projet/presentation-pae.toc b/Documentation/Pre-projet/Presentation projet/presentation-pae.toc new file mode 100644 index 0000000000000000000000000000000000000000..f31a059a2406d7eb591ffd3f4fadf6269fa2ed7f --- /dev/null +++ b/Documentation/Pre-projet/Presentation projet/presentation-pae.toc @@ -0,0 +1,5 @@ +\babel@toc {french}{}\relax +\contentsline {section}{\numberline {1}Mise en contexte}{1}{section.1}% +\contentsline {section}{\numberline {2}Introduction}{1}{section.2}% +\contentsline {section}{\numberline {3}Organisation Macro}{2}{section.3}% +\contentsline {section}{\numberline {4}Déroulé macro de l'année}{2}{section.4}% diff --git a/Documentation/Pre-projet/Resume/Arduino Nano scheme.png b/Documentation/Pre-projet/Resume/Arduino Nano scheme.png new file mode 100644 index 0000000000000000000000000000000000000000..99b780602be86afab3b73a931358ecd9603a9d0c Binary files /dev/null and b/Documentation/Pre-projet/Resume/Arduino Nano scheme.png differ diff --git a/Documentation/Pre-projet/Resume/Arduino Nano scheme.psd b/Documentation/Pre-projet/Resume/Arduino Nano scheme.psd new file mode 100644 index 0000000000000000000000000000000000000000..069520fe5af68d947beba564bb88847f2aa044c4 Binary files /dev/null and b/Documentation/Pre-projet/Resume/Arduino Nano scheme.psd differ diff --git a/Documentation/Pre-projet/Resume/Wiring.png b/Documentation/Pre-projet/Resume/Wiring.png new file mode 100644 index 0000000000000000000000000000000000000000..6eb7f5b45c2fdbe89eb07a3b5d3603065c1c1cb3 Binary files /dev/null and b/Documentation/Pre-projet/Resume/Wiring.png differ diff --git a/Documentation/Pre-projet/Resume/_minted-resume/8738AEBF99E5B84BD07FB03F4080BAFE101492748D21B1CFCE480A8C1C03A2DB.pygtex b/Documentation/Pre-projet/Resume/_minted-resume/8738AEBF99E5B84BD07FB03F4080BAFE101492748D21B1CFCE480A8C1C03A2DB.pygtex new file mode 100644 index 0000000000000000000000000000000000000000..f7e1bc71bfb9589df924277d01e76e86213c921e --- /dev/null +++ b/Documentation/Pre-projet/Resume/_minted-resume/8738AEBF99E5B84BD07FB03F4080BAFE101492748D21B1CFCE480A8C1C03A2DB.pygtex @@ -0,0 +1,156 @@ +\begin{Verbatim}[commandchars=\\\{\}] +\PYG{c+cm}{/*} +\PYG{c+cm}{ * See documentation at https://nRF24.github.io/RF24} +\PYG{c+cm}{ * See License information at root directory of this library} +\PYG{c+cm}{ * Author: Brendan Doherty (2bndy5)} +\PYG{c+cm}{ */} + +\PYG{c+cm}{/**} +\PYG{c+cm}{ * A simple example of sending data from 1 nRF24L01 transceiver to another.} +\PYG{c+cm}{ *} +\PYG{c+cm}{ * This example was written to be used on 2 devices acting as \PYGZdq{}nodes\PYGZdq{}.} +\PYG{c+cm}{ * Use the Serial Monitor to change each node\PYGZsq{}s behavior.} +\PYG{c+cm}{ */} +\PYG{c+cp}{\PYGZsh{}include}\PYG{+w}{ }\PYG{c+cpf}{\PYGZlt{}SPI.h\PYGZgt{}} +\PYG{c+cp}{\PYGZsh{}include}\PYG{+w}{ }\PYG{c+cpf}{\PYGZdq{}printf.h\PYGZdq{}} +\PYG{c+cp}{\PYGZsh{}include}\PYG{+w}{ }\PYG{c+cpf}{\PYGZdq{}RF24.h\PYGZdq{}} + +\PYG{c+c1}{// instantiate an object for the nRF24L01 transceiver} +\PYG{n}{RF24}\PYG{+w}{ }\PYG{n+nf}{radio}\PYG{p}{(}\PYG{l+m+mi}{10}\PYG{p}{,}\PYG{+w}{ }\PYG{l+m+mi}{9}\PYG{p}{);}\PYG{+w}{ }\PYG{c+c1}{// using pin 10 for the CE pin, and pin 9 for the CSN pin} + +\PYG{c+c1}{// Let these addresses be used for the pair} +\PYG{k+kr}{uint8\PYGZus{}t}\PYG{+w}{ }\PYG{n}{address}\PYG{p}{[][}\PYG{l+m+mi}{6}\PYG{p}{]}\PYG{+w}{ }\PYG{o}{=}\PYG{+w}{ }\PYG{p}{\PYGZob{}}\PYG{+w}{ }\PYG{l+s}{\PYGZdq{}1Node\PYGZdq{}}\PYG{p}{,}\PYG{+w}{ }\PYG{l+s}{\PYGZdq{}2Node\PYGZdq{}}\PYG{+w}{ }\PYG{p}{\PYGZcb{};} +\PYG{c+c1}{// It is very helpful to think of an address as a path instead of as} +\PYG{c+c1}{// an identifying device destination} + +\PYG{c+c1}{// to use different addresses on a pair of radios, we need a variable to} +\PYG{c+c1}{// uniquely identify which address this radio will use to transmit} +\PYG{k+kr}{bool}\PYG{+w}{ }\PYG{n}{radioNumber}\PYG{+w}{ }\PYG{o}{=}\PYG{+w}{ }\PYG{l+m+mi}{1}\PYG{p}{;}\PYG{+w}{ }\PYG{c+c1}{// 0 uses address[0] to transmit, 1 uses address[1] to transmit} + +\PYG{c+c1}{// Used to control whether this node is sending or receiving} +\PYG{k+kr}{bool}\PYG{+w}{ }\PYG{n}{role}\PYG{+w}{ }\PYG{o}{=}\PYG{+w}{ }\PYG{k+kr}{false}\PYG{p}{;}\PYG{+w}{ }\PYG{c+c1}{// true = TX role, false = RX role} + +\PYG{c+c1}{// For this example, we\PYGZsq{}ll be using a payload containing} +\PYG{c+c1}{// a single float number that will be incremented} +\PYG{c+c1}{// on every successful transmission} +\PYG{k+kr}{float}\PYG{+w}{ }\PYG{n}{payload}\PYG{+w}{ }\PYG{o}{=}\PYG{+w}{ }\PYG{l+m+mf}{0.0}\PYG{p}{;} + +\PYG{k+kr}{void}\PYG{+w}{ }\PYG{n+nb}{setup}\PYG{p}{()}\PYG{+w}{ }\PYG{p}{\PYGZob{}} + +\PYG{+w}{ }\PYG{n+nf}{Serial}\PYG{p}{.}\PYG{n+nf}{begin}\PYG{p}{(}\PYG{l+m+mi}{115200}\PYG{p}{);} +\PYG{+w}{ }\PYG{k}{while}\PYG{+w}{ }\PYG{p}{(}\PYG{o}{!}\PYG{n+nf}{Serial}\PYG{p}{)}\PYG{+w}{ }\PYG{p}{\PYGZob{}} +\PYG{+w}{ }\PYG{c+c1}{// some boards need to wait to ensure access to serial over USB} +\PYG{+w}{ }\PYG{p}{\PYGZcb{}} + +\PYG{+w}{ }\PYG{c+c1}{// initialize the transceiver on the SPI bus} +\PYG{+w}{ }\PYG{k}{if}\PYG{+w}{ }\PYG{p}{(}\PYG{o}{!}\PYG{n}{radio}\PYG{p}{.}\PYG{n+nf}{begin}\PYG{p}{())}\PYG{+w}{ }\PYG{p}{\PYGZob{}} +\PYG{+w}{ }\PYG{n+nf}{Serial}\PYG{p}{.}\PYG{n+nf}{println}\PYG{p}{(}\PYG{n}{F}\PYG{p}{(}\PYG{l+s}{\PYGZdq{}radio hardware is not responding!!\PYGZdq{}}\PYG{p}{));} +\PYG{+w}{ }\PYG{k}{while}\PYG{+w}{ }\PYG{p}{(}\PYG{l+m+mi}{1}\PYG{p}{)}\PYG{+w}{ }\PYG{p}{\PYGZob{}\PYGZcb{}}\PYG{+w}{ }\PYG{c+c1}{// hold in infinite loop} +\PYG{+w}{ }\PYG{p}{\PYGZcb{}} + +\PYG{+w}{ }\PYG{c+c1}{// print example\PYGZsq{}s introductory prompt} +\PYG{+w}{ }\PYG{n+nf}{Serial}\PYG{p}{.}\PYG{n+nf}{println}\PYG{p}{(}\PYG{n}{F}\PYG{p}{(}\PYG{l+s}{\PYGZdq{}RF24/examples/GettingStarted\PYGZdq{}}\PYG{p}{));} + +\PYG{+w}{ }\PYG{c+c1}{// To set the radioNumber via the Serial monitor on startup} +\PYG{+w}{ }\PYG{n+nf}{Serial}\PYG{p}{.}\PYG{n+nf}{println}\PYG{p}{(}\PYG{n}{F}\PYG{p}{(}\PYG{l+s}{\PYGZdq{}Which radio is this? Enter \PYGZsq{}0\PYGZsq{} or \PYGZsq{}1\PYGZsq{}. Defaults to \PYGZsq{}0\PYGZsq{}\PYGZdq{}}\PYG{p}{));} +\PYG{+w}{ }\PYG{k}{while}\PYG{+w}{ }\PYG{p}{(}\PYG{o}{!}\PYG{n+nf}{Serial}\PYG{p}{.}\PYG{n+nf}{available}\PYG{p}{())}\PYG{+w}{ }\PYG{p}{\PYGZob{}} +\PYG{+w}{ }\PYG{c+c1}{// wait for user input} +\PYG{+w}{ }\PYG{p}{\PYGZcb{}} +\PYG{+w}{ }\PYG{k+kr}{char}\PYG{+w}{ }\PYG{n}{input}\PYG{+w}{ }\PYG{o}{=}\PYG{+w}{ }\PYG{n+nf}{Serial}\PYG{p}{.}\PYG{n+nf}{parseInt}\PYG{p}{();} +\PYG{+w}{ }\PYG{n}{radioNumber}\PYG{+w}{ }\PYG{o}{=}\PYG{+w}{ }\PYG{n}{input}\PYG{+w}{ }\PYG{o}{==}\PYG{+w}{ }\PYG{l+m+mi}{1}\PYG{p}{;} +\PYG{+w}{ }\PYG{n+nf}{Serial}\PYG{p}{.}\PYG{n+nf}{print}\PYG{p}{(}\PYG{n}{F}\PYG{p}{(}\PYG{l+s}{\PYGZdq{}radioNumber = \PYGZdq{}}\PYG{p}{));} +\PYG{+w}{ }\PYG{n+nf}{Serial}\PYG{p}{.}\PYG{n+nf}{println}\PYG{p}{((}\PYG{k+kr}{int}\PYG{p}{)}\PYG{n}{radioNumber}\PYG{p}{);} + +\PYG{+w}{ }\PYG{c+c1}{// role variable is hardcoded to RX behavior, inform the user of this} +\PYG{+w}{ }\PYG{n+nf}{Serial}\PYG{p}{.}\PYG{n+nf}{println}\PYG{p}{(}\PYG{n}{F}\PYG{p}{(}\PYG{l+s}{\PYGZdq{}*** PRESS \PYGZsq{}T\PYGZsq{} to begin transmitting to the other node\PYGZdq{}}\PYG{p}{));} + +\PYG{+w}{ }\PYG{c+c1}{// Set the PA Level low to try preventing power supply related problems} +\PYG{+w}{ }\PYG{c+c1}{// because these examples are likely run with nodes in close proximity to} +\PYG{+w}{ }\PYG{c+c1}{// each other.} +\PYG{+w}{ }\PYG{n}{radio}\PYG{p}{.}\PYG{n}{setPALevel}\PYG{p}{(}\PYG{n}{RF24\PYGZus{}PA\PYGZus{}LOW}\PYG{p}{);}\PYG{+w}{ }\PYG{c+c1}{// RF24\PYGZus{}PA\PYGZus{}MAX is default.} + +\PYG{+w}{ }\PYG{c+c1}{// save on transmission time by setting the radio to only transmit the} +\PYG{+w}{ }\PYG{c+c1}{// number of bytes we need to transmit a float} +\PYG{+w}{ }\PYG{n}{radio}\PYG{p}{.}\PYG{n}{setPayloadSize}\PYG{p}{(}\PYG{k+kr}{sizeof}\PYG{p}{(}\PYG{n}{payload}\PYG{p}{));}\PYG{+w}{ }\PYG{c+c1}{// float datatype occupies 4 bytes} + +\PYG{+w}{ }\PYG{c+c1}{// set the TX address of the RX node into the TX pipe} +\PYG{+w}{ }\PYG{n}{radio}\PYG{p}{.}\PYG{n}{openWritingPipe}\PYG{p}{(}\PYG{n}{address}\PYG{p}{[}\PYG{n}{radioNumber}\PYG{p}{]);}\PYG{+w}{ }\PYG{c+c1}{// always uses pipe 0} + +\PYG{+w}{ }\PYG{c+c1}{// set the RX address of the TX node into a RX pipe} +\PYG{+w}{ }\PYG{n}{radio}\PYG{p}{.}\PYG{n}{openReadingPipe}\PYG{p}{(}\PYG{l+m+mi}{1}\PYG{p}{,}\PYG{+w}{ }\PYG{n}{address}\PYG{p}{[}\PYG{o}{!}\PYG{n}{radioNumber}\PYG{p}{]);}\PYG{+w}{ }\PYG{c+c1}{// using pipe 1} + +\PYG{+w}{ }\PYG{c+c1}{// additional setup specific to the node\PYGZsq{}s role} +\PYG{+w}{ }\PYG{k}{if}\PYG{+w}{ }\PYG{p}{(}\PYG{n}{role}\PYG{p}{)}\PYG{+w}{ }\PYG{p}{\PYGZob{}} +\PYG{+w}{ }\PYG{n}{radio}\PYG{p}{.}\PYG{n}{stopListening}\PYG{p}{();}\PYG{+w}{ }\PYG{c+c1}{// put radio in TX mode} +\PYG{+w}{ }\PYG{p}{\PYGZcb{}}\PYG{+w}{ }\PYG{k}{else}\PYG{+w}{ }\PYG{p}{\PYGZob{}} +\PYG{+w}{ }\PYG{n}{radio}\PYG{p}{.}\PYG{n}{startListening}\PYG{p}{();}\PYG{+w}{ }\PYG{c+c1}{// put radio in RX mode} +\PYG{+w}{ }\PYG{p}{\PYGZcb{}} + +\PYG{+w}{ }\PYG{c+c1}{// For debugging info} +\PYG{+w}{ }\PYG{c+c1}{// printf\PYGZus{}begin(); // needed only once for printing details} +\PYG{+w}{ }\PYG{c+c1}{// radio.printDetails(); // (smaller) function that prints raw register values} +\PYG{+w}{ }\PYG{c+c1}{// radio.printPrettyDetails(); // (larger) function that prints human readable data} + +\PYG{p}{\PYGZcb{}}\PYG{+w}{ }\PYG{c+c1}{// setup} + +\PYG{k+kr}{void}\PYG{+w}{ }\PYG{n+nb}{loop}\PYG{p}{()}\PYG{+w}{ }\PYG{p}{\PYGZob{}} + +\PYG{+w}{ }\PYG{k}{if}\PYG{+w}{ }\PYG{p}{(}\PYG{n}{role}\PYG{p}{)}\PYG{+w}{ }\PYG{p}{\PYGZob{}} +\PYG{+w}{ }\PYG{c+c1}{// This device is a TX node} + +\PYG{+w}{ }\PYG{k+kr}{unsigned}\PYG{+w}{ }\PYG{k+kr}{long}\PYG{+w}{ }\PYG{n}{start\PYGZus{}timer}\PYG{+w}{ }\PYG{o}{=}\PYG{+w}{ }\PYG{n+nf}{micros}\PYG{p}{();}\PYG{+w}{ }\PYG{c+c1}{// start the timer} +\PYG{+w}{ }\PYG{k+kr}{bool}\PYG{+w}{ }\PYG{n}{report}\PYG{+w}{ }\PYG{o}{=}\PYG{+w}{ }\PYG{n}{radio}\PYG{p}{.}\PYG{n+nf}{write}\PYG{p}{(}\PYG{o}{\PYGZam{}}\PYG{n}{payload}\PYG{p}{,}\PYG{+w}{ }\PYG{k+kr}{sizeof}\PYG{p}{(}\PYG{k+kr}{float}\PYG{p}{));}\PYG{+w}{ }\PYG{c+c1}{// transmit \PYGZam{} save the report} +\PYG{+w}{ }\PYG{k+kr}{unsigned}\PYG{+w}{ }\PYG{k+kr}{long}\PYG{+w}{ }\PYG{n}{end\PYGZus{}timer}\PYG{+w}{ }\PYG{o}{=}\PYG{+w}{ }\PYG{n+nf}{micros}\PYG{p}{();}\PYG{+w}{ }\PYG{c+c1}{// end the timer} + +\PYG{+w}{ }\PYG{k}{if}\PYG{+w}{ }\PYG{p}{(}\PYG{n}{report}\PYG{p}{)}\PYG{+w}{ }\PYG{p}{\PYGZob{}} +\PYG{+w}{ }\PYG{n+nf}{Serial}\PYG{p}{.}\PYG{n+nf}{print}\PYG{p}{(}\PYG{n}{F}\PYG{p}{(}\PYG{l+s}{\PYGZdq{}Transmission successful! \PYGZdq{}}\PYG{p}{));}\PYG{+w}{ }\PYG{c+c1}{// payload was delivered} +\PYG{+w}{ }\PYG{n+nf}{Serial}\PYG{p}{.}\PYG{n+nf}{print}\PYG{p}{(}\PYG{n}{F}\PYG{p}{(}\PYG{l+s}{\PYGZdq{}Time to transmit = \PYGZdq{}}\PYG{p}{));} +\PYG{+w}{ }\PYG{n+nf}{Serial}\PYG{p}{.}\PYG{n+nf}{print}\PYG{p}{(}\PYG{n}{end\PYGZus{}timer}\PYG{+w}{ }\PYG{o}{\PYGZhy{}}\PYG{+w}{ }\PYG{n}{start\PYGZus{}timer}\PYG{p}{);}\PYG{+w}{ }\PYG{c+c1}{// print the timer result} +\PYG{+w}{ }\PYG{n+nf}{Serial}\PYG{p}{.}\PYG{n+nf}{print}\PYG{p}{(}\PYG{n}{F}\PYG{p}{(}\PYG{l+s}{\PYGZdq{} us. Sent: \PYGZdq{}}\PYG{p}{));} +\PYG{+w}{ }\PYG{n+nf}{Serial}\PYG{p}{.}\PYG{n+nf}{println}\PYG{p}{(}\PYG{n}{payload}\PYG{p}{);}\PYG{+w}{ }\PYG{c+c1}{// print payload sent} +\PYG{+w}{ }\PYG{n}{payload}\PYG{+w}{ }\PYG{o}{+=}\PYG{+w}{ }\PYG{l+m+mf}{0.01}\PYG{p}{;}\PYG{+w}{ }\PYG{c+c1}{// increment float payload} +\PYG{+w}{ }\PYG{p}{\PYGZcb{}}\PYG{+w}{ }\PYG{k}{else}\PYG{+w}{ }\PYG{p}{\PYGZob{}} +\PYG{+w}{ }\PYG{n+nf}{Serial}\PYG{p}{.}\PYG{n+nf}{println}\PYG{p}{(}\PYG{n}{F}\PYG{p}{(}\PYG{l+s}{\PYGZdq{}Transmission failed or timed out\PYGZdq{}}\PYG{p}{));}\PYG{+w}{ }\PYG{c+c1}{// payload was not delivered} +\PYG{+w}{ }\PYG{p}{\PYGZcb{}} + +\PYG{+w}{ }\PYG{c+c1}{// to make this example readable in the serial monitor} +\PYG{+w}{ }\PYG{n+nf}{delay}\PYG{p}{(}\PYG{l+m+mi}{1000}\PYG{p}{);}\PYG{+w}{ }\PYG{c+c1}{// slow transmissions down by 1 second} + +\PYG{+w}{ }\PYG{p}{\PYGZcb{}}\PYG{+w}{ }\PYG{k}{else}\PYG{+w}{ }\PYG{p}{\PYGZob{}} +\PYG{+w}{ }\PYG{c+c1}{// This device is a RX node} + +\PYG{+w}{ }\PYG{k+kr}{uint8\PYGZus{}t}\PYG{+w}{ }\PYG{n}{pipe}\PYG{p}{;} +\PYG{+w}{ }\PYG{k}{if}\PYG{+w}{ }\PYG{p}{(}\PYG{n}{radio}\PYG{p}{.}\PYG{n+nf}{available}\PYG{p}{(}\PYG{o}{\PYGZam{}}\PYG{n}{pipe}\PYG{p}{))}\PYG{+w}{ }\PYG{p}{\PYGZob{}}\PYG{+w}{ }\PYG{c+c1}{// is there a payload? get the pipe number that recieved it} +\PYG{+w}{ }\PYG{k+kr}{uint8\PYGZus{}t}\PYG{+w}{ }\PYG{n}{bytes}\PYG{+w}{ }\PYG{o}{=}\PYG{+w}{ }\PYG{n}{radio}\PYG{p}{.}\PYG{n}{getPayloadSize}\PYG{p}{();}\PYG{+w}{ }\PYG{c+c1}{// get the size of the payload} +\PYG{+w}{ }\PYG{n}{radio}\PYG{p}{.}\PYG{n+nf}{read}\PYG{p}{(}\PYG{o}{\PYGZam{}}\PYG{n}{payload}\PYG{p}{,}\PYG{+w}{ }\PYG{n}{bytes}\PYG{p}{);}\PYG{+w}{ }\PYG{c+c1}{// fetch payload from FIFO} +\PYG{+w}{ }\PYG{n+nf}{Serial}\PYG{p}{.}\PYG{n+nf}{print}\PYG{p}{(}\PYG{n}{F}\PYG{p}{(}\PYG{l+s}{\PYGZdq{}Received \PYGZdq{}}\PYG{p}{));} +\PYG{+w}{ }\PYG{n+nf}{Serial}\PYG{p}{.}\PYG{n+nf}{print}\PYG{p}{(}\PYG{n}{bytes}\PYG{p}{);}\PYG{+w}{ }\PYG{c+c1}{// print the size of the payload} +\PYG{+w}{ }\PYG{n+nf}{Serial}\PYG{p}{.}\PYG{n+nf}{print}\PYG{p}{(}\PYG{n}{F}\PYG{p}{(}\PYG{l+s}{\PYGZdq{} bytes on pipe \PYGZdq{}}\PYG{p}{));} +\PYG{+w}{ }\PYG{n+nf}{Serial}\PYG{p}{.}\PYG{n+nf}{print}\PYG{p}{(}\PYG{n}{pipe}\PYG{p}{);}\PYG{+w}{ }\PYG{c+c1}{// print the pipe number} +\PYG{+w}{ }\PYG{n+nf}{Serial}\PYG{p}{.}\PYG{n+nf}{print}\PYG{p}{(}\PYG{n}{F}\PYG{p}{(}\PYG{l+s}{\PYGZdq{}: \PYGZdq{}}\PYG{p}{));} +\PYG{+w}{ }\PYG{n+nf}{Serial}\PYG{p}{.}\PYG{n+nf}{println}\PYG{p}{(}\PYG{n}{payload}\PYG{p}{);}\PYG{+w}{ }\PYG{c+c1}{// print the payload\PYGZsq{}s value} +\PYG{+w}{ }\PYG{p}{\PYGZcb{}} +\PYG{+w}{ }\PYG{p}{\PYGZcb{}}\PYG{+w}{ }\PYG{c+c1}{// role} + +\PYG{+w}{ }\PYG{k}{if}\PYG{+w}{ }\PYG{p}{(}\PYG{n+nf}{Serial}\PYG{p}{.}\PYG{n+nf}{available}\PYG{p}{())}\PYG{+w}{ }\PYG{p}{\PYGZob{}} +\PYG{+w}{ }\PYG{c+c1}{// change the role via the serial monitor} + +\PYG{+w}{ }\PYG{k+kr}{char}\PYG{+w}{ }\PYG{n}{c}\PYG{+w}{ }\PYG{o}{=}\PYG{+w}{ }\PYG{n}{toupper}\PYG{p}{(}\PYG{n+nf}{Serial}\PYG{p}{.}\PYG{n+nf}{read}\PYG{p}{());} +\PYG{+w}{ }\PYG{k}{if}\PYG{+w}{ }\PYG{p}{(}\PYG{n}{c}\PYG{+w}{ }\PYG{o}{==}\PYG{+w}{ }\PYG{l+s+sc}{\PYGZsq{}T\PYGZsq{}}\PYG{+w}{ }\PYG{o}{\PYGZam{}\PYGZam{}}\PYG{+w}{ }\PYG{o}{!}\PYG{n}{role}\PYG{p}{)}\PYG{+w}{ }\PYG{p}{\PYGZob{}} +\PYG{+w}{ }\PYG{c+c1}{// Become the TX node} + +\PYG{+w}{ }\PYG{n}{role}\PYG{+w}{ }\PYG{o}{=}\PYG{+w}{ }\PYG{k+kr}{true}\PYG{p}{;} +\PYG{+w}{ }\PYG{n+nf}{Serial}\PYG{p}{.}\PYG{n+nf}{println}\PYG{p}{(}\PYG{n}{F}\PYG{p}{(}\PYG{l+s}{\PYGZdq{}*** CHANGING TO TRANSMIT ROLE \PYGZhy{}\PYGZhy{} PRESS \PYGZsq{}R\PYGZsq{} TO SWITCH BACK\PYGZdq{}}\PYG{p}{));} +\PYG{+w}{ }\PYG{n}{radio}\PYG{p}{.}\PYG{n}{stopListening}\PYG{p}{();} + +\PYG{+w}{ }\PYG{p}{\PYGZcb{}}\PYG{+w}{ }\PYG{k}{else}\PYG{+w}{ }\PYG{k}{if}\PYG{+w}{ }\PYG{p}{(}\PYG{n}{c}\PYG{+w}{ }\PYG{o}{==}\PYG{+w}{ }\PYG{l+s+sc}{\PYGZsq{}R\PYGZsq{}}\PYG{+w}{ }\PYG{o}{\PYGZam{}\PYGZam{}}\PYG{+w}{ }\PYG{n}{role}\PYG{p}{)}\PYG{+w}{ }\PYG{p}{\PYGZob{}} +\PYG{+w}{ }\PYG{c+c1}{// Become the RX node} + +\PYG{+w}{ }\PYG{n}{role}\PYG{+w}{ }\PYG{o}{=}\PYG{+w}{ }\PYG{k+kr}{false}\PYG{p}{;} +\PYG{+w}{ }\PYG{n+nf}{Serial}\PYG{p}{.}\PYG{n+nf}{println}\PYG{p}{(}\PYG{n}{F}\PYG{p}{(}\PYG{l+s}{\PYGZdq{}*** CHANGING TO RECEIVE ROLE \PYGZhy{}\PYGZhy{} PRESS \PYGZsq{}T\PYGZsq{} TO SWITCH BACK\PYGZdq{}}\PYG{p}{));} +\PYG{+w}{ }\PYG{n}{radio}\PYG{p}{.}\PYG{n}{startListening}\PYG{p}{();} +\PYG{+w}{ }\PYG{p}{\PYGZcb{}} +\PYG{+w}{ }\PYG{p}{\PYGZcb{}} + +\PYG{p}{\PYGZcb{}}\PYG{+w}{ }\PYG{c+c1}{// loop} +\end{Verbatim} diff --git a/Documentation/Pre-projet/Resume/_minted-resume/953A0B2C4B8DD42FC38318DE0A83EE11101492748D21B1CFCE480A8C1C03A2DB.pygtex b/Documentation/Pre-projet/Resume/_minted-resume/953A0B2C4B8DD42FC38318DE0A83EE11101492748D21B1CFCE480A8C1C03A2DB.pygtex new file mode 100644 index 0000000000000000000000000000000000000000..1e9b34baa1e368bcd09f90228b38d0c583f05bc6 --- /dev/null +++ b/Documentation/Pre-projet/Resume/_minted-resume/953A0B2C4B8DD42FC38318DE0A83EE11101492748D21B1CFCE480A8C1C03A2DB.pygtex @@ -0,0 +1,44 @@ +\begin{Verbatim}[commandchars=\\\{\}] +\PYG{c+cp}{\PYGZsh{}define DirPin A6} +\PYG{c+c1}{// Droite 176 Gauche 850} +\PYG{c+cp}{\PYGZsh{}define PontG 5} +\PYG{c+cp}{\PYGZsh{}define PontD 6} + +\PYG{k+kr}{int}\PYG{+w}{ }\PYG{n}{val}\PYG{+w}{ }\PYG{o}{=}\PYG{+w}{ }\PYG{l+m+mi}{0}\PYG{p}{;} +\PYG{k+kr}{int}\PYG{+w}{ }\PYG{n}{aim}\PYG{+w}{ }\PYG{o}{=}\PYG{+w}{ }\PYG{l+m+mi}{500}\PYG{p}{;} + +\PYG{k+kr}{void}\PYG{+w}{ }\PYG{n+nb}{setup}\PYG{p}{()}\PYG{+w}{ }\PYG{p}{\PYGZob{}} +\PYG{+w}{ }\PYG{n+nf}{Serial}\PYG{p}{.}\PYG{n+nf}{begin}\PYG{p}{(}\PYG{l+m+mi}{9600}\PYG{p}{);} +\PYG{p}{\PYGZcb{}} + +\PYG{k+kr}{void}\PYG{+w}{ }\PYG{n+nb}{loop}\PYG{p}{()}\PYG{+w}{ }\PYG{p}{\PYGZob{}} + + +\PYG{+w}{ }\PYG{k}{if}\PYG{p}{(}\PYG{n+nf}{Serial}\PYG{p}{.}\PYG{n+nf}{available}\PYG{p}{())\PYGZob{}} +\PYG{+w}{ }\PYG{n}{aim}\PYG{+w}{ }\PYG{o}{=}\PYG{+w}{ }\PYG{n+nf}{Serial}\PYG{p}{.}\PYG{n+nf}{readString}\PYG{p}{().}\PYG{n}{toInt}\PYG{p}{();} +\PYG{+w}{ }\PYG{n+nf}{Serial}\PYG{p}{.}\PYG{n+nf}{println}\PYG{p}{(}\PYG{n}{aim}\PYG{p}{);} +\PYG{+w}{ }\PYG{p}{\PYGZcb{}} + +\PYG{+w}{ }\PYG{k}{if}\PYG{p}{(}\PYG{n}{val}\PYG{+w}{ }\PYG{o}{\PYGZlt{}}\PYG{+w}{ }\PYG{n}{aim}\PYG{l+m+mi}{\PYGZhy{}50}\PYG{p}{)} +\PYG{+w}{ }\PYG{p}{\PYGZob{}} +\PYG{+w}{ }\PYG{n+nf}{analogWrite}\PYG{p}{(}\PYG{n}{PontG}\PYG{p}{,}\PYG{l+m+mi}{100}\PYG{p}{);} +\PYG{+w}{ }\PYG{n+nf}{analogWrite}\PYG{p}{(}\PYG{n}{PontD}\PYG{p}{,}\PYG{l+m+mi}{0}\PYG{p}{);} +\PYG{+w}{ }\PYG{p}{\PYGZcb{}} + +\PYG{+w}{ }\PYG{k}{else}\PYG{+w}{ }\PYG{k}{if}\PYG{p}{(}\PYG{n}{val}\PYG{+w}{ }\PYG{o}{\PYGZgt{}}\PYG{+w}{ }\PYG{n}{aim}\PYG{o}{+}\PYG{l+m+mi}{50}\PYG{p}{)} +\PYG{+w}{ }\PYG{p}{\PYGZob{}} +\PYG{+w}{ }\PYG{n+nf}{analogWrite}\PYG{p}{(}\PYG{n}{PontD}\PYG{p}{,}\PYG{l+m+mi}{100}\PYG{p}{);} +\PYG{+w}{ }\PYG{n+nf}{analogWrite}\PYG{p}{(}\PYG{n}{PontG}\PYG{p}{,}\PYG{l+m+mi}{0}\PYG{p}{);} +\PYG{+w}{ }\PYG{p}{\PYGZcb{}} +\PYG{+w}{ }\PYG{k}{else} +\PYG{+w}{ }\PYG{p}{\PYGZob{}} +\PYG{+w}{ }\PYG{n+nf}{analogWrite}\PYG{p}{(}\PYG{n}{PontD}\PYG{p}{,}\PYG{l+m+mi}{0}\PYG{p}{);} +\PYG{+w}{ }\PYG{n+nf}{analogWrite}\PYG{p}{(}\PYG{n}{PontG}\PYG{p}{,}\PYG{l+m+mi}{0}\PYG{p}{);} +\PYG{+w}{ }\PYG{p}{\PYGZcb{}} + + +\PYG{+w}{ }\PYG{n}{val}\PYG{o}{=}\PYG{+w}{ }\PYG{n+nf}{analogRead}\PYG{p}{(}\PYG{n}{DirPin}\PYG{p}{);} +\PYG{+w}{ }\PYG{n+nf}{Serial}\PYG{p}{.}\PYG{n+nf}{println}\PYG{p}{(}\PYG{n}{val}\PYG{p}{);} + +\PYG{p}{\PYGZcb{}} +\end{Verbatim} diff --git a/Documentation/Pre-projet/Resume/_minted-resume/A27053242F9901AA52BB0C45E52D419D109BC8D619DBDEE45AC6AD3984E95C55.pygtex b/Documentation/Pre-projet/Resume/_minted-resume/A27053242F9901AA52BB0C45E52D419D109BC8D619DBDEE45AC6AD3984E95C55.pygtex new file mode 100644 index 0000000000000000000000000000000000000000..97e34df2d0bd4b51862f4aa662527d50308f3238 --- /dev/null +++ b/Documentation/Pre-projet/Resume/_minted-resume/A27053242F9901AA52BB0C45E52D419D109BC8D619DBDEE45AC6AD3984E95C55.pygtex @@ -0,0 +1,40 @@ +\begin{Verbatim}[commandchars=\\\{\}] + +\PYG{c+cp}{\PYGZsh{}define PontHRouge 10} +\PYG{c+cp}{\PYGZsh{}define PontHNoir 9} +\PYG{k+kr}{int}\PYG{+w}{ }\PYG{n}{val}\PYG{+w}{ }\PYG{o}{=}\PYG{+w}{ }\PYG{l+m+mi}{0}\PYG{p}{;} + +\PYG{k+kr}{void}\PYG{+w}{ }\PYG{n+nb}{setup}\PYG{p}{()}\PYG{+w}{ }\PYG{p}{\PYGZob{}} + +\PYG{+w}{ }\PYG{n+nf}{pinMode}\PYG{p}{(}\PYG{n}{PontHRouge}\PYG{p}{,}\PYG{k+kr}{OUTPUT}\PYG{p}{);} +\PYG{+w}{ }\PYG{n+nf}{pinMode}\PYG{p}{(}\PYG{n}{PontHNoir}\PYG{p}{,}\PYG{k+kr}{OUTPUT}\PYG{p}{);} +\PYG{+w}{ }\PYG{n+nf}{Serial}\PYG{p}{.}\PYG{n+nf}{begin}\PYG{p}{(}\PYG{l+m+mi}{115200}\PYG{p}{);} + +\PYG{+w}{ }\PYG{k}{while}\PYG{+w}{ }\PYG{p}{(}\PYG{o}{!}\PYG{n+nf}{Serial}\PYG{p}{)}\PYG{+w}{ }\PYG{p}{\PYGZob{}} +\PYG{+w}{ }\PYG{c+c1}{// some boards need to wait to ensure access to serial over USB} +\PYG{+w}{ }\PYG{p}{\PYGZcb{}} + +\PYG{+w}{ }\PYG{n+nf}{Serial}\PYG{p}{.}\PYG{n+nf}{println}\PYG{p}{(}\PYG{l+s}{\PYGZdq{}Test des commandes PWM voiture\PYGZdq{}}\PYG{p}{);} + +\PYG{p}{\PYGZcb{}} + +\PYG{k+kr}{void}\PYG{+w}{ }\PYG{n+nb}{loop}\PYG{p}{()}\PYG{+w}{ }\PYG{p}{\PYGZob{}} + +\PYG{+w}{ }\PYG{k}{if}\PYG{p}{(}\PYG{n}{val}\PYG{+w}{ }\PYG{o}{\PYGZgt{}=}\PYG{+w}{ }\PYG{l+m+mi}{0}\PYG{+w}{ }\PYG{p}{)} +\PYG{+w}{ }\PYG{p}{\PYGZob{}} +\PYG{+w}{ }\PYG{n+nf}{analogWrite}\PYG{p}{(}\PYG{n}{PontHRouge}\PYG{p}{,}\PYG{n+nf}{abs}\PYG{p}{(}\PYG{n}{val}\PYG{p}{));} +\PYG{+w}{ }\PYG{n+nf}{analogWrite}\PYG{p}{(}\PYG{n}{PontHNoir}\PYG{p}{,}\PYG{n+nf}{abs}\PYG{p}{(}\PYG{n}{val}\PYG{p}{));} +\PYG{+w}{ }\PYG{p}{\PYGZcb{}} +\PYG{+w}{ }\PYG{k}{if}\PYG{p}{(}\PYG{n}{val}\PYG{+w}{ }\PYG{o}{\PYGZlt{}}\PYG{+w}{ }\PYG{l+m+mi}{0}\PYG{p}{)} +\PYG{+w}{ }\PYG{p}{\PYGZob{}} +\PYG{+w}{ }\PYG{n+nf}{analogWrite}\PYG{p}{(}\PYG{n}{PontHNoir}\PYG{p}{,}\PYG{n+nf}{abs}\PYG{p}{(}\PYG{n}{val}\PYG{p}{));} +\PYG{+w}{ }\PYG{p}{\PYGZcb{}} + +\PYG{+w}{ }\PYG{k}{if}\PYG{p}{(}\PYG{n+nf}{Serial}\PYG{p}{.}\PYG{n+nf}{available}\PYG{p}{())\PYGZob{}} + +\PYG{+w}{ }\PYG{n}{val}\PYG{+w}{ }\PYG{o}{=}\PYG{+w}{ }\PYG{n+nf}{Serial}\PYG{p}{.}\PYG{n+nf}{readString}\PYG{p}{().}\PYG{n}{toInt}\PYG{p}{();} +\PYG{+w}{ }\PYG{n+nf}{Serial}\PYG{p}{.}\PYG{n+nf}{println}\PYG{p}{(}\PYG{n}{val}\PYG{p}{);} +\PYG{+w}{ }\PYG{p}{\PYGZcb{}} +\PYG{p}{\PYGZcb{}} + +\end{Verbatim} diff --git a/Documentation/Pre-projet/Resume/_minted-resume/D39AAC58234C1264F11CFBFA0DA2541F101492748D21B1CFCE480A8C1C03A2DB.pygtex b/Documentation/Pre-projet/Resume/_minted-resume/D39AAC58234C1264F11CFBFA0DA2541F101492748D21B1CFCE480A8C1C03A2DB.pygtex new file mode 100644 index 0000000000000000000000000000000000000000..0e2f9222938cc4b87dc88bce8b7cb511ad64560f --- /dev/null +++ b/Documentation/Pre-projet/Resume/_minted-resume/D39AAC58234C1264F11CFBFA0DA2541F101492748D21B1CFCE480A8C1C03A2DB.pygtex @@ -0,0 +1,3 @@ +\begin{Verbatim}[commandchars=\\\{\}] +\PYG{n}{RF24}\PYG{+w}{ }\PYG{n+nf}{radio}\PYG{p}{(}\PYG{l+m+mi}{10}\PYG{p}{,}\PYG{+w}{ }\PYG{l+m+mi}{9}\PYG{p}{);}\PYG{+w}{ } +\end{Verbatim} diff --git a/Documentation/Pre-projet/Resume/_minted-resume/default.pygstyle b/Documentation/Pre-projet/Resume/_minted-resume/default.pygstyle new file mode 100644 index 0000000000000000000000000000000000000000..211763d1d4e4c090ba3a286634a9a96c7fae303b --- /dev/null +++ b/Documentation/Pre-projet/Resume/_minted-resume/default.pygstyle @@ -0,0 +1,101 @@ + +\makeatletter +\def\PYG@reset{\let\PYG@it=\relax \let\PYG@bf=\relax% + \let\PYG@ul=\relax \let\PYG@tc=\relax% + \let\PYG@bc=\relax \let\PYG@ff=\relax} +\def\PYG@tok#1{\csname PYG@tok@#1\endcsname} +\def\PYG@toks#1+{\ifx\relax#1\empty\else% + \PYG@tok{#1}\expandafter\PYG@toks\fi} +\def\PYG@do#1{\PYG@bc{\PYG@tc{\PYG@ul{% + \PYG@it{\PYG@bf{\PYG@ff{#1}}}}}}} +\def\PYG#1#2{\PYG@reset\PYG@toks#1+\relax+\PYG@do{#2}} + +\@namedef{PYG@tok@w}{\def\PYG@tc##1{\textcolor[rgb]{0.73,0.73,0.73}{##1}}} +\@namedef{PYG@tok@c}{\let\PYG@it=\textit\def\PYG@tc##1{\textcolor[rgb]{0.24,0.48,0.48}{##1}}} +\@namedef{PYG@tok@cp}{\def\PYG@tc##1{\textcolor[rgb]{0.61,0.40,0.00}{##1}}} +\@namedef{PYG@tok@k}{\let\PYG@bf=\textbf\def\PYG@tc##1{\textcolor[rgb]{0.00,0.50,0.00}{##1}}} +\@namedef{PYG@tok@kp}{\def\PYG@tc##1{\textcolor[rgb]{0.00,0.50,0.00}{##1}}} +\@namedef{PYG@tok@kt}{\def\PYG@tc##1{\textcolor[rgb]{0.69,0.00,0.25}{##1}}} +\@namedef{PYG@tok@o}{\def\PYG@tc##1{\textcolor[rgb]{0.40,0.40,0.40}{##1}}} +\@namedef{PYG@tok@ow}{\let\PYG@bf=\textbf\def\PYG@tc##1{\textcolor[rgb]{0.67,0.13,1.00}{##1}}} +\@namedef{PYG@tok@nb}{\def\PYG@tc##1{\textcolor[rgb]{0.00,0.50,0.00}{##1}}} +\@namedef{PYG@tok@nf}{\def\PYG@tc##1{\textcolor[rgb]{0.00,0.00,1.00}{##1}}} +\@namedef{PYG@tok@nc}{\let\PYG@bf=\textbf\def\PYG@tc##1{\textcolor[rgb]{0.00,0.00,1.00}{##1}}} +\@namedef{PYG@tok@nn}{\let\PYG@bf=\textbf\def\PYG@tc##1{\textcolor[rgb]{0.00,0.00,1.00}{##1}}} +\@namedef{PYG@tok@ne}{\let\PYG@bf=\textbf\def\PYG@tc##1{\textcolor[rgb]{0.80,0.25,0.22}{##1}}} +\@namedef{PYG@tok@nv}{\def\PYG@tc##1{\textcolor[rgb]{0.10,0.09,0.49}{##1}}} +\@namedef{PYG@tok@no}{\def\PYG@tc##1{\textcolor[rgb]{0.53,0.00,0.00}{##1}}} +\@namedef{PYG@tok@nl}{\def\PYG@tc##1{\textcolor[rgb]{0.46,0.46,0.00}{##1}}} +\@namedef{PYG@tok@ni}{\let\PYG@bf=\textbf\def\PYG@tc##1{\textcolor[rgb]{0.44,0.44,0.44}{##1}}} +\@namedef{PYG@tok@na}{\def\PYG@tc##1{\textcolor[rgb]{0.41,0.47,0.13}{##1}}} +\@namedef{PYG@tok@nt}{\let\PYG@bf=\textbf\def\PYG@tc##1{\textcolor[rgb]{0.00,0.50,0.00}{##1}}} +\@namedef{PYG@tok@nd}{\def\PYG@tc##1{\textcolor[rgb]{0.67,0.13,1.00}{##1}}} +\@namedef{PYG@tok@s}{\def\PYG@tc##1{\textcolor[rgb]{0.73,0.13,0.13}{##1}}} +\@namedef{PYG@tok@sd}{\let\PYG@it=\textit\def\PYG@tc##1{\textcolor[rgb]{0.73,0.13,0.13}{##1}}} +\@namedef{PYG@tok@si}{\let\PYG@bf=\textbf\def\PYG@tc##1{\textcolor[rgb]{0.64,0.35,0.47}{##1}}} +\@namedef{PYG@tok@se}{\let\PYG@bf=\textbf\def\PYG@tc##1{\textcolor[rgb]{0.67,0.36,0.12}{##1}}} +\@namedef{PYG@tok@sr}{\def\PYG@tc##1{\textcolor[rgb]{0.64,0.35,0.47}{##1}}} +\@namedef{PYG@tok@ss}{\def\PYG@tc##1{\textcolor[rgb]{0.10,0.09,0.49}{##1}}} +\@namedef{PYG@tok@sx}{\def\PYG@tc##1{\textcolor[rgb]{0.00,0.50,0.00}{##1}}} +\@namedef{PYG@tok@m}{\def\PYG@tc##1{\textcolor[rgb]{0.40,0.40,0.40}{##1}}} +\@namedef{PYG@tok@gh}{\let\PYG@bf=\textbf\def\PYG@tc##1{\textcolor[rgb]{0.00,0.00,0.50}{##1}}} +\@namedef{PYG@tok@gu}{\let\PYG@bf=\textbf\def\PYG@tc##1{\textcolor[rgb]{0.50,0.00,0.50}{##1}}} +\@namedef{PYG@tok@gd}{\def\PYG@tc##1{\textcolor[rgb]{0.63,0.00,0.00}{##1}}} +\@namedef{PYG@tok@gi}{\def\PYG@tc##1{\textcolor[rgb]{0.00,0.52,0.00}{##1}}} +\@namedef{PYG@tok@gr}{\def\PYG@tc##1{\textcolor[rgb]{0.89,0.00,0.00}{##1}}} +\@namedef{PYG@tok@ge}{\let\PYG@it=\textit} +\@namedef{PYG@tok@gs}{\let\PYG@bf=\textbf} +\@namedef{PYG@tok@gp}{\let\PYG@bf=\textbf\def\PYG@tc##1{\textcolor[rgb]{0.00,0.00,0.50}{##1}}} +\@namedef{PYG@tok@go}{\def\PYG@tc##1{\textcolor[rgb]{0.44,0.44,0.44}{##1}}} +\@namedef{PYG@tok@gt}{\def\PYG@tc##1{\textcolor[rgb]{0.00,0.27,0.87}{##1}}} +\@namedef{PYG@tok@err}{\def\PYG@bc##1{{\setlength{\fboxsep}{\string -\fboxrule}\fcolorbox[rgb]{1.00,0.00,0.00}{1,1,1}{\strut ##1}}}} +\@namedef{PYG@tok@kc}{\let\PYG@bf=\textbf\def\PYG@tc##1{\textcolor[rgb]{0.00,0.50,0.00}{##1}}} +\@namedef{PYG@tok@kd}{\let\PYG@bf=\textbf\def\PYG@tc##1{\textcolor[rgb]{0.00,0.50,0.00}{##1}}} +\@namedef{PYG@tok@kn}{\let\PYG@bf=\textbf\def\PYG@tc##1{\textcolor[rgb]{0.00,0.50,0.00}{##1}}} +\@namedef{PYG@tok@kr}{\let\PYG@bf=\textbf\def\PYG@tc##1{\textcolor[rgb]{0.00,0.50,0.00}{##1}}} +\@namedef{PYG@tok@bp}{\def\PYG@tc##1{\textcolor[rgb]{0.00,0.50,0.00}{##1}}} +\@namedef{PYG@tok@fm}{\def\PYG@tc##1{\textcolor[rgb]{0.00,0.00,1.00}{##1}}} +\@namedef{PYG@tok@vc}{\def\PYG@tc##1{\textcolor[rgb]{0.10,0.09,0.49}{##1}}} +\@namedef{PYG@tok@vg}{\def\PYG@tc##1{\textcolor[rgb]{0.10,0.09,0.49}{##1}}} +\@namedef{PYG@tok@vi}{\def\PYG@tc##1{\textcolor[rgb]{0.10,0.09,0.49}{##1}}} +\@namedef{PYG@tok@vm}{\def\PYG@tc##1{\textcolor[rgb]{0.10,0.09,0.49}{##1}}} +\@namedef{PYG@tok@sa}{\def\PYG@tc##1{\textcolor[rgb]{0.73,0.13,0.13}{##1}}} +\@namedef{PYG@tok@sb}{\def\PYG@tc##1{\textcolor[rgb]{0.73,0.13,0.13}{##1}}} +\@namedef{PYG@tok@sc}{\def\PYG@tc##1{\textcolor[rgb]{0.73,0.13,0.13}{##1}}} +\@namedef{PYG@tok@dl}{\def\PYG@tc##1{\textcolor[rgb]{0.73,0.13,0.13}{##1}}} +\@namedef{PYG@tok@s2}{\def\PYG@tc##1{\textcolor[rgb]{0.73,0.13,0.13}{##1}}} +\@namedef{PYG@tok@sh}{\def\PYG@tc##1{\textcolor[rgb]{0.73,0.13,0.13}{##1}}} +\@namedef{PYG@tok@s1}{\def\PYG@tc##1{\textcolor[rgb]{0.73,0.13,0.13}{##1}}} +\@namedef{PYG@tok@mb}{\def\PYG@tc##1{\textcolor[rgb]{0.40,0.40,0.40}{##1}}} +\@namedef{PYG@tok@mf}{\def\PYG@tc##1{\textcolor[rgb]{0.40,0.40,0.40}{##1}}} +\@namedef{PYG@tok@mh}{\def\PYG@tc##1{\textcolor[rgb]{0.40,0.40,0.40}{##1}}} +\@namedef{PYG@tok@mi}{\def\PYG@tc##1{\textcolor[rgb]{0.40,0.40,0.40}{##1}}} +\@namedef{PYG@tok@il}{\def\PYG@tc##1{\textcolor[rgb]{0.40,0.40,0.40}{##1}}} +\@namedef{PYG@tok@mo}{\def\PYG@tc##1{\textcolor[rgb]{0.40,0.40,0.40}{##1}}} +\@namedef{PYG@tok@ch}{\let\PYG@it=\textit\def\PYG@tc##1{\textcolor[rgb]{0.24,0.48,0.48}{##1}}} +\@namedef{PYG@tok@cm}{\let\PYG@it=\textit\def\PYG@tc##1{\textcolor[rgb]{0.24,0.48,0.48}{##1}}} +\@namedef{PYG@tok@cpf}{\let\PYG@it=\textit\def\PYG@tc##1{\textcolor[rgb]{0.24,0.48,0.48}{##1}}} +\@namedef{PYG@tok@c1}{\let\PYG@it=\textit\def\PYG@tc##1{\textcolor[rgb]{0.24,0.48,0.48}{##1}}} +\@namedef{PYG@tok@cs}{\let\PYG@it=\textit\def\PYG@tc##1{\textcolor[rgb]{0.24,0.48,0.48}{##1}}} + +\def\PYGZbs{\char`\\} +\def\PYGZus{\char`\_} +\def\PYGZob{\char`\{} +\def\PYGZcb{\char`\}} +\def\PYGZca{\char`\^} +\def\PYGZam{\char`\&} +\def\PYGZlt{\char`\<} +\def\PYGZgt{\char`\>} +\def\PYGZsh{\char`\#} +\def\PYGZpc{\char`\%} +\def\PYGZdl{\char`\$} +\def\PYGZhy{\char`\-} +\def\PYGZsq{\char`\'} +\def\PYGZdq{\char`\"} +\def\PYGZti{\char`\~} +% for compatibility with earlier versions +\def\PYGZat{@} +\def\PYGZlb{[} +\def\PYGZrb{]} +\makeatother + diff --git a/Documentation/Pre-projet/Resume/carte-pae-6753.jpg b/Documentation/Pre-projet/Resume/carte-pae-6753.jpg new file mode 100644 index 0000000000000000000000000000000000000000..b80d8036d9cfd1cd00d03fc46d30271cf72a074d Binary files /dev/null and b/Documentation/Pre-projet/Resume/carte-pae-6753.jpg differ diff --git a/Documentation/Pre-projet/Resume/carte-pae-6755.jpg b/Documentation/Pre-projet/Resume/carte-pae-6755.jpg new file mode 100644 index 0000000000000000000000000000000000000000..3aa022fba51c2e34158d592b038675fb790b239e Binary files /dev/null and b/Documentation/Pre-projet/Resume/carte-pae-6755.jpg differ diff --git a/Documentation/Pre-projet/Resume/carte-pae-6766.jpg b/Documentation/Pre-projet/Resume/carte-pae-6766.jpg new file mode 100644 index 0000000000000000000000000000000000000000..9ffc914a2c6160a5b393aed03adbc4d57fabbcb2 Binary files /dev/null and b/Documentation/Pre-projet/Resume/carte-pae-6766.jpg differ diff --git a/Documentation/Pre-projet/Resume/carte-pae-6770.jpg b/Documentation/Pre-projet/Resume/carte-pae-6770.jpg new file mode 100644 index 0000000000000000000000000000000000000000..563cbcc94082aeea21e3e9ee684e731ce84f53be Binary files /dev/null and b/Documentation/Pre-projet/Resume/carte-pae-6770.jpg differ diff --git a/Documentation/Pre-projet/Resume/carte-pae-6771.jpg b/Documentation/Pre-projet/Resume/carte-pae-6771.jpg new file mode 100644 index 0000000000000000000000000000000000000000..1feb271809b40e1e76335a9b78b2ca4778511c32 Binary files /dev/null and b/Documentation/Pre-projet/Resume/carte-pae-6771.jpg differ diff --git a/Documentation/Pre-projet/Resume/resume.aux b/Documentation/Pre-projet/Resume/resume.aux new file mode 100644 index 0000000000000000000000000000000000000000..a27c902c1edacc6083b2a2cdb3e3e952c2c27e8e --- /dev/null +++ b/Documentation/Pre-projet/Resume/resume.aux @@ -0,0 +1,56 @@ +\relax +\providecommand\hyper@newdestlabel[2]{} +\providecommand\babel@aux[2]{} +\@nameuse{bbl@beforestart} +\catcode `:\active +\catcode `;\active +\catcode `!\active +\catcode `?\active +\providecommand\HyperFirstAtBeginDocument{\AtBeginDocument} +\HyperFirstAtBeginDocument{\ifx\hyper@anchor\@undefined +\global\let\oldcontentsline\contentsline +\gdef\contentsline#1#2#3#4{\oldcontentsline{#1}{#2}{#3}} +\global\let\oldnewlabel\newlabel +\gdef\newlabel#1#2{\newlabelxx{#1}#2} +\gdef\newlabelxx#1#2#3#4#5#6{\oldnewlabel{#1}{{#2}{#3}}} +\AtEndDocument{\ifx\hyper@anchor\@undefined +\let\contentsline\oldcontentsline +\let\newlabel\oldnewlabel +\fi} +\fi} +\global\let\hyper@last\relax +\gdef\HyperFirstAtBeginDocument#1{#1} +\providecommand\HyField@AuxAddToFields[1]{} +\providecommand\HyField@AuxAddToCoFields[2]{} +\pgfsyspdfmark {pgfid3}{0}{38412394} +\pgfsyspdfmark {pgfid4}{0}{37462122} +\babel@aux{french}{} +\@writefile{toc}{\contentsline {section}{\numberline {1}Introduction}{1}{section.1}\protected@file@percent } +\@writefile{toc}{\contentsline {section}{\numberline {2}Voiture RC}{2}{section.2}\protected@file@percent } +\@writefile{toc}{\contentsline {subsection}{\numberline {2.1}Fonctionnement de la voiture}{2}{subsection.2.1}\protected@file@percent } +\@writefile{toc}{\contentsline {subsection}{\numberline {2.2}Montage électrique}{3}{subsection.2.2}\protected@file@percent } +\@writefile{lof}{\contentsline {figure}{\numberline {1}{\ignorespaces Câblage de l'arduino nano\relax }}{3}{figure.caption.2}\protected@file@percent } +\providecommand*\caption@xref[2]{\@setref\relax\@undefined{#1}} +\newlabel{fig:wiringcar}{{1}{3}{Câblage de l'arduino nano\relax }{figure.caption.2}{}} +\@writefile{toc}{\contentsline {subsection}{\numberline {2.3}Codes de test}{3}{subsection.2.3}\protected@file@percent } +\@writefile{toc}{\contentsline {subsubsection}{\numberline {2.3.1}Test Puissance}{4}{subsubsection.2.3.1}\protected@file@percent } +\@writefile{toc}{\contentsline {subsubsection}{\numberline {2.3.2}Test direction}{5}{subsubsection.2.3.2}\protected@file@percent } +\@writefile{toc}{\contentsline {section}{\numberline {3}Dongle de contrôle}{7}{section.3}\protected@file@percent } +\@writefile{toc}{\contentsline {subsection}{\numberline {3.1}Construction}{7}{subsection.3.1}\protected@file@percent } +\@writefile{toc}{\contentsline {subsection}{\numberline {3.2}Script de contrôle}{7}{subsection.3.2}\protected@file@percent } +\@writefile{lof}{\contentsline {figure}{\numberline {2}{\ignorespaces Câblage possible d'une nrf24l01 avec une arduino nano\relax }}{8}{figure.caption.3}\protected@file@percent } +\newlabel{fig:wiringdongle}{{2}{8}{Câblage possible d'une nrf24l01 avec une arduino nano\relax }{figure.caption.3}{}} +\@writefile{toc}{\contentsline {section}{\numberline {4}Solution caméra}{8}{section.4}\protected@file@percent } +\@writefile{toc}{\contentsline {subsection}{\numberline {4.1}Description des solutions}{8}{subsection.4.1}\protected@file@percent } +\@writefile{toc}{\contentsline {subsection}{\numberline {4.2}Intelligence embarqué}{8}{subsection.4.2}\protected@file@percent } +\@writefile{toc}{\contentsline {subsection}{\numberline {4.3}Intelligence déporté}{9}{subsection.4.3}\protected@file@percent } +\@writefile{toc}{\contentsline {section}{\numberline {5}Annexe}{11}{section.5}\protected@file@percent } +\@writefile{toc}{\contentsline {subsection}{\numberline {5.1}Code de test nrf24l01+}{11}{subsection.5.1}\protected@file@percent } +\newlabel{sec:nrf24l01}{{5.1}{11}{Code de test nrf24l01+}{subsection.5.1}{}} +\gdef\minted@oldcachelist{, + default.pygstyle, + A27053242F9901AA52BB0C45E52D419D109BC8D619DBDEE45AC6AD3984E95C55.pygtex, + 953A0B2C4B8DD42FC38318DE0A83EE11101492748D21B1CFCE480A8C1C03A2DB.pygtex, + D39AAC58234C1264F11CFBFA0DA2541F101492748D21B1CFCE480A8C1C03A2DB.pygtex, + 8738AEBF99E5B84BD07FB03F4080BAFE101492748D21B1CFCE480A8C1C03A2DB.pygtex} +\gdef \@abspage@last{15} diff --git a/Documentation/Pre-projet/Resume/resume.log b/Documentation/Pre-projet/Resume/resume.log new file mode 100644 index 0000000000000000000000000000000000000000..d074d523e9e0b39fa86774b47c33df568798c141 --- /dev/null +++ b/Documentation/Pre-projet/Resume/resume.log @@ -0,0 +1,1728 @@ +This is pdfTeX, Version 3.141592653-2.6-1.40.24 (MiKTeX 22.3) (preloaded format=pdflatex 2022.8.25) 5 SEP 2022 18:18 +entering extended mode + \write18 enabled. + %&-line parsing enabled. +**./resume.tex +(resume.tex +LaTeX2e <2021-11-15> patch level 1 +L3 programming layer <2022-02-24> +(C:/AA_perso/localtex\tex/latex\EPSA-rap-template\EPSA-rap-template.cls +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/latex/base\article.cls +Document Class: article 2021/10/04 v1.4n Standard LaTeX document class +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/latex/base\size12.clo +File: size12.clo 2021/10/04 v1.4n Standard LaTeX file (size option) +) +\c@part=\count185 +\c@section=\count186 +\c@subsection=\count187 +\c@subsubsection=\count188 +\c@paragraph=\count189 +\c@subparagraph=\count190 +\c@figure=\count191 +\c@table=\count192 +\abovecaptionskip=\skip47 +\belowcaptionskip=\skip48 +\bibindent=\dimen138 +) +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/generic/babel\babel.sty +Package: babel 2022/02/26 3.73 The Babel package +\babel@savecnt=\count193 +\U@D=\dimen139 +\l@unhyphenated=\language79 + +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/generic/babel\txtbabel. +def) +\bbl@readstream=\read2 +\bbl@dirlevel=\count194 + +************************************* +* Local config file bblopts.cfg used +* + +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/latex/arabi\bblopts.cfg +File: bblopts.cfg 2005/09/08 v0.1 add Arabic and Farsi to "declared" options of + babel +) +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/generic/babel-french\fr +ench.ldf +Language: french 2022/04/18 v3.5n French support from the babel system +Package babel Info: Hyphen rules for 'acadian' set to \l@french +(babel) (\language22). Reported on input line 91. +Package babel Info: Hyphen rules for 'canadien' set to \l@french +(babel) (\language22). Reported on input line 92. +\FB@nonchar=\count195 +Package babel Info: Making : an active character on input line 430. +Package babel Info: Making ; an active character on input line 431. +Package babel Info: Making ! an active character on input line 432. +Package babel Info: Making ? an active character on input line 433. +\FBguill@level=\count196 +\FBold@everypar=\toks16 +\FB@Mht=\dimen140 +\mc@charclass=\count197 +\mc@charfam=\count198 +\mc@charslot=\count199 +\std@mcc=\count266 +\dec@mcc=\count267 +\listindentFB=\dimen141 +\descindentFB=\dimen142 +\labelindentFB=\dimen143 +\labelwidthFB=\dimen144 +\leftmarginFB=\dimen145 +\parindentFFN=\dimen146 +\FBfnindent=\dimen147 +)) +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/latex/carlisle\scalefnt +.sty) +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/latex/graphics\keyval.s +ty +Package: keyval 2014/10/28 v1.15 key=value parser (DPC) +\KV@toks@=\toks17 +) +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/latex/base\inputenc.sty +Package: inputenc 2021/02/14 v1.3d Input encoding file +\inpenc@prehook=\toks18 +\inpenc@posthook=\toks19 +) +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/latex/placeins\placeins +.sty +Package: placeins 2005/04/18 v 2.2 +) +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/latex/mathtools\mathtoo +ls.sty +Package: mathtools 2022/02/07 v1.28a mathematical typesetting tools + +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/latex/tools\calc.sty +Package: calc 2017/05/25 v4.3 Infix arithmetic (KKT,FJ) +\calc@Acount=\count268 +\calc@Bcount=\count269 +\calc@Adimen=\dimen148 +\calc@Bdimen=\dimen149 +\calc@Askip=\skip49 +\calc@Bskip=\skip50 +LaTeX Info: Redefining \setlength on input line 80. +LaTeX Info: Redefining \addtolength on input line 81. +\calc@Ccount=\count270 +\calc@Cskip=\skip51 +) +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/latex/mathtools\mhsetup +.sty +Package: mhsetup 2021/03/18 v1.4 programming setup (MH) +) +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/latex/amsmath\amsmath.s +ty +Package: amsmath 2021/10/15 v2.17l AMS math features +\@mathmargin=\skip52 + +For additional information on amsmath, use the `?' option. + +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/latex/amsmath\amstext.s +ty +Package: amstext 2021/08/26 v2.01 AMS text + +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/latex/amsmath\amsgen.st +y +File: amsgen.sty 1999/11/30 v2.0 generic functions +\@emptytoks=\toks20 +\ex@=\dimen150 +)) +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/latex/amsmath\amsbsy.st +y +Package: amsbsy 1999/11/29 v1.2d Bold Symbols +\pmbraise@=\dimen151 +) +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/latex/amsmath\amsopn.st +y +Package: amsopn 2021/08/26 v2.02 operator names +) +\inf@bad=\count271 +LaTeX Info: Redefining \frac on input line 234. +\uproot@=\count272 +\leftroot@=\count273 +LaTeX Info: Redefining \overline on input line 399. +\classnum@=\count274 +\DOTSCASE@=\count275 +LaTeX Info: Redefining \ldots on input line 496. +LaTeX Info: Redefining \dots on input line 499. +LaTeX Info: Redefining \cdots on input line 620. +\Mathstrutbox@=\box50 +\strutbox@=\box51 +\big@size=\dimen152 +LaTeX Font Info: Redeclaring font encoding OML on input line 743. +LaTeX Font Info: Redeclaring font encoding OMS on input line 744. +\macc@depth=\count276 +\c@MaxMatrixCols=\count277 +\dotsspace@=\muskip16 +\c@parentequation=\count278 +\dspbrk@lvl=\count279 +\tag@help=\toks21 +\row@=\count280 +\column@=\count281 +\maxfields@=\count282 +\andhelp@=\toks22 +\eqnshift@=\dimen153 +\alignsep@=\dimen154 +\tagshift@=\dimen155 +\tagwidth@=\dimen156 +\totwidth@=\dimen157 +\lineht@=\dimen158 +\@envbody=\toks23 +\multlinegap=\skip53 +\multlinetaggap=\skip54 +\mathdisplay@stack=\toks24 +LaTeX Info: Redefining \[ on input line 2938. +LaTeX Info: Redefining \] on input line 2939. +) +\g_MT_multlinerow_int=\count283 +\l_MT_multwidth_dim=\dimen159 +\origjot=\skip55 +\l_MT_shortvdotswithinadjustabove_dim=\dimen160 +\l_MT_shortvdotswithinadjustbelow_dim=\dimen161 +\l_MT_above_intertext_sep=\dimen162 +\l_MT_below_intertext_sep=\dimen163 +\l_MT_above_shortintertext_sep=\dimen164 +\l_MT_below_shortintertext_sep=\dimen165 +\xmathstrut@box=\box52 +\xmathstrut@dim=\dimen166 +) +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/latex/siunitx\siunitx.s +ty +Package: siunitx 2022-05-03 v3.1.1 A comprehensive (SI) units package +\l__siunitx_angle_tmp_dim=\dimen167 +\l__siunitx_angle_marker_box=\box53 +\l__siunitx_angle_unit_box=\box54 +\l__siunitx_compound_count_int=\count284 + +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/latex/translations\tran +slations.sty +Package: translations 2022/02/05 v1.12 internationalization of LaTeX2e packages + (CN) + +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/latex/etoolbox\etoolbox +.sty +Package: etoolbox 2020/10/05 v2.5k e-TeX tools for LaTeX (JAW) +\etb@tempcnta=\count285 +) +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/generic/pdftexcmds\pdft +excmds.sty +Package: pdftexcmds 2020-06-27 v0.33 Utility functions of pdfTeX for LuaTeX (HO +) + +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/generic/infwarerr\infwa +rerr.sty +Package: infwarerr 2019/12/03 v1.5 Providing info/warning/error messages (HO) +) +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/generic/iftex\iftex.sty +Package: iftex 2022/02/03 v1.0f TeX engine tests +) +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/generic/ltxcmds\ltxcmds +.sty +Package: ltxcmds 2020-05-10 v1.25 LaTeX kernel commands for general use (HO) +) +Package pdftexcmds Info: \pdf@primitive is available. +Package pdftexcmds Info: \pdf@ifprimitive is available. +Package pdftexcmds Info: \pdfdraftmode found. +)) +\l__siunitx_number_exponent_fixed_int=\count286 +\l__siunitx_number_min_decimal_int=\count287 +\l__siunitx_number_min_integer_int=\count288 +\l__siunitx_number_round_precision_int=\count289 +\l__siunitx_number_group_first_int=\count290 +\l__siunitx_number_group_size_int=\count291 +\l__siunitx_number_group_minimum_int=\count292 +\l__siunitx_table_tmp_box=\box55 +\l__siunitx_table_tmp_dim=\dimen168 +\l__siunitx_table_column_width_dim=\dimen169 +\l__siunitx_table_integer_box=\box56 +\l__siunitx_table_decimal_box=\box57 +\l__siunitx_table_before_box=\box58 +\l__siunitx_table_after_box=\box59 +\l__siunitx_table_before_dim=\dimen170 +\l__siunitx_table_carry_dim=\dimen171 +\l__siunitx_unit_tmp_int=\count293 +\l__siunitx_unit_position_int=\count294 +\l__siunitx_unit_total_int=\count295 + +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/latex/l3packages/l3keys +2e\l3keys2e.sty +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/latex/l3kernel\expl3.st +y +Package: expl3 2022-02-24 L3 programming layer (loader) + +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/latex/l3backend\l3backe +nd-pdftex.def +File: l3backend-pdftex.def 2022-02-07 L3 backend support: PDF output (pdfTeX) +\l__color_backend_stack_int=\count296 +\l__pdf_internal_box=\box60 +)) +Package: l3keys2e 2022-01-12 LaTeX2e option processing using LaTeX3 keys +) +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/latex/tools\array.sty +Package: array 2021/10/04 v2.5f Tabular extension package (FMi) +\col@sep=\dimen172 +\ar@mcellbox=\box61 +\extrarowheight=\dimen173 +\NC@list=\toks25 +\extratabsurround=\skip56 +\backup@length=\skip57 +\ar@cellbox=\box62 +)) (C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/latex/float\float.st +y +Package: float 2001/11/08 v1.3d Float enhancements (AL) +\c@float@type=\count297 +\float@exts=\toks26 +\float@box=\box63 +\@float@everytoks=\toks27 +\@floatcapt=\box64 +) +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/latex/graphics\graphicx +.sty +Package: graphicx 2021/09/16 v1.2d Enhanced LaTeX Graphics (DPC,SPQR) + +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/latex/graphics\graphics +.sty +Package: graphics 2021/03/04 v1.4d Standard LaTeX Graphics (DPC,SPQR) + +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/latex/graphics\trig.sty +Package: trig 2021/08/11 v1.11 sin cos tan (DPC) +) +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/latex/graphics-cfg\grap +hics.cfg +File: graphics.cfg 2016/06/04 v1.11 sample graphics configuration +) +Package graphics Info: Driver file: pdftex.def on input line 107. + +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/latex/graphics-def\pdft +ex.def +File: pdftex.def 2020/10/05 v1.2a Graphics/color driver for pdftex +)) +\Gin@req@height=\dimen174 +\Gin@req@width=\dimen175 +) +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/latex/caption\caption.s +ty +Package: caption 2022/03/01 v3.6b Customizing captions (AR) + +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/latex/caption\caption3. +sty +Package: caption3 2022/03/17 v2.3b caption3 kernel (AR) +\caption@tempdima=\dimen176 +\captionmargin=\dimen177 +\caption@leftmargin=\dimen178 +\caption@rightmargin=\dimen179 +\caption@width=\dimen180 +\caption@indent=\dimen181 +\caption@parindent=\dimen182 +\caption@hangindent=\dimen183 +Package caption Info: Standard document class detected. +Package caption Info: french babel package is loaded. +) +\c@caption@flags=\count298 +\c@continuedfloat=\count299 +Package caption Info: float package is loaded. +) +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/latex/caption\subcaptio +n.sty +Package: subcaption 2022/01/07 v1.5 Sub-captions (AR) +\c@subfigure=\count300 +\c@subtable=\count301 +) +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/latex/pgf/frontendlayer +\tikz.sty +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/latex/pgf/basiclayer\pg +f.sty +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/latex/pgf/utilities\pgf +rcs.sty +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/generic/pgf/utilities\p +gfutil-common.tex +\pgfutil@everybye=\toks28 +\pgfutil@tempdima=\dimen184 +\pgfutil@tempdimb=\dimen185 + +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/generic/pgf/utilities\p +gfutil-common-lists.tex)) +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/generic/pgf/utilities\p +gfutil-latex.def +\pgfutil@abb=\box65 +) +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/generic/pgf/utilities\p +gfrcs.code.tex +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/generic/pgf\pgf.revisio +n.tex) +Package: pgfrcs 2021/05/15 v3.1.9a (3.1.9a) +)) +Package: pgf 2021/05/15 v3.1.9a (3.1.9a) + +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/latex/pgf/basiclayer\pg +fcore.sty +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/latex/pgf/systemlayer\p +gfsys.sty +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/generic/pgf/systemlayer +\pgfsys.code.tex +Package: pgfsys 2021/05/15 v3.1.9a (3.1.9a) + +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/generic/pgf/utilities\p +gfkeys.code.tex +\pgfkeys@pathtoks=\toks29 +\pgfkeys@temptoks=\toks30 + +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/generic/pgf/utilities\p +gfkeysfiltered.code.tex +\pgfkeys@tmptoks=\toks31 +)) +\pgf@x=\dimen186 +\pgf@y=\dimen187 +\pgf@xa=\dimen188 +\pgf@ya=\dimen189 +\pgf@xb=\dimen190 +\pgf@yb=\dimen191 +\pgf@xc=\dimen192 +\pgf@yc=\dimen193 +\pgf@xd=\dimen194 +\pgf@yd=\dimen195 +\w@pgf@writea=\write3 +\r@pgf@reada=\read3 +\c@pgf@counta=\count302 +\c@pgf@countb=\count303 +\c@pgf@countc=\count304 +\c@pgf@countd=\count305 +\t@pgf@toka=\toks32 +\t@pgf@tokb=\toks33 +\t@pgf@tokc=\toks34 +\pgf@sys@id@count=\count306 + +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/generic/pgf/systemlayer +\pgf.cfg +File: pgf.cfg 2021/05/15 v3.1.9a (3.1.9a) +) +Driver file for pgf: pgfsys-pdftex.def + +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/generic/pgf/systemlayer +\pgfsys-pdftex.def +File: pgfsys-pdftex.def 2021/05/15 v3.1.9a (3.1.9a) + +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/generic/pgf/systemlayer +\pgfsys-common-pdf.def +File: pgfsys-common-pdf.def 2021/05/15 v3.1.9a (3.1.9a) +))) +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/generic/pgf/systemlayer +\pgfsyssoftpath.code.tex +File: pgfsyssoftpath.code.tex 2021/05/15 v3.1.9a (3.1.9a) +\pgfsyssoftpath@smallbuffer@items=\count307 +\pgfsyssoftpath@bigbuffer@items=\count308 +) +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/generic/pgf/systemlayer +\pgfsysprotocol.code.tex +File: pgfsysprotocol.code.tex 2021/05/15 v3.1.9a (3.1.9a) +)) +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/latex/xcolor\xcolor.sty +Package: xcolor 2021/10/31 v2.13 LaTeX color extensions (UK) + +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/latex/graphics-cfg\colo +r.cfg +File: color.cfg 2016/01/02 v1.6 sample color configuration +) +Package xcolor Info: Driver file: pdftex.def on input line 227. +Package xcolor Info: Model `cmy' substituted by `cmy0' on input line 1352. +Package xcolor Info: Model `hsb' substituted by `rgb' on input line 1356. +Package xcolor Info: Model `RGB' extended on input line 1368. +Package xcolor Info: Model `HTML' substituted by `rgb' on input line 1370. +Package xcolor Info: Model `Hsb' substituted by `hsb' on input line 1371. +Package xcolor Info: Model `tHsb' substituted by `hsb' on input line 1372. +Package xcolor Info: Model `HSB' substituted by `hsb' on input line 1373. +Package xcolor Info: Model `Gray' substituted by `gray' on input line 1374. +Package xcolor Info: Model `wave' substituted by `hsb' on input line 1375. +) +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/generic/pgf/basiclayer\ +pgfcore.code.tex +Package: pgfcore 2021/05/15 v3.1.9a (3.1.9a) + +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/generic/pgf/math\pgfmat +h.code.tex +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/generic/pgf/math\pgfmat +hcalc.code.tex +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/generic/pgf/math\pgfmat +hutil.code.tex) +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/generic/pgf/math\pgfmat +hparser.code.tex +\pgfmath@dimen=\dimen196 +\pgfmath@count=\count309 +\pgfmath@box=\box66 +\pgfmath@toks=\toks35 +\pgfmath@stack@operand=\toks36 +\pgfmath@stack@operation=\toks37 +) +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/generic/pgf/math\pgfmat +hfunctions.code.tex +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/generic/pgf/math\pgfmat +hfunctions.basic.code.tex) +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/generic/pgf/math\pgfmat +hfunctions.trigonometric.code.tex) +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/generic/pgf/math\pgfmat +hfunctions.random.code.tex) +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/generic/pgf/math\pgfmat +hfunctions.comparison.code.tex) +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/generic/pgf/math\pgfmat +hfunctions.base.code.tex) +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/generic/pgf/math\pgfmat +hfunctions.round.code.tex) +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/generic/pgf/math\pgfmat +hfunctions.misc.code.tex) +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/generic/pgf/math\pgfmat +hfunctions.integerarithmetics.code.tex))) +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/generic/pgf/math\pgfmat +hfloat.code.tex +\c@pgfmathroundto@lastzeros=\count310 +)) +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/generic/pgf/math\pgfint +.code.tex) +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/generic/pgf/basiclayer\ +pgfcorepoints.code.tex +File: pgfcorepoints.code.tex 2021/05/15 v3.1.9a (3.1.9a) +\pgf@picminx=\dimen197 +\pgf@picmaxx=\dimen198 +\pgf@picminy=\dimen199 +\pgf@picmaxy=\dimen256 +\pgf@pathminx=\dimen257 +\pgf@pathmaxx=\dimen258 +\pgf@pathminy=\dimen259 +\pgf@pathmaxy=\dimen260 +\pgf@xx=\dimen261 +\pgf@xy=\dimen262 +\pgf@yx=\dimen263 +\pgf@yy=\dimen264 +\pgf@zx=\dimen265 +\pgf@zy=\dimen266 +) +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/generic/pgf/basiclayer\ +pgfcorepathconstruct.code.tex +File: pgfcorepathconstruct.code.tex 2021/05/15 v3.1.9a (3.1.9a) +\pgf@path@lastx=\dimen267 +\pgf@path@lasty=\dimen268 +) +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/generic/pgf/basiclayer\ +pgfcorepathusage.code.tex +File: pgfcorepathusage.code.tex 2021/05/15 v3.1.9a (3.1.9a) +\pgf@shorten@end@additional=\dimen269 +\pgf@shorten@start@additional=\dimen270 +) +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/generic/pgf/basiclayer\ +pgfcorescopes.code.tex +File: pgfcorescopes.code.tex 2021/05/15 v3.1.9a (3.1.9a) +\pgfpic=\box67 +\pgf@hbox=\box68 +\pgf@layerbox@main=\box69 +\pgf@picture@serial@count=\count311 +) +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/generic/pgf/basiclayer\ +pgfcoregraphicstate.code.tex +File: pgfcoregraphicstate.code.tex 2021/05/15 v3.1.9a (3.1.9a) +\pgflinewidth=\dimen271 +) +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/generic/pgf/basiclayer\ +pgfcoretransformations.code.tex +File: pgfcoretransformations.code.tex 2021/05/15 v3.1.9a (3.1.9a) +\pgf@pt@x=\dimen272 +\pgf@pt@y=\dimen273 +\pgf@pt@temp=\dimen274 +) +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/generic/pgf/basiclayer\ +pgfcorequick.code.tex +File: pgfcorequick.code.tex 2021/05/15 v3.1.9a (3.1.9a) +) +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/generic/pgf/basiclayer\ +pgfcoreobjects.code.tex +File: pgfcoreobjects.code.tex 2021/05/15 v3.1.9a (3.1.9a) +) +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/generic/pgf/basiclayer\ +pgfcorepathprocessing.code.tex +File: pgfcorepathprocessing.code.tex 2021/05/15 v3.1.9a (3.1.9a) +) +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/generic/pgf/basiclayer\ +pgfcorearrows.code.tex +File: pgfcorearrows.code.tex 2021/05/15 v3.1.9a (3.1.9a) +\pgfarrowsep=\dimen275 +) +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/generic/pgf/basiclayer\ +pgfcoreshade.code.tex +File: pgfcoreshade.code.tex 2021/05/15 v3.1.9a (3.1.9a) +\pgf@max=\dimen276 +\pgf@sys@shading@range@num=\count312 +\pgf@shadingcount=\count313 +) +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/generic/pgf/basiclayer\ +pgfcoreimage.code.tex +File: pgfcoreimage.code.tex 2021/05/15 v3.1.9a (3.1.9a) + +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/generic/pgf/basiclayer\ +pgfcoreexternal.code.tex +File: pgfcoreexternal.code.tex 2021/05/15 v3.1.9a (3.1.9a) +\pgfexternal@startupbox=\box70 +)) +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/generic/pgf/basiclayer\ +pgfcorelayers.code.tex +File: pgfcorelayers.code.tex 2021/05/15 v3.1.9a (3.1.9a) +) +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/generic/pgf/basiclayer\ +pgfcoretransparency.code.tex +File: pgfcoretransparency.code.tex 2021/05/15 v3.1.9a (3.1.9a) +) +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/generic/pgf/basiclayer\ +pgfcorepatterns.code.tex +File: pgfcorepatterns.code.tex 2021/05/15 v3.1.9a (3.1.9a) +) +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/generic/pgf/basiclayer\ +pgfcorerdf.code.tex +File: pgfcorerdf.code.tex 2021/05/15 v3.1.9a (3.1.9a) +))) +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/generic/pgf/modules\pgf +moduleshapes.code.tex +File: pgfmoduleshapes.code.tex 2021/05/15 v3.1.9a (3.1.9a) +\pgfnodeparttextbox=\box71 +) +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/generic/pgf/modules\pgf +moduleplot.code.tex +File: pgfmoduleplot.code.tex 2021/05/15 v3.1.9a (3.1.9a) +) +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/latex/pgf/compatibility +\pgfcomp-version-0-65.sty +Package: pgfcomp-version-0-65 2021/05/15 v3.1.9a (3.1.9a) +\pgf@nodesepstart=\dimen277 +\pgf@nodesepend=\dimen278 +) +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/latex/pgf/compatibility +\pgfcomp-version-1-18.sty +Package: pgfcomp-version-1-18 2021/05/15 v3.1.9a (3.1.9a) +)) +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/latex/pgf/utilities\pgf +for.sty +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/latex/pgf/utilities\pgf +keys.sty +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/generic/pgf/utilities\p +gfkeys.code.tex)) +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/latex/pgf/math\pgfmath. +sty +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/generic/pgf/math\pgfmat +h.code.tex)) +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/generic/pgf/utilities\p +gffor.code.tex +Package: pgffor 2021/05/15 v3.1.9a (3.1.9a) + +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/generic/pgf/math\pgfmat +h.code.tex) +\pgffor@iter=\dimen279 +\pgffor@skip=\dimen280 +\pgffor@stack=\toks38 +\pgffor@toks=\toks39 +)) +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/generic/pgf/frontendlay +er/tikz\tikz.code.tex +Package: tikz 2021/05/15 v3.1.9a (3.1.9a) + +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/generic/pgf/libraries\p +gflibraryplothandlers.code.tex +File: pgflibraryplothandlers.code.tex 2021/05/15 v3.1.9a (3.1.9a) +\pgf@plot@mark@count=\count314 +\pgfplotmarksize=\dimen281 +) +\tikz@lastx=\dimen282 +\tikz@lasty=\dimen283 +\tikz@lastxsaved=\dimen284 +\tikz@lastysaved=\dimen285 +\tikz@lastmovetox=\dimen286 +\tikz@lastmovetoy=\dimen287 +\tikzleveldistance=\dimen288 +\tikzsiblingdistance=\dimen289 +\tikz@figbox=\box72 +\tikz@figbox@bg=\box73 +\tikz@tempbox=\box74 +\tikz@tempbox@bg=\box75 +\tikztreelevel=\count315 +\tikznumberofchildren=\count316 +\tikznumberofcurrentchild=\count317 +\tikz@fig@count=\count318 + +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/generic/pgf/modules\pgf +modulematrix.code.tex +File: pgfmodulematrix.code.tex 2021/05/15 v3.1.9a (3.1.9a) +\pgfmatrixcurrentrow=\count319 +\pgfmatrixcurrentcolumn=\count320 +\pgf@matrix@numberofcolumns=\count321 +) +\tikz@expandcount=\count322 + +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/generic/pgf/frontendlay +er/tikz/libraries\tikzlibrarytopaths.code.tex +File: tikzlibrarytopaths.code.tex 2021/05/15 v3.1.9a (3.1.9a) +))) +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/generic/pgf/frontendlay +er/tikz/libraries\tikzlibraryshapes.geometric.code.tex +File: tikzlibraryshapes.geometric.code.tex 2021/05/15 v3.1.9a (3.1.9a) + +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/generic/pgf/libraries/s +hapes\pgflibraryshapes.geometric.code.tex +File: pgflibraryshapes.geometric.code.tex 2021/05/15 v3.1.9a (3.1.9a) +)) +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/generic/pgf/frontendlay +er/tikz/libraries\tikzlibrarycalc.code.tex +File: tikzlibrarycalc.code.tex 2021/05/15 v3.1.9a (3.1.9a) +) +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/latex/url\url.sty +\Urlmuskip=\muskip17 +Package: url 2013/09/16 ver 3.4 Verb mode for urls, etc. +) +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/latex/geometry\geometry +.sty +Package: geometry 2020/01/02 v5.9 Page Geometry + +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/generic/iftex\ifvtex.st +y +Package: ifvtex 2019/10/25 v1.7 ifvtex legacy package. Use iftex instead. +) +\Gm@cnth=\count323 +\Gm@cntv=\count324 +\c@Gm@tempcnt=\count325 +\Gm@bindingoffset=\dimen290 +\Gm@wd@mp=\dimen291 +\Gm@odd@mp=\dimen292 +\Gm@even@mp=\dimen293 +\Gm@layoutwidth=\dimen294 +\Gm@layoutheight=\dimen295 +\Gm@layouthoffset=\dimen296 +\Gm@layoutvoffset=\dimen297 +\Gm@dimlist=\toks40 + +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/latex/geometry\geometry +.cfg)) +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/latex/hyperref\hyperref +.sty +Package: hyperref 2022-02-21 v7.00n Hypertext links for LaTeX + +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/generic/kvsetkeys\kvset +keys.sty +Package: kvsetkeys 2019/12/15 v1.18 Key value parser (HO) +) +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/generic/kvdefinekeys\kv +definekeys.sty +Package: kvdefinekeys 2019-12-19 v1.6 Define keys (HO) +) +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/generic/pdfescape\pdfes +cape.sty +Package: pdfescape 2019/12/09 v1.15 Implements pdfTeX's escape features (HO) +) +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/latex/hycolor\hycolor.s +ty +Package: hycolor 2020-01-27 v1.10 Color options for hyperref/bookmark (HO) +) +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/latex/letltxmacro\letlt +xmacro.sty +Package: letltxmacro 2019/12/03 v1.6 Let assignment for LaTeX macros (HO) +) +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/latex/auxhook\auxhook.s +ty +Package: auxhook 2019-12-17 v1.6 Hooks for auxiliary files (HO) +) +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/latex/kvoptions\kvoptio +ns.sty +Package: kvoptions 2020-10-07 v3.14 Key value format for package options (HO) +) +\@linkdim=\dimen298 +\Hy@linkcounter=\count326 +\Hy@pagecounter=\count327 + +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/latex/hyperref\pd1enc.d +ef +File: pd1enc.def 2022-02-21 v7.00n Hyperref: PDFDocEncoding definition (HO) +Now handling font encoding PD1 ... +... no UTF-8 mapping file for font encoding PD1 +) +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/generic/intcalc\intcalc +.sty +Package: intcalc 2019/12/15 v1.3 Expandable calculations with integers (HO) +) +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/generic/etexcmds\etexcm +ds.sty +Package: etexcmds 2019/12/15 v1.7 Avoid name clashes with e-TeX commands (HO) +) +\Hy@SavedSpaceFactor=\count328 + +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/latex/hyperref\puenc.de +f +File: puenc.def 2022-02-21 v7.00n Hyperref: PDF Unicode definition (HO) +Now handling font encoding PU ... +... no UTF-8 mapping file for font encoding PU +) +Package hyperref Info: Hyper figures OFF on input line 4137. +Package hyperref Info: Link nesting OFF on input line 4142. +Package hyperref Info: Hyper index ON on input line 4145. +Package hyperref Info: Plain pages OFF on input line 4152. +Package hyperref Info: Backreferencing OFF on input line 4157. +Package hyperref Info: Implicit mode ON; LaTeX internals redefined. +Package hyperref Info: Bookmarks ON on input line 4390. +\c@Hy@tempcnt=\count329 +LaTeX Info: Redefining \url on input line 4749. +\XeTeXLinkMargin=\dimen299 + +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/generic/bitset\bitset.s +ty +Package: bitset 2019/12/09 v1.3 Handle bit-vector datatype (HO) + +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/generic/bigintcalc\bigi +ntcalc.sty +Package: bigintcalc 2019/12/15 v1.5 Expandable calculations on big integers (HO +) +)) +\Fld@menulength=\count330 +\Field@Width=\dimen300 +\Fld@charsize=\dimen301 +Package hyperref Info: Hyper figures OFF on input line 6027. +Package hyperref Info: Link nesting OFF on input line 6032. +Package hyperref Info: Hyper index ON on input line 6035. +Package hyperref Info: backreferencing OFF on input line 6042. +Package hyperref Info: Link coloring OFF on input line 6047. +Package hyperref Info: Link coloring with OCG OFF on input line 6052. +Package hyperref Info: PDF/A mode OFF on input line 6057. +LaTeX Info: Redefining \ref on input line 6097. +LaTeX Info: Redefining \pageref on input line 6101. + +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/latex/base\atbegshi-ltx +.sty +Package: atbegshi-ltx 2021/01/10 v1.0c Emulation of the original atbegshi +package with kernel methods +) +\Hy@abspage=\count331 +\c@Item=\count332 +\c@Hfootnote=\count333 +) +Package hyperref Info: Driver: hpdftex. + +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/latex/hyperref\hpdftex. +def +File: hpdftex.def 2022-02-21 v7.00n Hyperref driver for pdfTeX + +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/latex/base\atveryend-lt +x.sty +Package: atveryend-ltx 2020/08/19 v1.0a Emulation of the original atveryend pac +kage +with kernel methods +) +\Fld@listcount=\count334 +\c@bookmark@seq@number=\count335 + +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/latex/rerunfilecheck\re +runfilecheck.sty +Package: rerunfilecheck 2019/12/05 v1.9 Rerun checks for auxiliary files (HO) + +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/generic/uniquecounter\u +niquecounter.sty +Package: uniquecounter 2019/12/15 v1.4 Provide unlimited unique counter (HO) +) +Package uniquecounter Info: New unique counter `rerunfilecheck' on input line 2 +86. +) +\Hy@SectionHShift=\skip58 +) +\headeroffset=\skip59 +\headerheight=\skip60 +\titlestraw=\skip61 +\EPSALogo=\skip62 +\EPSAoff=\skip63 +\ECLLogo=\skip64 +\SecBar=\skip65 +\margintop=\skip66 +\marginbottom=\skip67 +\marginright=\skip68 +\marginleft=\skip69 + +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/latex/base\fontenc.sty +Package: fontenc 2021/04/29 v2.0v Standard LaTeX package +) +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/latex/montserrat\montse +rrat.sty +Package: montserrat 2019/11/07 v1.03 + +`montserrat' v1.03, 2019/11/07 Style file for Montserrat and Alternates (msharp +e) +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/latex/base\fontenc.sty +Package: fontenc 2021/04/29 v2.0v Standard LaTeX package + +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/latex/ly1\ly1enc.def +File: ly1enc.def 2022/06/11 v0.8 TeX 'n ANSI encoding (DPC/KB) +Now handling font encoding LY1 ... +... processing UTF-8 mapping file for font encoding LY1 + +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/latex/base\ly1enc.dfu +File: ly1enc.dfu 2021/06/21 v1.2n UTF-8 support + defining Unicode char U+00A0 (decimal 160) + defining Unicode char U+00A1 (decimal 161) + defining Unicode char U+00A2 (decimal 162) + defining Unicode char U+00A3 (decimal 163) + defining Unicode char U+00A4 (decimal 164) + defining Unicode char U+00A5 (decimal 165) + defining Unicode char U+00A6 (decimal 166) + defining Unicode char U+00A7 (decimal 167) + defining Unicode char U+00AA (decimal 170) + defining Unicode char U+00AB (decimal 171) + defining Unicode char U+00AD (decimal 173) + defining Unicode char U+00AE (decimal 174) + defining Unicode char U+00B0 (decimal 176) + defining Unicode char U+00B5 (decimal 181) + defining Unicode char U+00B6 (decimal 182) + defining Unicode char U+00B7 (decimal 183) + defining Unicode char U+00BA (decimal 186) + defining Unicode char U+00BB (decimal 187) + defining Unicode char U+00BC (decimal 188) + defining Unicode char U+00BD (decimal 189) + defining Unicode char U+00BE (decimal 190) + defining Unicode char U+00BF (decimal 191) + defining Unicode char U+00C0 (decimal 192) + defining Unicode char U+00C1 (decimal 193) + defining Unicode char U+00C2 (decimal 194) + defining Unicode char U+00C3 (decimal 195) + defining Unicode char U+00C4 (decimal 196) + defining Unicode char U+00C5 (decimal 197) + defining Unicode char U+00C6 (decimal 198) + defining Unicode char U+00C7 (decimal 199) + defining Unicode char U+00C8 (decimal 200) + defining Unicode char U+00C9 (decimal 201) + defining Unicode char U+00CA (decimal 202) + defining Unicode char U+00CB (decimal 203) + defining Unicode char U+00CC (decimal 204) + defining Unicode char U+00CD (decimal 205) + defining Unicode char U+00CE (decimal 206) + defining Unicode char U+00CF (decimal 207) + defining Unicode char U+00D0 (decimal 208) + defining Unicode char U+00D1 (decimal 209) + defining Unicode char U+00D2 (decimal 210) + defining Unicode char U+00D3 (decimal 211) + defining Unicode char U+00D4 (decimal 212) + defining Unicode char U+00D5 (decimal 213) + defining Unicode char U+00D6 (decimal 214) + defining Unicode char U+00D8 (decimal 216) + defining Unicode char U+00D9 (decimal 217) + defining Unicode char U+00DA (decimal 218) + defining Unicode char U+00DB (decimal 219) + defining Unicode char U+00DC (decimal 220) + defining Unicode char U+00DD (decimal 221) + defining Unicode char U+00DE (decimal 222) + defining Unicode char U+00DF (decimal 223) + defining Unicode char U+00E0 (decimal 224) + defining Unicode char U+00E1 (decimal 225) + defining Unicode char U+00E2 (decimal 226) + defining Unicode char U+00E3 (decimal 227) + defining Unicode char U+00E4 (decimal 228) + defining Unicode char U+00E5 (decimal 229) + defining Unicode char U+00E6 (decimal 230) + defining Unicode char U+00E7 (decimal 231) + defining Unicode char U+00E8 (decimal 232) + defining Unicode char U+00E9 (decimal 233) + defining Unicode char U+00EA (decimal 234) + defining Unicode char U+00EB (decimal 235) + defining Unicode char U+00EC (decimal 236) + defining Unicode char U+00ED (decimal 237) + defining Unicode char U+00EE (decimal 238) + defining Unicode char U+00EF (decimal 239) + defining Unicode char U+00F0 (decimal 240) + defining Unicode char U+00F1 (decimal 241) + defining Unicode char U+00F2 (decimal 242) + defining Unicode char U+00F3 (decimal 243) + defining Unicode char U+00F4 (decimal 244) + defining Unicode char U+00F5 (decimal 245) + defining Unicode char U+00F6 (decimal 246) + defining Unicode char U+00F8 (decimal 248) + defining Unicode char U+00F9 (decimal 249) + defining Unicode char U+00FA (decimal 250) + defining Unicode char U+00FB (decimal 251) + defining Unicode char U+00FC (decimal 252) + defining Unicode char U+00FD (decimal 253) + defining Unicode char U+00FE (decimal 254) + defining Unicode char U+00FF (decimal 255) + defining Unicode char U+0131 (decimal 305) + defining Unicode char U+0141 (decimal 321) + defining Unicode char U+0142 (decimal 322) + defining Unicode char U+0152 (decimal 338) + defining Unicode char U+0153 (decimal 339) + defining Unicode char U+0160 (decimal 352) + defining Unicode char U+0161 (decimal 353) + defining Unicode char U+0174 (decimal 372) + defining Unicode char U+0175 (decimal 373) + defining Unicode char U+0176 (decimal 374) + defining Unicode char U+0177 (decimal 375) + defining Unicode char U+0178 (decimal 376) + defining Unicode char U+017D (decimal 381) + defining Unicode char U+017E (decimal 382) + defining Unicode char U+0192 (decimal 402) + defining Unicode char U+0218 (decimal 536) + defining Unicode char U+0219 (decimal 537) + defining Unicode char U+021A (decimal 538) + defining Unicode char U+021B (decimal 539) + defining Unicode char U+0237 (decimal 567) + defining Unicode char U+02C6 (decimal 710) + defining Unicode char U+02DC (decimal 732) + defining Unicode char U+2013 (decimal 8211) + defining Unicode char U+2014 (decimal 8212) + defining Unicode char U+201C (decimal 8220) + defining Unicode char U+201D (decimal 8221) + defining Unicode char U+2020 (decimal 8224) + defining Unicode char U+2021 (decimal 8225) + defining Unicode char U+2022 (decimal 8226) + defining Unicode char U+2026 (decimal 8230) + defining Unicode char U+2030 (decimal 8240) + defining Unicode char U+2039 (decimal 8249) + defining Unicode char U+203A (decimal 8250) + defining Unicode char U+2122 (decimal 8482) + defining Unicode char U+FB00 (decimal 64256) + defining Unicode char U+FB01 (decimal 64257) + defining Unicode char U+FB02 (decimal 64258) + defining Unicode char U+FB03 (decimal 64259) + defining Unicode char U+FB04 (decimal 64260) + defining Unicode char U+FB05 (decimal 64261) + defining Unicode char U+FB06 (decimal 64262) +))) +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/latex/base\textcomp.sty +Package: textcomp 2020/02/02 v2.0n Standard LaTeX package +) +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/latex/fontaxes\fontaxes +.sty +Package: fontaxes 2020/07/21 v1.0e Font selection axes +LaTeX Info: Redefining \upshape on input line 29. +LaTeX Info: Redefining \itshape on input line 31. +LaTeX Info: Redefining \slshape on input line 33. +LaTeX Info: Redefining \swshape on input line 35. +LaTeX Info: Redefining \scshape on input line 37. +LaTeX Info: Redefining \sscshape on input line 39. +LaTeX Info: Redefining \ulcshape on input line 41. +LaTeX Info: Redefining \textsw on input line 47. +LaTeX Info: Redefining \textssc on input line 48. +LaTeX Info: Redefining \textulc on input line 49. +) +LaTeX Info: Redefining \textin on input line 42. + +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/latex/xkeyval\xkeyval.s +ty +Package: xkeyval 2020/11/20 v2.8 package option processing (HA) + +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/generic/xkeyval\xkeyval +.tex +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/generic/xkeyval\xkvutil +s.tex +\XKV@toks=\toks41 +\XKV@tempa@toks=\toks42 +) +\XKV@depth=\count336 +File: xkeyval.tex 2014/12/03 v2.7a key=value parser (HA) +))) +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/latex/xpatch\xpatch.sty +Package: xpatch 2020/03/25 v0.3a Extending etoolbox patching commands + +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/latex/l3packages/xparse +\xparse.sty +Package: xparse 2022-01-12 L3 Experimental document command parser +)) +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/latex/koma-script\scrla +yer-scrpage.sty +Package: scrlayer-scrpage 2021/11/13 v3.35 KOMA-Script package (end user interf +ace for scrlayer) + +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/latex/koma-script\scrla +yer.sty +Package: scrlayer 2021/11/13 v3.35 KOMA-Script package (defining layers and pag +e styles) + +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/latex/koma-script\scrkb +ase.sty +Package: scrkbase 2021/11/13 v3.35 KOMA-Script package (KOMA-Script-dependent b +asics and keyval usage) + +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/latex/koma-script\scrba +se.sty +Package: scrbase 2021/11/13 v3.35 KOMA-Script package (KOMA-Script-independent +basics and keyval usage) + +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/latex/koma-script\scrlf +ile.sty +Package: scrlfile 2021/11/13 v3.35 KOMA-Script package (file load hooks) + +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/latex/koma-script\scrlf +ile-hook.sty +Package: scrlfile-hook 2021/11/13 v3.35 KOMA-Script package (using LaTeX hooks) + + +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/latex/koma-script\scrlo +go.sty +Package: scrlogo 2021/11/13 v3.35 KOMA-Script package (logo) +))) +Applying: [2021/05/01] Usage of raw or classic option list on input line 252. +Already applied: [0000/00/00] Usage of raw or classic option list on input line + 368. +)) +\footheight=\skip70 +Package scrlayer Info: patching LaTeX kernel macro \pagestyle on input line 216 +2. +) +Package scrbase Info: Unknown processing state. +(scrbase) Processing option `markcase=noupper' +(scrbase) of member `.scrlayer-scrpage.sty' of family +(scrbase) `KOMA' doesn't set +(scrbase) a valid state. This will be interpreted +(scrbase) as \FamilyKeyStateProcessed on input line 636. +) +Package scrlayer-scrpage Info: auto-selection of `pagestyleset=standard'. + +1: subsection +1: section +1: section +1: subsection +) +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/latex/eurosym\eurosym.s +ty +Package: eurosym 1998/08/06 v1.1 European currency symbol ``Euro'' +\@eurobox=\box76 +) +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/latex/amsfonts\amssymb. +sty +Package: amssymb 2013/01/14 v3.01 AMS font symbols + +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/latex/amsfonts\amsfonts +.sty +Package: amsfonts 2013/01/14 v3.01 Basic AMSFonts support +\symAMSa=\mathgroup4 +\symAMSb=\mathgroup5 +LaTeX Font Info: Redeclaring math symbol \hbar on input line 98. +LaTeX Font Info: Overwriting math alphabet `\mathfrak' in version `bold' +(Font) U/euf/m/n --> U/euf/b/n on input line 106. +)) +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/latex/minted\minted.sty +Package: minted 2021/12/24 v2.6 Yet another Pygments shim for LaTeX + +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/latex/fvextra\fvextra.s +ty +Package: fvextra 2019/02/04 v1.4 fvextra - extensions and patches for fancyvrb + +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/latex/base\ifthen.sty +Package: ifthen 2020/11/24 v1.1c Standard LaTeX ifthen package (DPC) +) +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/latex/fancyvrb\fancyvrb +.sty +Package: fancyvrb 2022/06/06 4.5 verbatim text (tvz,hv) +\FV@CodeLineNo=\count337 +\FV@InFile=\read4 +\FV@TabBox=\box77 +\c@FancyVerbLine=\count338 +\FV@StepNumber=\count339 +\FV@OutFile=\write4 +) +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/latex/upquote\upquote.s +ty +Package: upquote 2012/04/19 v1.3 upright-quote and grave-accent glyphs in verba +tim +) +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/latex/lineno\lineno.sty +Package: lineno 2005/11/02 line numbers on paragraphs v4.41 +\linenopenalty=\count340 +\output=\toks43 +\linenoprevgraf=\count341 +\linenumbersep=\dimen302 +\linenumberwidth=\dimen303 +\c@linenumber=\count342 +\c@pagewiselinenumber=\count343 +\c@LN@truepage=\count344 +\c@internallinenumber=\count345 +\c@internallinenumbers=\count346 +\quotelinenumbersep=\dimen304 +\bframerule=\dimen305 +\bframesep=\dimen306 +\bframebox=\box78 +LaTeX Info: Redefining \\ on input line 3056. +) +\c@FV@TrueTabGroupLevel=\count347 +\c@FV@TrueTabCounter=\count348 +\FV@TabBox@Group=\box79 +\FV@TmpLength=\skip71 +\c@FV@HighlightLinesStart=\count349 +\c@FV@HighlightLinesStop=\count350 +\FV@LoopCount=\count351 +\FV@NCharsBox=\box80 +\FV@BreakIndent=\dimen307 +\FV@BreakIndentNChars=\count352 +\FV@BreakSymbolSepLeft=\dimen308 +\FV@BreakSymbolSepLeftNChars=\count353 +\FV@BreakSymbolSepRight=\dimen309 +\FV@BreakSymbolSepRightNChars=\count354 +\FV@BreakSymbolIndentLeft=\dimen310 +\FV@BreakSymbolIndentLeftNChars=\count355 +\FV@BreakSymbolIndentRight=\dimen311 +\FV@BreakSymbolIndentRightNChars=\count356 +\c@FancyVerbLineBreakLast=\count357 +\FV@LineBox=\box81 +\FV@LineIndentBox=\box82 +\FV@LineWidth=\dimen312 +) +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/latex/tools\shellesc.st +y +Package: shellesc 2019/11/08 v1.0c unified shell escape interface for LaTeX +Package shellesc Info: Unrestricted shell escape enabled on input line 75. +) +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/latex/ifplatform\ifplat +form.sty +Package: ifplatform 2017/10/13 v0.4a Testing for the operating system + +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/generic/catchfile\catch +file.sty +Package: catchfile 2019/12/09 v1.8 Catch the contents of a file (HO) +) +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/generic/iftex\ifluatex. +sty +Package: ifluatex 2019/10/25 v1.5 ifluatex legacy package. Use iftex instead. +)) +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/latex/xstring\xstring.s +ty +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/generic/xstring\xstring +.tex +\integerpart=\count358 +\decimalpart=\count359 +) +Package: xstring 2021/07/21 v1.84 String manipulations (CT) +) +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/latex/framed\framed.sty +Package: framed 2011/10/22 v 0.96: framed or shaded text with page breaks +\OuterFrameSep=\skip72 +\fb@frw=\dimen313 +\fb@frh=\dimen314 +\FrameRule=\dimen315 +\FrameSep=\dimen316 +) +\minted@appexistsfile=\read5 +\minted@bgbox=\box83 +\minted@code=\write5 +\c@minted@FancyVerbLineTemp=\count360 +\c@minted@pygmentizecounter=\count361 +\@float@every@listing=\toks44 +\c@listing=\count362 +) +runsystem(if not exist _minted-resume mkdir _minted-resume)...executed. + +Package hyperref Info: Option `unicode' set `true' on input line 35. +Package hyperref Info: Option `colorlinks' set `true' on input line 35. +runsystem(for ^%i in (pygmentize.exe pygmentize.bat pygmentize.cmd) do set > re +sume.aex <nul: /p x=^%~$PATH:i>> resume.aex)...executed. + +runsystem(del resume.aex)...executed. + +LaTeX Font Info: Trying to load font information for T1+Montserrat-TLF on in +put line 37. + +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/latex/montserrat\t1mont +serrat-tlf.fd +File: T1Montserrat-TLF.fd 2019/11/07 (autoinst) Font definitions for T1/Montser +rat-TLF. +) +LaTeX Font Info: Font shape `T1/Montserrat-TLF/regular/n' will be +(Font) scaled to size 12.0pt on input line 37. + (resume.aux) +\openout1 = `resume.aux'. + +LaTeX Font Info: Checking defaults for OML/cmm/m/it on input line 37. +LaTeX Font Info: ... okay on input line 37. +LaTeX Font Info: Checking defaults for OMS/cmsy/m/n on input line 37. +LaTeX Font Info: ... okay on input line 37. +LaTeX Font Info: Checking defaults for OT1/cmr/m/n on input line 37. +LaTeX Font Info: ... okay on input line 37. +LaTeX Font Info: Checking defaults for T1/cmr/m/n on input line 37. +LaTeX Font Info: ... okay on input line 37. +LaTeX Font Info: Checking defaults for TS1/cmr/m/n on input line 37. +LaTeX Font Info: ... okay on input line 37. +LaTeX Font Info: Checking defaults for OMX/cmex/m/n on input line 37. +LaTeX Font Info: ... okay on input line 37. +LaTeX Font Info: Checking defaults for U/cmr/m/n on input line 37. +LaTeX Font Info: ... okay on input line 37. +LaTeX Font Info: Checking defaults for PD1/pdf/m/n on input line 37. +LaTeX Font Info: ... okay on input line 37. +LaTeX Font Info: Checking defaults for PU/pdf/m/n on input line 37. +LaTeX Font Info: ... okay on input line 37. +LaTeX Font Info: Checking defaults for LY1/ptm/m/n on input line 37. +LaTeX Font Info: Trying to load font information for LY1+ptm on input line 3 +7. + +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/latex/ly1\ly1ptm.fd +File: ly1ptm.fd 2001/02/01 font definitions for LY1/ptm using Berry names. +) +LaTeX Font Info: ... okay on input line 37. +LaTeX Info: Redefining \degres on input line 37. +LaTeX Info: Redefining \up on input line 37. + +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/latex/translations/dict +s\translations-basic-dictionary-french.trsl +File: translations-basic-dictionary-french.trsl (french translation file `trans +lations-basic-dictionary') +) +Package translations Info: loading dictionary `translations-basic-dictionary' f +or `french'. on input line 37. + +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/context/base/mkii\supp- +pdf.mkii +[Loading MPS to PDF converter (version 2006.09.02).] +\scratchcounter=\count363 +\scratchdimen=\dimen317 +\scratchbox=\box84 +\nofMPsegments=\count364 +\nofMParguments=\count365 +\everyMPshowfont=\toks45 +\MPscratchCnt=\count366 +\MPscratchDim=\dimen318 +\MPnumerator=\count367 +\makeMPintoPDFobject=\count368 +\everyMPtoPDFconversion=\toks46 +) +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/latex/epstopdf-pkg\epst +opdf-base.sty +Package: epstopdf-base 2020-01-24 v2.11 Base part for package epstopdf +Package epstopdf-base Info: Redefining graphics rule for `.eps' on input line 4 +85. + +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/latex/00miktex\epstopdf +-sys.cfg +File: epstopdf-sys.cfg 2021/03/18 v2.0 Configuration of epstopdf for MiKTeX +)) +Package caption Info: Begin \AtBeginDocument code. +Package caption Info: hyperref package is loaded. +Package caption Info: End \AtBeginDocument code. + +*geometry* driver: auto-detecting +*geometry* detected driver: pdftex +*geometry* verbose mode - [ preamble ] result: +* driver: pdftex +* paper: <default> +* layout: <same size as paper> +* layoutoffset:(h,v)=(0.0pt,0.0pt) +* modes: +* h-part:(L,W,R)=(71.13188pt, 469.47049pt, 56.9055pt) +* v-part:(T,H,B)=(85.35826pt, 660.10394pt, 99.58464pt) +* \paperwidth=597.50787pt +* \paperheight=845.04684pt +* \textwidth=469.47049pt +* \textheight=660.10394pt +* \oddsidemargin=-1.1381pt +* \evensidemargin=-1.1381pt +* \topmargin=-23.91173pt +* \headheight=12.0pt +* \headsep=25.0pt +* \topskip=12.0pt +* \footskip=30.0pt +* \marginparwidth=35.0pt +* \marginparsep=10.0pt +* \columnsep=10.0pt +* \skip\footins=10.8pt plus 4.0pt minus 2.0pt +* \hoffset=0.0pt +* \voffset=0.0pt +* \mag=1000 +* \@twocolumnfalse +* \@twosidefalse +* \@mparswitchfalse +* \@reversemarginfalse +* (1in=72.27pt=25.4mm, 1cm=28.453pt) + +Package hyperref Info: Link coloring ON on input line 37. + +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/latex/hyperref\nameref. +sty +Package: nameref 2021-04-02 v2.47 Cross-referencing by name of section + +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/latex/refcount\refcount +.sty +Package: refcount 2019/12/15 v3.6 Data extraction from label references (HO) +) +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/generic/gettitlestring\ +gettitlestring.sty +Package: gettitlestring 2019/12/15 v1.6 Cleanup title references (HO) +) +\c@section@level=\count369 +) +LaTeX Info: Redefining \ref on input line 37. +LaTeX Info: Redefining \pageref on input line 37. +LaTeX Info: Redefining \nameref on input line 37. + (resume.out) (resume.out) +\@outlinefile=\write6 +\openout6 = `resume.out'. + +\c@mv@tabular=\count370 +\c@mv@boldtabular=\count371 +Package scrlayer Info: Setting magic \footheight to \baselineskip while +(scrlayer) \begin{document} on input line 37. + + +Package scrlayer-scrpage Warning: Very small head height detected! +(scrlayer-scrpage) Using scrlayer-scrpage the head height +(scrlayer-scrpage) should be at least \baselineskip, which is +(scrlayer-scrpage) 14.5pt currently. +(scrlayer-scrpage) But head height is currently 12.0pt only. +(scrlayer-scrpage) You may use +(scrlayer-scrpage) geometry option `head=14.5pt' +(scrlayer-scrpage) \relax to avoid this warning. + +*geometry* verbose mode - [ newgeometry ] result: +* driver: pdftex +* paper: <default> +* layout: <same size as paper> +* layoutoffset:(h,v)=(0.0pt,0.0pt) +* modes: +* h-part:(L,W,R)=(71.13188pt, 469.47049pt, 56.9055pt) +* v-part:(T,H,B)=(85.35826pt, 717.00946pt, 42.67912pt) +* \paperwidth=597.50787pt +* \paperheight=845.04684pt +* \textwidth=469.47049pt +* \textheight=717.00946pt +* \oddsidemargin=-1.1381pt +* \evensidemargin=-1.1381pt +* \topmargin=-23.91173pt +* \headheight=12.0pt +* \headsep=25.0pt +* \topskip=12.0pt +* \footskip=30.0pt +* \marginparwidth=35.0pt +* \marginparsep=10.0pt +* \columnsep=10.0pt +* \skip\footins=10.8pt plus 4.0pt minus 2.0pt +* \hoffset=0.0pt +* \voffset=0.0pt +* \mag=1000 +* \@twocolumnfalse +* \@twosidefalse +* \@mparswitchfalse +* \@reversemarginfalse +* (1in=72.27pt=25.4mm, 1cm=28.453pt) + +<logos/Logo_EPSA_2019.png, id=70, 523.2348pt x 139.11975pt> +File: logos/Logo_EPSA_2019.png Graphic file (type png) +<use logos/Logo_EPSA_2019.png> +Package pdftex.def Info: logos/Logo_EPSA_2019.png used on input line 39. +(pdftex.def) Requested size: 428.04933pt x 113.81102pt. +LaTeX Font Info: Font shape `T1/Montserrat-TLF/regular/n' will be +(Font) scaled to size 14.4pt on input line 39. +LaTeX Font Info: Font shape `T1/Montserrat-TLF/bold/n' will be +(Font) scaled to size 14.4pt on input line 39. +LaTeX Font Info: Font shape `T1/Montserrat-TLF/regular/n' will be +(Font) scaled to size 17.28pt on input line 39. +<logos/LogoCentrale.png, id=72, 1505.625pt x 1505.625pt> +File: logos/LogoCentrale.png Graphic file (type png) +<use logos/LogoCentrale.png> +Package pdftex.def Info: logos/LogoCentrale.png used on input line 39. +(pdftex.def) Requested size: 133.72786pt x 133.70844pt. + +Overfull \hbox (24.66261pt too wide) in paragraph at lines 39--39 +[]| [] [] + [] + +LaTeX Font Info: Font shape `T1/Montserrat-TLF/bold/n' will be +(Font) scaled to size 12.0pt on input line 39. +LaTeX Font Info: Font shape `T1/Montserrat-TLF/bold/n' will be +(Font) scaled to size 17.28pt on input line 39. + +Overfull \hbox (25.88527pt too wide) in paragraph at lines 39--39 +[]\T1/Montserrat-TLF/bold/n/17.28 Departement Di-rec-tion Re-cherche & In-no-va +-tion EPSA + [] + +LaTeX Font Info: Font shape `T1/Montserrat-TLF/regular/it' will be +(Font) scaled to size 14.4pt on input line 39. +LaTeX Font Info: Font shape `T1/Montserrat-TLF/bold/it' will be +(Font) scaled to size 14.4pt on input line 39. +LaTeX Font Info: Font shape `T1/Montserrat-TLF/regular/n' will be +(Font) scaled to size 10.0pt on input line 39. +LaTeX Font Info: Font shape `T1/Montserrat-TLF/bold/n' will be +(Font) scaled to size 10.0pt on input line 39. +Missing character: There is no , in font nullfont! +Missing character: There is no , in font nullfont! +<logos/texte centrale.png, id=73, 1504.8722pt x 301.125pt> +File: logos/texte centrale.png Graphic file (type png) +<use logos/texte centrale.png> +Package pdftex.def Info: logos/texte centrale.png used on input line 39. +(pdftex.def) Requested size: 227.62204pt x 45.54356pt. + +Overfull \hbox (56.9055pt too wide) has occurred while \output is active +[]|[][][] + [] + +[1 + + +{C:/Users/Utilisateur/AppData/Local/MiKTeX/fonts/map/pdftex/pdftex.map} <C:/AA_ +perso/localtex/tex/latex/EPSA-rap-template/logos/Logo_EPSA_2019.png> <C:/AA_per +so/localtex/tex/latex/EPSA-rap-template/logos/LogoCentrale.png> <C:/AA_perso/lo +caltex/tex/latex/EPSA-rap-template/logos/texte centrale.png>] (resume.toc +LaTeX Font Info: Trying to load font information for U+msa on input line 4. + +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/latex/amsfonts\umsa.fd +File: umsa.fd 2013/01/14 v3.01 AMS symbols A +) +LaTeX Font Info: Trying to load font information for U+msb on input line 4. +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/latex/amsfonts\umsb.fd +File: umsb.fd 2013/01/14 v3.01 AMS symbols B +)) +\tf@toc=\write7 +\openout7 = `resume.toc'. + +File: logos/LogoCentrale.png Graphic file (type png) +<use logos/LogoCentrale.png> +Package pdftex.def Info: logos/LogoCentrale.png used on input line 47. +(pdftex.def) Requested size: 17.06964pt x 17.07182pt. +<logos/Logo_EPSA_2019_r.png, id=101, 487.0998pt x 87.80804pt> +File: logos/Logo_EPSA_2019_r.png Graphic file (type png) +<use logos/Logo_EPSA_2019_r.png> +Package pdftex.def Info: logos/Logo_EPSA_2019_r.png used on input line 47. +(pdftex.def) Requested size: 94.69792pt x 17.07182pt. + +pdfTeX warning (ext4): destination with the same identifier (name{page.1}) has +been already used, duplicate ignored +<to be read again> + \relax +l.47 \newpage + [1 + + <C:/AA_perso/localtex/tex/latex/EPSA-rap-template/logos/Logo_EPSA_2019_r.png>] +<carte-pae-6766.jpg, id=107, 2256.16008pt x 1504.00551pt> +File: carte-pae-6766.jpg Graphic file (type jpg) +<use carte-pae-6766.jpg> +Package pdftex.def Info: carte-pae-6766.jpg used on input line 56. +(pdftex.def) Requested size: 469.47049pt x 312.95888pt. +File: logos/LogoCentrale.png Graphic file (type png) +<use logos/LogoCentrale.png> +Package pdftex.def Info: logos/LogoCentrale.png used on input line 82. +(pdftex.def) Requested size: 17.06964pt x 17.07182pt. +File: logos/Logo_EPSA_2019_r.png Graphic file (type png) +<use logos/Logo_EPSA_2019_r.png> +Package pdftex.def Info: logos/Logo_EPSA_2019_r.png used on input line 82. +(pdftex.def) Requested size: 94.69792pt x 17.07182pt. + [2 <./carte-pae-6766.jpg>] +<carte-pae-6753.jpg, id=113, 1945.21689pt x 1296.91248pt> +File: carte-pae-6753.jpg Graphic file (type jpg) +<use carte-pae-6753.jpg> +Package pdftex.def Info: carte-pae-6753.jpg used on input line 95. +(pdftex.def) Requested size: 211.26028pt x 140.8402pt. +<carte-pae-6755.jpg, id=114, 1697.13037pt x 1131.42026pt> +File: carte-pae-6755.jpg Graphic file (type jpg) +<use carte-pae-6755.jpg> +Package pdftex.def Info: carte-pae-6755.jpg used on input line 96. +(pdftex.def) Requested size: 211.26028pt x 140.84021pt. +<Arduino Nano scheme.png, id=115, 688.5725pt x 529.98pt> +File: Arduino Nano scheme.png Graphic file (type png) +<use Arduino Nano scheme.png> +Package pdftex.def Info: Arduino Nano scheme.png used on input line 104. +(pdftex.def) Requested size: 187.78532pt x 144.53596pt. +LaTeX Font Info: Font shape `T1/Montserrat-TLF/regular/sc' will be +(Font) scaled to size 12.0pt on input line 105. +\openout4 = `resume.pyg'. + + (_minted-resume/default.pygstyle) +(_minted-resume/A27053242F9901AA52BB0C45E52D419D109BC8D619DBDEE45AC6AD3984E95C5 +5.pygtex +File: logos/LogoCentrale.png Graphic file (type png) +<use logos/LogoCentrale.png> +Package pdftex.def Info: logos/LogoCentrale.png used on input line 1. +(pdftex.def) Requested size: 17.06964pt x 17.07182pt. +File: logos/Logo_EPSA_2019_r.png Graphic file (type png) +<use logos/Logo_EPSA_2019_r.png> +Package pdftex.def Info: logos/Logo_EPSA_2019_r.png used on input line 1. +(pdftex.def) Requested size: 94.69792pt x 17.07182pt. + [3 <./carte-pae-6753.jpg> <./carte-pae-6755.jpg> <./Arduino Nano scheme.png>] +LaTeX Font Info: Trying to load font information for T1+cmtt on input line 1 +. + +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/latex/base\t1cmtt.fd +File: t1cmtt.fd 2019/12/16 v2.5j Standard LaTeX font definitions +) + +LaTeX Font Warning: Font shape `T1/cmtt/regular/n' undefined +(Font) using `T1/cmtt/m/n' instead on input line 1. + + +LaTeX Font Warning: Font shape `T1/cmtt/regular/it' undefined +(Font) using `T1/cmtt/regular/n' instead on input line 3. + +LaTeX Font Info: Font shape `T1/cmtt/bx/n' in size <12> not available +(Font) Font shape `T1/cmtt/m/n' tried instead on input line 5. +) +\openout4 = `resume.pyg'. + + +(_minted-resume/953A0B2C4B8DD42FC38318DE0A83EE11101492748D21B1CFCE480A8C1C03A2D +B.pygtex +File: logos/LogoCentrale.png Graphic file (type png) +<use logos/LogoCentrale.png> +Package pdftex.def Info: logos/LogoCentrale.png used on input line 1. +(pdftex.def) Requested size: 17.06964pt x 17.07182pt. +File: logos/Logo_EPSA_2019_r.png Graphic file (type png) +<use logos/Logo_EPSA_2019_r.png> +Package pdftex.def Info: logos/Logo_EPSA_2019_r.png used on input line 1. +(pdftex.def) Requested size: 94.69792pt x 17.07182pt. + [4] +File: logos/LogoCentrale.png Graphic file (type png) +<use logos/LogoCentrale.png> +Package pdftex.def Info: logos/LogoCentrale.png used on input line 44. +(pdftex.def) Requested size: 17.06964pt x 17.07182pt. +File: logos/Logo_EPSA_2019_r.png Graphic file (type png) +<use logos/Logo_EPSA_2019_r.png> +Package pdftex.def Info: logos/Logo_EPSA_2019_r.png used on input line 44. +(pdftex.def) Requested size: 94.69792pt x 17.07182pt. + [5]) +File: logos/LogoCentrale.png Graphic file (type png) +<use logos/LogoCentrale.png> +Package pdftex.def Info: logos/LogoCentrale.png used on input line 207. +(pdftex.def) Requested size: 17.06964pt x 17.07182pt. +File: logos/Logo_EPSA_2019_r.png Graphic file (type png) +<use logos/Logo_EPSA_2019_r.png> +Package pdftex.def Info: logos/Logo_EPSA_2019_r.png used on input line 207. +(pdftex.def) Requested size: 94.69792pt x 17.07182pt. + [6] +<carte-pae-6770.jpg, id=137, 1747.23354pt x 1164.82236pt> +File: carte-pae-6770.jpg Graphic file (type jpg) +<use carte-pae-6770.jpg> +Package pdftex.def Info: carte-pae-6770.jpg used on input line 218. +(pdftex.def) Requested size: 211.26028pt x 140.83907pt. +<carte-pae-6771.jpg, id=138, 1306.02214pt x 870.58022pt> +File: carte-pae-6771.jpg Graphic file (type jpg) +<use carte-pae-6771.jpg> +Package pdftex.def Info: carte-pae-6771.jpg used on input line 219. +(pdftex.def) Requested size: 211.26028pt x 140.82333pt. +<Wiring.png, id=140, 367.3725pt x 539.01375pt> +File: Wiring.png Graphic file (type png) +<use Wiring.png> +Package pdftex.def Info: Wiring.png used on input line 230. +(pdftex.def) Requested size: 187.78532pt x 275.52667pt. +\openout5 = `resume.pyg'. + + +(_minted-resume/D39AAC58234C1264F11CFBFA0DA2541F101492748D21B1CFCE480A8C1C03A2D +B.pygtex) +File: logos/LogoCentrale.png Graphic file (type png) +<use logos/LogoCentrale.png> +Package pdftex.def Info: logos/LogoCentrale.png used on input line 241. +(pdftex.def) Requested size: 17.06964pt x 17.07182pt. +File: logos/Logo_EPSA_2019_r.png Graphic file (type png) +<use logos/Logo_EPSA_2019_r.png> +Package pdftex.def Info: logos/Logo_EPSA_2019_r.png used on input line 241. +(pdftex.def) Requested size: 94.69792pt x 17.07182pt. + [7 <./carte-pae-6770.jpg> <./carte-pae-6771.jpg>] +File: logos/LogoCentrale.png Graphic file (type png) +<use logos/LogoCentrale.png> +Package pdftex.def Info: logos/LogoCentrale.png used on input line 264. +(pdftex.def) Requested size: 17.06964pt x 17.07182pt. +File: logos/Logo_EPSA_2019_r.png Graphic file (type png) +<use logos/Logo_EPSA_2019_r.png> +Package pdftex.def Info: logos/Logo_EPSA_2019_r.png used on input line 264. +(pdftex.def) Requested size: 94.69792pt x 17.07182pt. + [8 <./Wiring.png>] + +LaTeX Font Warning: Font shape `U/eurosym/regular/n' undefined +(Font) using `U/eurosym/m/n' instead on input line 303. + +File: logos/LogoCentrale.png Graphic file (type png) +<use logos/LogoCentrale.png> +Package pdftex.def Info: logos/LogoCentrale.png used on input line 325. +(pdftex.def) Requested size: 17.06964pt x 17.07182pt. +File: logos/Logo_EPSA_2019_r.png Graphic file (type png) +<use logos/Logo_EPSA_2019_r.png> +Package pdftex.def Info: logos/Logo_EPSA_2019_r.png used on input line 325. +(pdftex.def) Requested size: 94.69792pt x 17.07182pt. +[9] +File: logos/LogoCentrale.png Graphic file (type png) +<use logos/LogoCentrale.png> +Package pdftex.def Info: logos/LogoCentrale.png used on input line 341. +(pdftex.def) Requested size: 17.06964pt x 17.07182pt. +File: logos/Logo_EPSA_2019_r.png Graphic file (type png) +<use logos/Logo_EPSA_2019_r.png> +Package pdftex.def Info: logos/Logo_EPSA_2019_r.png used on input line 341. +(pdftex.def) Requested size: 94.69792pt x 17.07182pt. + [10] +\openout4 = `resume.pyg'. + + +(_minted-resume/8738AEBF99E5B84BD07FB03F4080BAFE101492748D21B1CFCE480A8C1C03A2D +B.pygtex +LaTeX Font Info: Trying to load font information for TS1+cmtt on input line +12. + +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/latex/base\ts1cmtt.fd +File: ts1cmtt.fd 2019/12/16 v2.5j Standard LaTeX font definitions +) + +LaTeX Font Warning: Font shape `TS1/cmtt/regular/it' undefined +(Font) using `TS1/cmtt/m/n' instead +(Font) for symbol `textquotesingle' on input line 12. + +File: logos/LogoCentrale.png Graphic file (type png) +<use logos/LogoCentrale.png> +Package pdftex.def Info: logos/LogoCentrale.png used on input line 45. +(pdftex.def) Requested size: 17.06964pt x 17.07182pt. +File: logos/Logo_EPSA_2019_r.png Graphic file (type png) +<use logos/Logo_EPSA_2019_r.png> +Package pdftex.def Info: logos/Logo_EPSA_2019_r.png used on input line 45. +(pdftex.def) Requested size: 94.69792pt x 17.07182pt. +[11] + +LaTeX Font Warning: Font shape `TS1/cmtt/regular/n' undefined +(Font) using `TS1/cmtt/m/n' instead +(Font) for symbol `textquotesingle' on input line 55. + +File: logos/LogoCentrale.png Graphic file (type png) +<use logos/LogoCentrale.png> +Package pdftex.def Info: logos/LogoCentrale.png used on input line 90. +(pdftex.def) Requested size: 17.06964pt x 17.07182pt. +File: logos/Logo_EPSA_2019_r.png Graphic file (type png) +<use logos/Logo_EPSA_2019_r.png> +Package pdftex.def Info: logos/Logo_EPSA_2019_r.png used on input line 90. +(pdftex.def) Requested size: 94.69792pt x 17.07182pt. +[12] +File: logos/LogoCentrale.png Graphic file (type png) +<use logos/LogoCentrale.png> +Package pdftex.def Info: logos/LogoCentrale.png used on input line 135. +(pdftex.def) Requested size: 17.06964pt x 17.07182pt. +File: logos/Logo_EPSA_2019_r.png Graphic file (type png) +<use logos/Logo_EPSA_2019_r.png> +Package pdftex.def Info: logos/Logo_EPSA_2019_r.png used on input line 135. +(pdftex.def) Requested size: 94.69792pt x 17.07182pt. + [13]) +File: logos/LogoCentrale.png Graphic file (type png) +<use logos/LogoCentrale.png> +Package pdftex.def Info: logos/LogoCentrale.png used on input line 505. +(pdftex.def) Requested size: 17.06964pt x 17.07182pt. +File: logos/Logo_EPSA_2019_r.png Graphic file (type png) +<use logos/Logo_EPSA_2019_r.png> +Package pdftex.def Info: logos/Logo_EPSA_2019_r.png used on input line 505. +(pdftex.def) Requested size: 94.69792pt x 17.07182pt. + [14] (resume.aux) + +LaTeX Font Warning: Some font shapes were not available, defaults substituted. + +Package rerunfilecheck Info: File `resume.out' has not changed. +(rerunfilecheck) Checksum: D2985B5527FA6026562219506CB0B9D1;2283. +runsystem(del resume.pyg)...executed. + + ) +Here is how much of TeX's memory you used: + 35387 strings out of 478582 + 752155 string characters out of 2841512 + 1052675 words of memory out of 3000000 + 52947 multiletter control sequences out of 15000+600000 + 640277 words of font info for 71 fonts, out of 8000000 for 9000 + 1141 hyphenation exceptions out of 8191 + 138i,19n,134p,533b,1227s stack positions out of 10000i,1000n,20000p,200000b,80000s + <C:\Users\Utilisateur\AppData\Local\MiKTeX\fonts/pk/ljfour/jknappen/ec/dpi60 +0\tctt1200.pk> <C:\Users\Utilisateur\AppData\Local\MiKTeX\fonts/pk/ljfour/jknap +pen/ec/dpi600\ectt1200.pk>{C:/Users/Utilisateur/AppData/Local/Programs/MiKTeX/f +onts/enc/dvips/montserrat/zmo_poz7al.enc}{C:/Users/Utilisateur/AppData/Local/Pr +ograms/MiKTeX/fonts/enc/dvips/montserrat/zmo_bapnwu.enc}<C:/Users/Utilisateur/A +ppData/Local/Programs/MiKTeX/fonts/type1/public/montserrat/Montserrat-Bold.pfb> +<C:/Users/Utilisateur/AppData/Local/Programs/MiKTeX/fonts/type1/public/montserr +at/Montserrat-BoldItalic.pfb><C:/Users/Utilisateur/AppData/Local/Programs/MiKTe +X/fonts/type1/public/montserrat/Montserrat-Regular.pfb><C:/Users/Utilisateur/Ap +pData/Local/Programs/MiKTeX/fonts/type1/public/amsfonts/cm/cmmi12.pfb><C:/Users +/Utilisateur/AppData/Local/Programs/MiKTeX/fonts/type1/public/amsfonts/cm/cmr12 +.pfb><C:/Users/Utilisateur/AppData/Local/Programs/MiKTeX/fonts/type1/public/eur +osym/feymr10.pfb><C:/Users/Utilisateur/AppData/Local/Programs/MiKTeX/fonts/type +1/public/amsfonts/symbols/msam10.pfb> +Output written on resume.pdf (15 pages, 72981460 bytes). +PDF statistics: + 313 PDF objects out of 1000 (max. 8388607) + 34 named destinations out of 1000 (max. 500000) + 196 words of extra memory for PDF output out of 10000 (max. 10000000) + diff --git a/Documentation/Pre-projet/Resume/resume.out b/Documentation/Pre-projet/Resume/resume.out new file mode 100644 index 0000000000000000000000000000000000000000..8eeaab4306aee3f35662f78d644891779d92ae02 --- /dev/null +++ b/Documentation/Pre-projet/Resume/resume.out @@ -0,0 +1,16 @@ +\BOOKMARK [1][-]{section.1}{\376\377\000I\000n\000t\000r\000o\000d\000u\000c\000t\000i\000o\000n}{}% 1 +\BOOKMARK [1][-]{section.2}{\376\377\000V\000o\000i\000t\000u\000r\000e\000\040\000R\000C}{}% 2 +\BOOKMARK [2][-]{subsection.2.1}{\376\377\000F\000o\000n\000c\000t\000i\000o\000n\000n\000e\000m\000e\000n\000t\000\040\000d\000e\000\040\000l\000a\000\040\000v\000o\000i\000t\000u\000r\000e}{section.2}% 3 +\BOOKMARK [2][-]{subsection.2.2}{\376\377\000M\000o\000n\000t\000a\000g\000e\000\040\000\351\000l\000e\000c\000t\000r\000i\000q\000u\000e}{section.2}% 4 +\BOOKMARK [2][-]{subsection.2.3}{\376\377\000C\000o\000d\000e\000s\000\040\000d\000e\000\040\000t\000e\000s\000t}{section.2}% 5 +\BOOKMARK [3][-]{subsubsection.2.3.1}{\376\377\000T\000e\000s\000t\000\040\000P\000u\000i\000s\000s\000a\000n\000c\000e}{subsection.2.3}% 6 +\BOOKMARK [3][-]{subsubsection.2.3.2}{\376\377\000T\000e\000s\000t\000\040\000d\000i\000r\000e\000c\000t\000i\000o\000n}{subsection.2.3}% 7 +\BOOKMARK [1][-]{section.3}{\376\377\000D\000o\000n\000g\000l\000e\000\040\000d\000e\000\040\000c\000o\000n\000t\000r\000\364\000l\000e}{}% 8 +\BOOKMARK [2][-]{subsection.3.1}{\376\377\000C\000o\000n\000s\000t\000r\000u\000c\000t\000i\000o\000n}{section.3}% 9 +\BOOKMARK [2][-]{subsection.3.2}{\376\377\000S\000c\000r\000i\000p\000t\000\040\000d\000e\000\040\000c\000o\000n\000t\000r\000\364\000l\000e}{section.3}% 10 +\BOOKMARK [1][-]{section.4}{\376\377\000S\000o\000l\000u\000t\000i\000o\000n\000\040\000c\000a\000m\000\351\000r\000a}{}% 11 +\BOOKMARK [2][-]{subsection.4.1}{\376\377\000D\000e\000s\000c\000r\000i\000p\000t\000i\000o\000n\000\040\000d\000e\000s\000\040\000s\000o\000l\000u\000t\000i\000o\000n\000s}{section.4}% 12 +\BOOKMARK [2][-]{subsection.4.2}{\376\377\000I\000n\000t\000e\000l\000l\000i\000g\000e\000n\000c\000e\000\040\000e\000m\000b\000a\000r\000q\000u\000\351}{section.4}% 13 +\BOOKMARK [2][-]{subsection.4.3}{\376\377\000I\000n\000t\000e\000l\000l\000i\000g\000e\000n\000c\000e\000\040\000d\000\351\000p\000o\000r\000t\000\351}{section.4}% 14 +\BOOKMARK [1][-]{section.5}{\376\377\000A\000n\000n\000e\000x\000e}{}% 15 +\BOOKMARK [2][-]{subsection.5.1}{\376\377\000C\000o\000d\000e\000\040\000d\000e\000\040\000t\000e\000s\000t\000\040\000n\000r\000f\0002\0004\000l\0000\0001\000+}{section.5}% 16 diff --git a/Documentation/Pre-projet/Resume/resume.pdf b/Documentation/Pre-projet/Resume/resume.pdf new file mode 100644 index 0000000000000000000000000000000000000000..59273d6157d4f2770ebd984dc9c692dbbd7089b3 Binary files /dev/null and b/Documentation/Pre-projet/Resume/resume.pdf differ diff --git a/Documentation/Pre-projet/Resume/resume.synctex.gz b/Documentation/Pre-projet/Resume/resume.synctex.gz new file mode 100644 index 0000000000000000000000000000000000000000..b6b4b3d88548ce6b1fffcc0a39ca2942b9d051b8 Binary files /dev/null and b/Documentation/Pre-projet/Resume/resume.synctex.gz differ diff --git a/Documentation/Pre-projet/Resume/resume.tex b/Documentation/Pre-projet/Resume/resume.tex new file mode 100644 index 0000000000000000000000000000000000000000..3157cfd5c8c5cd960120b600d554c39659aff831 --- /dev/null +++ b/Documentation/Pre-projet/Resume/resume.tex @@ -0,0 +1,505 @@ +\documentclass{EPSA-rap-template} + +\usepackage{eurosym} +\usepackage{amssymb} +\usepackage{minted} + +\type{Rapport de travaux} + +\titresize{\large} % ne pas hésiter a changer la taille : +%\normalsize +%\large +%\Large +%\LARGE +%\huge +%\Huge +%\HUGE + +\titre{Travail Préliminaire Démonstrateur AutoDrive V1.0} + +\titresh{ Travail Préliminaire AutoDrive} + +\departement{Direction Recherche \& Innovation EPSA} + +\departementsh{ R\& I} + +\auteurs{Eymeric \textbf{Chauchat}} + +\version{V1.0} + +\versionnement{ +\ver{V1.1}{4 Septembre 2022}{ ECT }{Changement de titre.}{2} +\ver{V1.0}{27 aout 2022}{ ECT }{Rédaction initiale.}{1} +} + +\setuppack + +\begin{document} + +\fairepagedegarde +\newpage +\tableofcontents + +\section{Introduction} + +Ce document a pour but de présenter tout le travail préliminaire qui a été fait pour pouvoir lancer le projet satellite epsa sur la conduite autonome. Il rend compte de la remise en l'état du véhicule ciblé pour le projet et du développement de cartes de contrôle. + +\newpage + +\section{Voiture RC} + +Cette partie va présenter la voiture radio commandé qui va être utilisé pour le projet de Pae cette année et la manière dont elle a été préparé. Pour permettre un contrôle par un ordinateur ou plus largement par n'importe quel type de microprocesseur ou processeur, nous avons remplacé la carte de réception par une arduino allié d'une nrf24l01 et de quelques composants annexes. + +\bigskip +{ +\centering +\includegraphics[width=\textwidth]{carte-pae-6766.jpg} +\par +} + +\subsection{Fonctionnement de la voiture} + +La voiture possède deux systèmes principaux, la direction et la propulsion. La direction est composée d'une nappe de 6 câbles : + +\begin{itemize} + +\item Noir : moteur - +\item Orange : moteur + +\item Vert pomme : Potentiomètre + +\item Blanc : Potentiomètre signal +\item Vert : Potentiomètre - +\item Bleu : isolation unused + +\end{itemize} + +à savoir que moteur - et moteur + sont contrôlé grâce à l'intermédiaire d'un pont en H sur la nappe. Le contrôle de la partie direction se fait simplement à partir de la donnée en angle du potentiomètre et de la sortie moteur. + +le deuxième système, la propulsion est composé de 4 câbles : + +\begin{itemize} +\item Blanc : Ground +\item Jaune : +8 V continu +\item Noir : première entrée pont en H +\item Rouge : deuxième entrée pont en H +\end{itemize} + +Le contrôle de la propulsion se fait au travers du câble Rouge et Noir. Pour avancer il faut mettre un signal sur le câble noir et pour reculer il faut mettre un signal sur le câble rouge et le câble noir. + +\subsection{Montage électrique} + +la nrf24l01 est montée de manière analogue au dongle usb sur l'arduino de la voiture (Figure \ref{fig:wiringcar}). Cependant nous avons aussi besoin de connection avec la distribution en puissance de la voiture. +\bigskip + +{ +\centering +\includegraphics[width=0.45\textwidth]{carte-pae-6753.jpg} +\includegraphics[width=0.45\textwidth]{carte-pae-6755.jpg} +\par +} + +On peut remarquer l'ajout d'un pont en H au dessus de l'arduino qui va nous permettre de contrôler le moteur de direction. + +\begin{figure}[hbt!] +\centering +\includegraphics[width=0.4\textwidth]{Arduino Nano scheme.png} +\caption{Câblage de l'arduino nano} +\label{fig:wiringcar} +\end{figure} + +\subsection{Codes de test} + +Pour tester les différentes fonctions de la carte de contrôle, nous avons élaboré 3 codes. + +\subsubsection{Test Puissance} + +Un premier code a été écrit pour tester la communication avec le pont en H principal de la voiture. + +\begin{minted}{Arduino} + +#define PontHRouge 10 +#define PontHNoir 9 +int val = 0; + +void setup() { + + pinMode(PontHRouge,OUTPUT); + pinMode(PontHNoir,OUTPUT); + Serial.begin(115200); + + while (!Serial) { + // some boards need to wait to ensure access to serial over USB + } + + Serial.println("Test des commandes PWM voiture"); + +} + +void loop() { + + if(val >= 0 ) + { + analogWrite(PontHRouge,abs(val)); + analogWrite(PontHNoir,abs(val)); + } + if(val < 0) + { + analogWrite(PontHNoir,abs(val)); + } + + if(Serial.available()){ + + val = Serial.readString().toInt(); + Serial.println(val); + } +} + +\end{minted} + +\subsubsection{Test direction} + +De manière analogue, nous avons développé un script permettant de tester que la direction de la voiture marchait correctement. + +\begin{minted}{arduino} +#define DirPin A6 +// Droite 176 Gauche 850 +#define PontG 5 +#define PontD 6 + +int val = 0; +int aim = 500; + +void setup() { + Serial.begin(9600); +} + +void loop() { + + + if(Serial.available()){ + aim = Serial.readString().toInt(); + Serial.println(aim); + } + + if(val < aim-50) + { + analogWrite(PontG,100); + analogWrite(PontD,0); + } + + else if(val > aim+50) + { + analogWrite(PontD,100); + analogWrite(PontG,0); + } + else + { + analogWrite(PontD,0); + analogWrite(PontG,0); + } + + + val= analogRead(DirPin); + Serial.println(val); + +} +\end{minted} + +\newpage + +\section{Dongle de contrôle} +Cette partie va présenter la réalisation du Dongle de contrôle de la voiture RC et du script permettant son arrêt d'urgence et sa commande si l'on choisit une intelligence déporté. + +Le Dongle est composé d'une arduino Nano, d'une carte nrf24l01 et d'un bouton poussoir. Il va permettre de contrôler en temps réel la voiture et de récupérer des informations des différents capteurs : + +\bigskip + +{ +\centering +\includegraphics[width=0.45\textwidth]{carte-pae-6770.jpg} +\includegraphics[width=0.45\textwidth]{carte-pae-6771.jpg} +\par +} + +\subsection{Construction} + + +Le câblage suit celui d'une carte nrf24l01 basique (Figure \ref{fig:wiringdongle}). La carte se branche ensuite directement à l'ordinateur qui va la contrôler soit directement grâce à l'invité port série d'arduino ou au travers d'un script python ou directement si on rajoute un contrôleur sur les ports vacants de la carte arduino. + +\begin{figure}[hbt!] +\centering +\includegraphics[width=0.4\textwidth]{Wiring.png} +\caption{Câblage possible d'une nrf24l01 avec une arduino nano} +\label{fig:wiringdongle} +\end{figure} + +\subsection{Script de contrôle} + +Pour tester le branchement de la carte nous avons pour l'instant uniquement télé-verser un code permettant de tester que la nrf24l01+ est bien branchée. (Section \ref{sec:nrf24l01}) à savoir que nous avons initialiser les pins radio de la manière suivantes : \mint{arduino}|RF24 radio(10, 9); | \noindent 10 pour le pin CE et 9 pour le pin CSN. + + + +\newpage + +\section{Solution caméra} + +En plus du contrôle à distance de la voiture (qui est obligatoire pour permettre un arrêt d'urgence), le projet nécessite que l'on traite des données vidéos pour permettre la conduite autonome de la voiture. En ce sens plusieurs solutions s'offrent à nous pour permettre l'acquisition et le traitement de ces données. (ce travail préliminaire a été fait pour soulager les membres du projet qui vont devoir trancher la solution rapidement pour ne pas s'éterniser sur le choix de concept ) + +\subsection{Description des solutions} + +L'intelligence de la voiture peut se trouver à deux endroits : + +\begin{itemize} +\item A l'intérieur de la voiture télécommandée +\item sur l'ordinateur qui possède le dongle d'arret d'urgence / commande +\end{itemize} + +Ces deux possibilités ouvrent un grand champ d'alternative pour arriver à faire l'acquisition vidéo et le traitement / commande. + +\subsection{Intelligence embarqué} + +Dans le cas d'une intelligence embarquée, l'acquisition vidéo se fera directement grâce à des caméras branchées sur la carte de contrôle. + +La question est alors : quelle doit être la plateforme qui va nous permettre de faire les calculs et en déduire la commande de notre voiture ? + +La plateforme choisit doit être robuste (résistante au probable choc sur le corps de la voiture), doit permettre une liaison avec l'arduino de contrôle de la voiture et doit avoir une assez grande puissance de calcul pour traiter les images (qui peuvent provenir de différentes caméras HD). + +A savoir que toute les plateformes se rapprochant de Arduino, Rasberry Pi, ou tournant sur ATmega328P, PIC ou autre microprocesseur cadencé en dessous du gigahertz ne pourra pas convenir dû au manque de puissance de calcul que nécessite le traitement vidéo. + +Voici alors une première liste de plateforme : + + +\begin{itemize} + +\item Téléphone Android haut de gamme : + +\textbf{Avantages : } +\begin{itemize} +\item disponible auprès des membres du Pae +\item Aucun coût +\item Pas de consommation +\item Puissance suffisante +\item taille petite +\end{itemize} + +\textbf{Inconvénients : } +\begin{itemize} +\item Obligation de développement en .apk +\item Puissance de calcul limité +\item difficulté pour gérer les différentes entrée vidéo +\end{itemize} + +\item \href{https://www.nvidia.com/fr-be/autonomous-machines/jetson-store/}{Nvidia Jetson} + +\textbf{Avantages : } +\begin{itemize} +\item très forte puissance de calcul +\item basse consommation +\item Carte qui pourrait être intégré sur le véhicule à grande échelle +\item architecture faite pour le calcul d'IA +\item Programmation en CUDA / C++ +\end{itemize} +\textbf{Inconvénients : } +\begin{itemize} +\item prix 109 \euro{} +\item besoin de fournir une protection +\item Assez encombrant sur la voiture (103mm x 90.5mm x 34mm) +\end{itemize} + +\end{itemize} + +\subsection{Intelligence déporté} + +La deuxième solution est donc de déporter le calcul et la commande à l'extérieur de la voiture sur un ordinateur distant. Il faut alors trouver un moyen de recevoir le flux vidéo de plusieurs caméras à distance. La réception doit être de bonne qualité et avec une faible latence ($\leqslant 500ms$). + +On ne peut donc pas utiliser de système analogique (beaucoup de bruit à cause de la nature analogique du transfert). Il faut alors trouver un système numérique peu onéreux ($\leqslant 200 $\euro{}) qui permettent le transfert. + +Voici la liste préliminaire des solutions : + +\begin{itemize} + +\item ESP32-CAM + +\textbf{Avantages : } + +\begin{itemize} +\item Système compact +\item Système autonome +\item Bon marché ($30$\euro{}) +\item faible latence ($\leqslant 100$ms) +\item Petit encombrement +\end{itemize} +\textbf{Inconvénients : } + +\begin{itemize} +\item Faible qualité vidéo (max 800x600 en 30 fps) +\item multiplication des émissions wifi (comment gérer la réception) +\end{itemize} + + +\end{itemize} + +\newpage + +\section{Annexe} + +\subsection{Code de test nrf24l01+} +\label{sec:nrf24l01} +\begin{minted}{arduino} +/* + * See documentation at https://nRF24.github.io/RF24 + * See License information at root directory of this library + * Author: Brendan Doherty (2bndy5) + */ + +/** + * A simple example of sending data from 1 nRF24L01 transceiver to another. + * + * This example was written to be used on 2 devices acting as "nodes". + * Use the Serial Monitor to change each node's behavior. + */ +#include <SPI.h> +#include "printf.h" +#include "RF24.h" + +// instantiate an object for the nRF24L01 transceiver +RF24 radio(10, 9); // using pin 10 for the CE pin, and pin 9 for the CSN pin + +// Let these addresses be used for the pair +uint8_t address[][6] = { "1Node", "2Node" }; +// It is very helpful to think of an address as a path instead of as +// an identifying device destination + +// to use different addresses on a pair of radios, we need a variable to +// uniquely identify which address this radio will use to transmit +bool radioNumber = 1; // 0 uses address[0] to transmit, 1 uses address[1] to transmit + +// Used to control whether this node is sending or receiving +bool role = false; // true = TX role, false = RX role + +// For this example, we'll be using a payload containing +// a single float number that will be incremented +// on every successful transmission +float payload = 0.0; + +void setup() { + + Serial.begin(115200); + while (!Serial) { + // some boards need to wait to ensure access to serial over USB + } + + // initialize the transceiver on the SPI bus + if (!radio.begin()) { + Serial.println(F("radio hardware is not responding!!")); + while (1) {} // hold in infinite loop + } + + // print example's introductory prompt + Serial.println(F("RF24/examples/GettingStarted")); + + // To set the radioNumber via the Serial monitor on startup + Serial.println(F("Which radio is this? Enter '0' or '1'. Defaults to '0'")); + while (!Serial.available()) { + // wait for user input + } + char input = Serial.parseInt(); + radioNumber = input == 1; + Serial.print(F("radioNumber = ")); + Serial.println((int)radioNumber); + + // role variable is hardcoded to RX behavior, inform the user of this + Serial.println(F("*** PRESS 'T' to begin transmitting to the other node")); + + // Set the PA Level low to try preventing power supply related problems + // because these examples are likely run with nodes in close proximity to + // each other. + radio.setPALevel(RF24_PA_LOW); // RF24_PA_MAX is default. + + // save on transmission time by setting the radio to only transmit the + // number of bytes we need to transmit a float + radio.setPayloadSize(sizeof(payload)); // float datatype occupies 4 bytes + + // set the TX address of the RX node into the TX pipe + radio.openWritingPipe(address[radioNumber]); // always uses pipe 0 + + // set the RX address of the TX node into a RX pipe + radio.openReadingPipe(1, address[!radioNumber]); // using pipe 1 + + // additional setup specific to the node's role + if (role) { + radio.stopListening(); // put radio in TX mode + } else { + radio.startListening(); // put radio in RX mode + } + + // For debugging info + // printf_begin(); // needed only once for printing details + // radio.printDetails(); // (smaller) function that prints raw register values + // radio.printPrettyDetails(); // (larger) function that prints human readable data + +} // setup + +void loop() { + + if (role) { + // This device is a TX node + + unsigned long start_timer = micros(); // start the timer + bool report = radio.write(&payload, sizeof(float)); // transmit & save the report + unsigned long end_timer = micros(); // end the timer + + if (report) { + Serial.print(F("Transmission successful! ")); // payload was delivered + Serial.print(F("Time to transmit = ")); + Serial.print(end_timer - start_timer); // print the timer result + Serial.print(F(" us. Sent: ")); + Serial.println(payload); // print payload sent + payload += 0.01; // increment float payload + } else { + Serial.println(F("Transmission failed or timed out")); // payload was not delivered + } + + // to make this example readable in the serial monitor + delay(1000); // slow transmissions down by 1 second + + } else { + // This device is a RX node + + uint8_t pipe; + if (radio.available(&pipe)) { // is there a payload? get the pipe number that recieved it + uint8_t bytes = radio.getPayloadSize(); // get the size of the payload + radio.read(&payload, bytes); // fetch payload from FIFO + Serial.print(F("Received ")); + Serial.print(bytes); // print the size of the payload + Serial.print(F(" bytes on pipe ")); + Serial.print(pipe); // print the pipe number + Serial.print(F(": ")); + Serial.println(payload); // print the payload's value + } + } // role + + if (Serial.available()) { + // change the role via the serial monitor + + char c = toupper(Serial.read()); + if (c == 'T' && !role) { + // Become the TX node + + role = true; + Serial.println(F("*** CHANGING TO TRANSMIT ROLE -- PRESS 'R' TO SWITCH BACK")); + radio.stopListening(); + + } else if (c == 'R' && role) { + // Become the RX node + + role = false; + Serial.println(F("*** CHANGING TO RECEIVE ROLE -- PRESS 'T' TO SWITCH BACK")); + radio.startListening(); + } + } + +} // loop +\end{minted} + + +\end{document} \ No newline at end of file diff --git a/Documentation/Pre-projet/Resume/resume.toc b/Documentation/Pre-projet/Resume/resume.toc new file mode 100644 index 0000000000000000000000000000000000000000..85eecfcbf923660d54b68883a55e475937b5819f --- /dev/null +++ b/Documentation/Pre-projet/Resume/resume.toc @@ -0,0 +1,17 @@ +\babel@toc {french}{}\relax +\contentsline {section}{\numberline {1}Introduction}{1}{section.1}% +\contentsline {section}{\numberline {2}Voiture RC}{2}{section.2}% +\contentsline {subsection}{\numberline {2.1}Fonctionnement de la voiture}{2}{subsection.2.1}% +\contentsline {subsection}{\numberline {2.2}Montage électrique}{3}{subsection.2.2}% +\contentsline {subsection}{\numberline {2.3}Codes de test}{3}{subsection.2.3}% +\contentsline {subsubsection}{\numberline {2.3.1}Test Puissance}{4}{subsubsection.2.3.1}% +\contentsline {subsubsection}{\numberline {2.3.2}Test direction}{5}{subsubsection.2.3.2}% +\contentsline {section}{\numberline {3}Dongle de contrôle}{7}{section.3}% +\contentsline {subsection}{\numberline {3.1}Construction}{7}{subsection.3.1}% +\contentsline {subsection}{\numberline {3.2}Script de contrôle}{7}{subsection.3.2}% +\contentsline {section}{\numberline {4}Solution caméra}{8}{section.4}% +\contentsline {subsection}{\numberline {4.1}Description des solutions}{8}{subsection.4.1}% +\contentsline {subsection}{\numberline {4.2}Intelligence embarqué}{8}{subsection.4.2}% +\contentsline {subsection}{\numberline {4.3}Intelligence déporté}{9}{subsection.4.3}% +\contentsline {section}{\numberline {5}Annexe}{11}{section.5}% +\contentsline {subsection}{\numberline {5.1}Code de test nrf24l01+}{11}{subsection.5.1}% diff --git "a/Documentation/Pre-projet/Solution cam\303\251ra/choix streaming camera.aux" "b/Documentation/Pre-projet/Solution cam\303\251ra/choix streaming camera.aux" new file mode 100644 index 0000000000000000000000000000000000000000..6c0ddb77aae342c1167b5b05f352df0f835109c4 --- /dev/null +++ "b/Documentation/Pre-projet/Solution cam\303\251ra/choix streaming camera.aux" @@ -0,0 +1,32 @@ +\relax +\providecommand\hyper@newdestlabel[2]{} +\providecommand\babel@aux[2]{} +\@nameuse{bbl@beforestart} +\catcode `:\active +\catcode `;\active +\catcode `!\active +\catcode `?\active +\providecommand\HyperFirstAtBeginDocument{\AtBeginDocument} +\HyperFirstAtBeginDocument{\ifx\hyper@anchor\@undefined +\global\let\oldcontentsline\contentsline +\gdef\contentsline#1#2#3#4{\oldcontentsline{#1}{#2}{#3}} +\global\let\oldnewlabel\newlabel +\gdef\newlabel#1#2{\newlabelxx{#1}#2} +\gdef\newlabelxx#1#2#3#4#5#6{\oldnewlabel{#1}{{#2}{#3}}} +\AtEndDocument{\ifx\hyper@anchor\@undefined +\let\contentsline\oldcontentsline +\let\newlabel\oldnewlabel +\fi} +\fi} +\global\let\hyper@last\relax +\gdef\HyperFirstAtBeginDocument#1{#1} +\providecommand\HyField@AuxAddToFields[1]{} +\providecommand\HyField@AuxAddToCoFields[2]{} +\pgfsyspdfmark {pgfid2}{0}{38412394} +\pgfsyspdfmark {pgfid3}{0}{37462122} +\babel@aux{french}{} +\@writefile{toc}{\contentsline {section}{\numberline {1}Introduction}{1}{section.1}\protected@file@percent } +\@writefile{toc}{\contentsline {section}{\numberline {2}Description des solutions}{1}{section.2}\protected@file@percent } +\@writefile{toc}{\contentsline {subsection}{\numberline {2.1}Intelligence embarqué}{1}{subsection.2.1}\protected@file@percent } +\@writefile{toc}{\contentsline {subsection}{\numberline {2.2}Intelligence déporté}{2}{subsection.2.2}\protected@file@percent } +\gdef \@abspage@last{3} diff --git "a/Documentation/Pre-projet/Solution cam\303\251ra/choix streaming camera.log" "b/Documentation/Pre-projet/Solution cam\303\251ra/choix streaming camera.log" new file mode 100644 index 0000000000000000000000000000000000000000..c467e4036056c5976bc1ee42c6d42bc8deb441e8 --- /dev/null +++ "b/Documentation/Pre-projet/Solution cam\303\251ra/choix streaming camera.log" @@ -0,0 +1,1409 @@ +This is pdfTeX, Version 3.141592653-2.6-1.40.24 (MiKTeX 22.3) (preloaded format=pdflatex 2022.8.25) 25 AUG 2022 20:45 +entering extended mode + \write18 enabled. + %&-line parsing enabled. +**"./choix streaming camera.tex" +(choix streaming camera.tex +LaTeX2e <2021-11-15> patch level 1 +L3 programming layer <2022-02-24> +(C:/AA_perso/localtex\tex/latex\EPSA-rap-template\EPSA-rap-template.cls +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/latex/base\article.cls +Document Class: article 2021/10/04 v1.4n Standard LaTeX document class +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/latex/base\size12.clo +File: size12.clo 2021/10/04 v1.4n Standard LaTeX file (size option) +) +\c@part=\count185 +\c@section=\count186 +\c@subsection=\count187 +\c@subsubsection=\count188 +\c@paragraph=\count189 +\c@subparagraph=\count190 +\c@figure=\count191 +\c@table=\count192 +\abovecaptionskip=\skip47 +\belowcaptionskip=\skip48 +\bibindent=\dimen138 +) +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/generic/babel\babel.sty +Package: babel 2022/02/26 3.73 The Babel package +\babel@savecnt=\count193 +\U@D=\dimen139 +\l@unhyphenated=\language79 + +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/generic/babel\txtbabel. +def) +\bbl@readstream=\read2 +\bbl@dirlevel=\count194 + +************************************* +* Local config file bblopts.cfg used +* + +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/latex/arabi\bblopts.cfg +File: bblopts.cfg 2005/09/08 v0.1 add Arabic and Farsi to "declared" options of + babel +) +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/generic/babel-french\fr +ench.ldf +Language: french 2022/04/18 v3.5n French support from the babel system +Package babel Info: Hyphen rules for 'acadian' set to \l@french +(babel) (\language22). Reported on input line 91. +Package babel Info: Hyphen rules for 'canadien' set to \l@french +(babel) (\language22). Reported on input line 92. +\FB@nonchar=\count195 +Package babel Info: Making : an active character on input line 430. +Package babel Info: Making ; an active character on input line 431. +Package babel Info: Making ! an active character on input line 432. +Package babel Info: Making ? an active character on input line 433. +\FBguill@level=\count196 +\FBold@everypar=\toks16 +\FB@Mht=\dimen140 +\mc@charclass=\count197 +\mc@charfam=\count198 +\mc@charslot=\count199 +\std@mcc=\count266 +\dec@mcc=\count267 +\listindentFB=\dimen141 +\descindentFB=\dimen142 +\labelindentFB=\dimen143 +\labelwidthFB=\dimen144 +\leftmarginFB=\dimen145 +\parindentFFN=\dimen146 +\FBfnindent=\dimen147 +)) +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/latex/carlisle\scalefnt +.sty) +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/latex/graphics\keyval.s +ty +Package: keyval 2014/10/28 v1.15 key=value parser (DPC) +\KV@toks@=\toks17 +) +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/latex/base\inputenc.sty +Package: inputenc 2021/02/14 v1.3d Input encoding file +\inpenc@prehook=\toks18 +\inpenc@posthook=\toks19 +) +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/latex/placeins\placeins +.sty +Package: placeins 2005/04/18 v 2.2 +) +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/latex/mathtools\mathtoo +ls.sty +Package: mathtools 2022/02/07 v1.28a mathematical typesetting tools + +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/latex/tools\calc.sty +Package: calc 2017/05/25 v4.3 Infix arithmetic (KKT,FJ) +\calc@Acount=\count268 +\calc@Bcount=\count269 +\calc@Adimen=\dimen148 +\calc@Bdimen=\dimen149 +\calc@Askip=\skip49 +\calc@Bskip=\skip50 +LaTeX Info: Redefining \setlength on input line 80. +LaTeX Info: Redefining \addtolength on input line 81. +\calc@Ccount=\count270 +\calc@Cskip=\skip51 +) +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/latex/mathtools\mhsetup +.sty +Package: mhsetup 2021/03/18 v1.4 programming setup (MH) +) +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/latex/amsmath\amsmath.s +ty +Package: amsmath 2021/10/15 v2.17l AMS math features +\@mathmargin=\skip52 + +For additional information on amsmath, use the `?' option. + +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/latex/amsmath\amstext.s +ty +Package: amstext 2021/08/26 v2.01 AMS text + +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/latex/amsmath\amsgen.st +y +File: amsgen.sty 1999/11/30 v2.0 generic functions +\@emptytoks=\toks20 +\ex@=\dimen150 +)) +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/latex/amsmath\amsbsy.st +y +Package: amsbsy 1999/11/29 v1.2d Bold Symbols +\pmbraise@=\dimen151 +) +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/latex/amsmath\amsopn.st +y +Package: amsopn 2021/08/26 v2.02 operator names +) +\inf@bad=\count271 +LaTeX Info: Redefining \frac on input line 234. +\uproot@=\count272 +\leftroot@=\count273 +LaTeX Info: Redefining \overline on input line 399. +\classnum@=\count274 +\DOTSCASE@=\count275 +LaTeX Info: Redefining \ldots on input line 496. +LaTeX Info: Redefining \dots on input line 499. +LaTeX Info: Redefining \cdots on input line 620. +\Mathstrutbox@=\box50 +\strutbox@=\box51 +\big@size=\dimen152 +LaTeX Font Info: Redeclaring font encoding OML on input line 743. +LaTeX Font Info: Redeclaring font encoding OMS on input line 744. +\macc@depth=\count276 +\c@MaxMatrixCols=\count277 +\dotsspace@=\muskip16 +\c@parentequation=\count278 +\dspbrk@lvl=\count279 +\tag@help=\toks21 +\row@=\count280 +\column@=\count281 +\maxfields@=\count282 +\andhelp@=\toks22 +\eqnshift@=\dimen153 +\alignsep@=\dimen154 +\tagshift@=\dimen155 +\tagwidth@=\dimen156 +\totwidth@=\dimen157 +\lineht@=\dimen158 +\@envbody=\toks23 +\multlinegap=\skip53 +\multlinetaggap=\skip54 +\mathdisplay@stack=\toks24 +LaTeX Info: Redefining \[ on input line 2938. +LaTeX Info: Redefining \] on input line 2939. +) +\g_MT_multlinerow_int=\count283 +\l_MT_multwidth_dim=\dimen159 +\origjot=\skip55 +\l_MT_shortvdotswithinadjustabove_dim=\dimen160 +\l_MT_shortvdotswithinadjustbelow_dim=\dimen161 +\l_MT_above_intertext_sep=\dimen162 +\l_MT_below_intertext_sep=\dimen163 +\l_MT_above_shortintertext_sep=\dimen164 +\l_MT_below_shortintertext_sep=\dimen165 +\xmathstrut@box=\box52 +\xmathstrut@dim=\dimen166 +) +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/latex/siunitx\siunitx.s +ty +Package: siunitx 2022-05-03 v3.1.1 A comprehensive (SI) units package +\l__siunitx_angle_tmp_dim=\dimen167 +\l__siunitx_angle_marker_box=\box53 +\l__siunitx_angle_unit_box=\box54 +\l__siunitx_compound_count_int=\count284 + +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/latex/translations\tran +slations.sty +Package: translations 2022/02/05 v1.12 internationalization of LaTeX2e packages + (CN) + +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/latex/etoolbox\etoolbox +.sty +Package: etoolbox 2020/10/05 v2.5k e-TeX tools for LaTeX (JAW) +\etb@tempcnta=\count285 +) +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/generic/pdftexcmds\pdft +excmds.sty +Package: pdftexcmds 2020-06-27 v0.33 Utility functions of pdfTeX for LuaTeX (HO +) + +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/generic/infwarerr\infwa +rerr.sty +Package: infwarerr 2019/12/03 v1.5 Providing info/warning/error messages (HO) +) +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/generic/iftex\iftex.sty +Package: iftex 2022/02/03 v1.0f TeX engine tests +) +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/generic/ltxcmds\ltxcmds +.sty +Package: ltxcmds 2020-05-10 v1.25 LaTeX kernel commands for general use (HO) +) +Package pdftexcmds Info: \pdf@primitive is available. +Package pdftexcmds Info: \pdf@ifprimitive is available. +Package pdftexcmds Info: \pdfdraftmode found. +)) +\l__siunitx_number_exponent_fixed_int=\count286 +\l__siunitx_number_min_decimal_int=\count287 +\l__siunitx_number_min_integer_int=\count288 +\l__siunitx_number_round_precision_int=\count289 +\l__siunitx_number_group_first_int=\count290 +\l__siunitx_number_group_size_int=\count291 +\l__siunitx_number_group_minimum_int=\count292 +\l__siunitx_table_tmp_box=\box55 +\l__siunitx_table_tmp_dim=\dimen168 +\l__siunitx_table_column_width_dim=\dimen169 +\l__siunitx_table_integer_box=\box56 +\l__siunitx_table_decimal_box=\box57 +\l__siunitx_table_before_box=\box58 +\l__siunitx_table_after_box=\box59 +\l__siunitx_table_before_dim=\dimen170 +\l__siunitx_table_carry_dim=\dimen171 +\l__siunitx_unit_tmp_int=\count293 +\l__siunitx_unit_position_int=\count294 +\l__siunitx_unit_total_int=\count295 + +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/latex/l3packages/l3keys +2e\l3keys2e.sty +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/latex/l3kernel\expl3.st +y +Package: expl3 2022-02-24 L3 programming layer (loader) + +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/latex/l3backend\l3backe +nd-pdftex.def +File: l3backend-pdftex.def 2022-02-07 L3 backend support: PDF output (pdfTeX) +\l__color_backend_stack_int=\count296 +\l__pdf_internal_box=\box60 +)) +Package: l3keys2e 2022-01-12 LaTeX2e option processing using LaTeX3 keys +) +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/latex/tools\array.sty +Package: array 2021/10/04 v2.5f Tabular extension package (FMi) +\col@sep=\dimen172 +\ar@mcellbox=\box61 +\extrarowheight=\dimen173 +\NC@list=\toks25 +\extratabsurround=\skip56 +\backup@length=\skip57 +\ar@cellbox=\box62 +)) (C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/latex/float\float.st +y +Package: float 2001/11/08 v1.3d Float enhancements (AL) +\c@float@type=\count297 +\float@exts=\toks26 +\float@box=\box63 +\@float@everytoks=\toks27 +\@floatcapt=\box64 +) +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/latex/graphics\graphicx +.sty +Package: graphicx 2021/09/16 v1.2d Enhanced LaTeX Graphics (DPC,SPQR) + +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/latex/graphics\graphics +.sty +Package: graphics 2021/03/04 v1.4d Standard LaTeX Graphics (DPC,SPQR) + +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/latex/graphics\trig.sty +Package: trig 2021/08/11 v1.11 sin cos tan (DPC) +) +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/latex/graphics-cfg\grap +hics.cfg +File: graphics.cfg 2016/06/04 v1.11 sample graphics configuration +) +Package graphics Info: Driver file: pdftex.def on input line 107. + +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/latex/graphics-def\pdft +ex.def +File: pdftex.def 2020/10/05 v1.2a Graphics/color driver for pdftex +)) +\Gin@req@height=\dimen174 +\Gin@req@width=\dimen175 +) +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/latex/caption\caption.s +ty +Package: caption 2022/03/01 v3.6b Customizing captions (AR) + +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/latex/caption\caption3. +sty +Package: caption3 2022/03/17 v2.3b caption3 kernel (AR) +\caption@tempdima=\dimen176 +\captionmargin=\dimen177 +\caption@leftmargin=\dimen178 +\caption@rightmargin=\dimen179 +\caption@width=\dimen180 +\caption@indent=\dimen181 +\caption@parindent=\dimen182 +\caption@hangindent=\dimen183 +Package caption Info: Standard document class detected. +Package caption Info: french babel package is loaded. +) +\c@caption@flags=\count298 +\c@continuedfloat=\count299 +Package caption Info: float package is loaded. +) +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/latex/caption\subcaptio +n.sty +Package: subcaption 2022/01/07 v1.5 Sub-captions (AR) +\c@subfigure=\count300 +\c@subtable=\count301 +) +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/latex/pgf/frontendlayer +\tikz.sty +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/latex/pgf/basiclayer\pg +f.sty +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/latex/pgf/utilities\pgf +rcs.sty +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/generic/pgf/utilities\p +gfutil-common.tex +\pgfutil@everybye=\toks28 +\pgfutil@tempdima=\dimen184 +\pgfutil@tempdimb=\dimen185 + +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/generic/pgf/utilities\p +gfutil-common-lists.tex)) +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/generic/pgf/utilities\p +gfutil-latex.def +\pgfutil@abb=\box65 +) +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/generic/pgf/utilities\p +gfrcs.code.tex +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/generic/pgf\pgf.revisio +n.tex) +Package: pgfrcs 2021/05/15 v3.1.9a (3.1.9a) +)) +Package: pgf 2021/05/15 v3.1.9a (3.1.9a) + +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/latex/pgf/basiclayer\pg +fcore.sty +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/latex/pgf/systemlayer\p +gfsys.sty +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/generic/pgf/systemlayer +\pgfsys.code.tex +Package: pgfsys 2021/05/15 v3.1.9a (3.1.9a) + +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/generic/pgf/utilities\p +gfkeys.code.tex +\pgfkeys@pathtoks=\toks29 +\pgfkeys@temptoks=\toks30 + +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/generic/pgf/utilities\p +gfkeysfiltered.code.tex +\pgfkeys@tmptoks=\toks31 +)) +\pgf@x=\dimen186 +\pgf@y=\dimen187 +\pgf@xa=\dimen188 +\pgf@ya=\dimen189 +\pgf@xb=\dimen190 +\pgf@yb=\dimen191 +\pgf@xc=\dimen192 +\pgf@yc=\dimen193 +\pgf@xd=\dimen194 +\pgf@yd=\dimen195 +\w@pgf@writea=\write3 +\r@pgf@reada=\read3 +\c@pgf@counta=\count302 +\c@pgf@countb=\count303 +\c@pgf@countc=\count304 +\c@pgf@countd=\count305 +\t@pgf@toka=\toks32 +\t@pgf@tokb=\toks33 +\t@pgf@tokc=\toks34 +\pgf@sys@id@count=\count306 + +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/generic/pgf/systemlayer +\pgf.cfg +File: pgf.cfg 2021/05/15 v3.1.9a (3.1.9a) +) +Driver file for pgf: pgfsys-pdftex.def + +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/generic/pgf/systemlayer +\pgfsys-pdftex.def +File: pgfsys-pdftex.def 2021/05/15 v3.1.9a (3.1.9a) + +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/generic/pgf/systemlayer +\pgfsys-common-pdf.def +File: pgfsys-common-pdf.def 2021/05/15 v3.1.9a (3.1.9a) +))) +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/generic/pgf/systemlayer +\pgfsyssoftpath.code.tex +File: pgfsyssoftpath.code.tex 2021/05/15 v3.1.9a (3.1.9a) +\pgfsyssoftpath@smallbuffer@items=\count307 +\pgfsyssoftpath@bigbuffer@items=\count308 +) +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/generic/pgf/systemlayer +\pgfsysprotocol.code.tex +File: pgfsysprotocol.code.tex 2021/05/15 v3.1.9a (3.1.9a) +)) +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/latex/xcolor\xcolor.sty +Package: xcolor 2021/10/31 v2.13 LaTeX color extensions (UK) + +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/latex/graphics-cfg\colo +r.cfg +File: color.cfg 2016/01/02 v1.6 sample color configuration +) +Package xcolor Info: Driver file: pdftex.def on input line 227. +Package xcolor Info: Model `cmy' substituted by `cmy0' on input line 1352. +Package xcolor Info: Model `hsb' substituted by `rgb' on input line 1356. +Package xcolor Info: Model `RGB' extended on input line 1368. +Package xcolor Info: Model `HTML' substituted by `rgb' on input line 1370. +Package xcolor Info: Model `Hsb' substituted by `hsb' on input line 1371. +Package xcolor Info: Model `tHsb' substituted by `hsb' on input line 1372. +Package xcolor Info: Model `HSB' substituted by `hsb' on input line 1373. +Package xcolor Info: Model `Gray' substituted by `gray' on input line 1374. +Package xcolor Info: Model `wave' substituted by `hsb' on input line 1375. +) +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/generic/pgf/basiclayer\ +pgfcore.code.tex +Package: pgfcore 2021/05/15 v3.1.9a (3.1.9a) + +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/generic/pgf/math\pgfmat +h.code.tex +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/generic/pgf/math\pgfmat +hcalc.code.tex +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/generic/pgf/math\pgfmat +hutil.code.tex) +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/generic/pgf/math\pgfmat +hparser.code.tex +\pgfmath@dimen=\dimen196 +\pgfmath@count=\count309 +\pgfmath@box=\box66 +\pgfmath@toks=\toks35 +\pgfmath@stack@operand=\toks36 +\pgfmath@stack@operation=\toks37 +) +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/generic/pgf/math\pgfmat +hfunctions.code.tex +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/generic/pgf/math\pgfmat +hfunctions.basic.code.tex) +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/generic/pgf/math\pgfmat +hfunctions.trigonometric.code.tex) +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/generic/pgf/math\pgfmat +hfunctions.random.code.tex) +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/generic/pgf/math\pgfmat +hfunctions.comparison.code.tex) +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/generic/pgf/math\pgfmat +hfunctions.base.code.tex) +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/generic/pgf/math\pgfmat +hfunctions.round.code.tex) +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/generic/pgf/math\pgfmat +hfunctions.misc.code.tex) +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/generic/pgf/math\pgfmat +hfunctions.integerarithmetics.code.tex))) +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/generic/pgf/math\pgfmat +hfloat.code.tex +\c@pgfmathroundto@lastzeros=\count310 +)) +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/generic/pgf/math\pgfint +.code.tex) +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/generic/pgf/basiclayer\ +pgfcorepoints.code.tex +File: pgfcorepoints.code.tex 2021/05/15 v3.1.9a (3.1.9a) +\pgf@picminx=\dimen197 +\pgf@picmaxx=\dimen198 +\pgf@picminy=\dimen199 +\pgf@picmaxy=\dimen256 +\pgf@pathminx=\dimen257 +\pgf@pathmaxx=\dimen258 +\pgf@pathminy=\dimen259 +\pgf@pathmaxy=\dimen260 +\pgf@xx=\dimen261 +\pgf@xy=\dimen262 +\pgf@yx=\dimen263 +\pgf@yy=\dimen264 +\pgf@zx=\dimen265 +\pgf@zy=\dimen266 +) +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/generic/pgf/basiclayer\ +pgfcorepathconstruct.code.tex +File: pgfcorepathconstruct.code.tex 2021/05/15 v3.1.9a (3.1.9a) +\pgf@path@lastx=\dimen267 +\pgf@path@lasty=\dimen268 +) +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/generic/pgf/basiclayer\ +pgfcorepathusage.code.tex +File: pgfcorepathusage.code.tex 2021/05/15 v3.1.9a (3.1.9a) +\pgf@shorten@end@additional=\dimen269 +\pgf@shorten@start@additional=\dimen270 +) +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/generic/pgf/basiclayer\ +pgfcorescopes.code.tex +File: pgfcorescopes.code.tex 2021/05/15 v3.1.9a (3.1.9a) +\pgfpic=\box67 +\pgf@hbox=\box68 +\pgf@layerbox@main=\box69 +\pgf@picture@serial@count=\count311 +) +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/generic/pgf/basiclayer\ +pgfcoregraphicstate.code.tex +File: pgfcoregraphicstate.code.tex 2021/05/15 v3.1.9a (3.1.9a) +\pgflinewidth=\dimen271 +) +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/generic/pgf/basiclayer\ +pgfcoretransformations.code.tex +File: pgfcoretransformations.code.tex 2021/05/15 v3.1.9a (3.1.9a) +\pgf@pt@x=\dimen272 +\pgf@pt@y=\dimen273 +\pgf@pt@temp=\dimen274 +) +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/generic/pgf/basiclayer\ +pgfcorequick.code.tex +File: pgfcorequick.code.tex 2021/05/15 v3.1.9a (3.1.9a) +) +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/generic/pgf/basiclayer\ +pgfcoreobjects.code.tex +File: pgfcoreobjects.code.tex 2021/05/15 v3.1.9a (3.1.9a) +) +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/generic/pgf/basiclayer\ +pgfcorepathprocessing.code.tex +File: pgfcorepathprocessing.code.tex 2021/05/15 v3.1.9a (3.1.9a) +) +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/generic/pgf/basiclayer\ +pgfcorearrows.code.tex +File: pgfcorearrows.code.tex 2021/05/15 v3.1.9a (3.1.9a) +\pgfarrowsep=\dimen275 +) +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/generic/pgf/basiclayer\ +pgfcoreshade.code.tex +File: pgfcoreshade.code.tex 2021/05/15 v3.1.9a (3.1.9a) +\pgf@max=\dimen276 +\pgf@sys@shading@range@num=\count312 +\pgf@shadingcount=\count313 +) +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/generic/pgf/basiclayer\ +pgfcoreimage.code.tex +File: pgfcoreimage.code.tex 2021/05/15 v3.1.9a (3.1.9a) + +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/generic/pgf/basiclayer\ +pgfcoreexternal.code.tex +File: pgfcoreexternal.code.tex 2021/05/15 v3.1.9a (3.1.9a) +\pgfexternal@startupbox=\box70 +)) +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/generic/pgf/basiclayer\ +pgfcorelayers.code.tex +File: pgfcorelayers.code.tex 2021/05/15 v3.1.9a (3.1.9a) +) +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/generic/pgf/basiclayer\ +pgfcoretransparency.code.tex +File: pgfcoretransparency.code.tex 2021/05/15 v3.1.9a (3.1.9a) +) +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/generic/pgf/basiclayer\ +pgfcorepatterns.code.tex +File: pgfcorepatterns.code.tex 2021/05/15 v3.1.9a (3.1.9a) +) +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/generic/pgf/basiclayer\ +pgfcorerdf.code.tex +File: pgfcorerdf.code.tex 2021/05/15 v3.1.9a (3.1.9a) +))) +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/generic/pgf/modules\pgf +moduleshapes.code.tex +File: pgfmoduleshapes.code.tex 2021/05/15 v3.1.9a (3.1.9a) +\pgfnodeparttextbox=\box71 +) +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/generic/pgf/modules\pgf +moduleplot.code.tex +File: pgfmoduleplot.code.tex 2021/05/15 v3.1.9a (3.1.9a) +) +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/latex/pgf/compatibility +\pgfcomp-version-0-65.sty +Package: pgfcomp-version-0-65 2021/05/15 v3.1.9a (3.1.9a) +\pgf@nodesepstart=\dimen277 +\pgf@nodesepend=\dimen278 +) +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/latex/pgf/compatibility +\pgfcomp-version-1-18.sty +Package: pgfcomp-version-1-18 2021/05/15 v3.1.9a (3.1.9a) +)) +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/latex/pgf/utilities\pgf +for.sty +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/latex/pgf/utilities\pgf +keys.sty +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/generic/pgf/utilities\p +gfkeys.code.tex)) +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/latex/pgf/math\pgfmath. +sty +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/generic/pgf/math\pgfmat +h.code.tex)) +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/generic/pgf/utilities\p +gffor.code.tex +Package: pgffor 2021/05/15 v3.1.9a (3.1.9a) + +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/generic/pgf/math\pgfmat +h.code.tex) +\pgffor@iter=\dimen279 +\pgffor@skip=\dimen280 +\pgffor@stack=\toks38 +\pgffor@toks=\toks39 +)) +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/generic/pgf/frontendlay +er/tikz\tikz.code.tex +Package: tikz 2021/05/15 v3.1.9a (3.1.9a) + +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/generic/pgf/libraries\p +gflibraryplothandlers.code.tex +File: pgflibraryplothandlers.code.tex 2021/05/15 v3.1.9a (3.1.9a) +\pgf@plot@mark@count=\count314 +\pgfplotmarksize=\dimen281 +) +\tikz@lastx=\dimen282 +\tikz@lasty=\dimen283 +\tikz@lastxsaved=\dimen284 +\tikz@lastysaved=\dimen285 +\tikz@lastmovetox=\dimen286 +\tikz@lastmovetoy=\dimen287 +\tikzleveldistance=\dimen288 +\tikzsiblingdistance=\dimen289 +\tikz@figbox=\box72 +\tikz@figbox@bg=\box73 +\tikz@tempbox=\box74 +\tikz@tempbox@bg=\box75 +\tikztreelevel=\count315 +\tikznumberofchildren=\count316 +\tikznumberofcurrentchild=\count317 +\tikz@fig@count=\count318 + +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/generic/pgf/modules\pgf +modulematrix.code.tex +File: pgfmodulematrix.code.tex 2021/05/15 v3.1.9a (3.1.9a) +\pgfmatrixcurrentrow=\count319 +\pgfmatrixcurrentcolumn=\count320 +\pgf@matrix@numberofcolumns=\count321 +) +\tikz@expandcount=\count322 + +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/generic/pgf/frontendlay +er/tikz/libraries\tikzlibrarytopaths.code.tex +File: tikzlibrarytopaths.code.tex 2021/05/15 v3.1.9a (3.1.9a) +))) +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/generic/pgf/frontendlay +er/tikz/libraries\tikzlibraryshapes.geometric.code.tex +File: tikzlibraryshapes.geometric.code.tex 2021/05/15 v3.1.9a (3.1.9a) + +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/generic/pgf/libraries/s +hapes\pgflibraryshapes.geometric.code.tex +File: pgflibraryshapes.geometric.code.tex 2021/05/15 v3.1.9a (3.1.9a) +)) +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/generic/pgf/frontendlay +er/tikz/libraries\tikzlibrarycalc.code.tex +File: tikzlibrarycalc.code.tex 2021/05/15 v3.1.9a (3.1.9a) +) +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/latex/url\url.sty +\Urlmuskip=\muskip17 +Package: url 2013/09/16 ver 3.4 Verb mode for urls, etc. +) +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/latex/geometry\geometry +.sty +Package: geometry 2020/01/02 v5.9 Page Geometry + +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/generic/iftex\ifvtex.st +y +Package: ifvtex 2019/10/25 v1.7 ifvtex legacy package. Use iftex instead. +) +\Gm@cnth=\count323 +\Gm@cntv=\count324 +\c@Gm@tempcnt=\count325 +\Gm@bindingoffset=\dimen290 +\Gm@wd@mp=\dimen291 +\Gm@odd@mp=\dimen292 +\Gm@even@mp=\dimen293 +\Gm@layoutwidth=\dimen294 +\Gm@layoutheight=\dimen295 +\Gm@layouthoffset=\dimen296 +\Gm@layoutvoffset=\dimen297 +\Gm@dimlist=\toks40 + +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/latex/geometry\geometry +.cfg)) +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/latex/hyperref\hyperref +.sty +Package: hyperref 2022-02-21 v7.00n Hypertext links for LaTeX + +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/generic/kvsetkeys\kvset +keys.sty +Package: kvsetkeys 2019/12/15 v1.18 Key value parser (HO) +) +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/generic/kvdefinekeys\kv +definekeys.sty +Package: kvdefinekeys 2019-12-19 v1.6 Define keys (HO) +) +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/generic/pdfescape\pdfes +cape.sty +Package: pdfescape 2019/12/09 v1.15 Implements pdfTeX's escape features (HO) +) +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/latex/hycolor\hycolor.s +ty +Package: hycolor 2020-01-27 v1.10 Color options for hyperref/bookmark (HO) +) +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/latex/letltxmacro\letlt +xmacro.sty +Package: letltxmacro 2019/12/03 v1.6 Let assignment for LaTeX macros (HO) +) +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/latex/auxhook\auxhook.s +ty +Package: auxhook 2019-12-17 v1.6 Hooks for auxiliary files (HO) +) +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/latex/kvoptions\kvoptio +ns.sty +Package: kvoptions 2020-10-07 v3.14 Key value format for package options (HO) +) +\@linkdim=\dimen298 +\Hy@linkcounter=\count326 +\Hy@pagecounter=\count327 + +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/latex/hyperref\pd1enc.d +ef +File: pd1enc.def 2022-02-21 v7.00n Hyperref: PDFDocEncoding definition (HO) +Now handling font encoding PD1 ... +... no UTF-8 mapping file for font encoding PD1 +) +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/generic/intcalc\intcalc +.sty +Package: intcalc 2019/12/15 v1.3 Expandable calculations with integers (HO) +) +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/generic/etexcmds\etexcm +ds.sty +Package: etexcmds 2019/12/15 v1.7 Avoid name clashes with e-TeX commands (HO) +) +\Hy@SavedSpaceFactor=\count328 + +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/latex/hyperref\puenc.de +f +File: puenc.def 2022-02-21 v7.00n Hyperref: PDF Unicode definition (HO) +Now handling font encoding PU ... +... no UTF-8 mapping file for font encoding PU +) +Package hyperref Info: Hyper figures OFF on input line 4137. +Package hyperref Info: Link nesting OFF on input line 4142. +Package hyperref Info: Hyper index ON on input line 4145. +Package hyperref Info: Plain pages OFF on input line 4152. +Package hyperref Info: Backreferencing OFF on input line 4157. +Package hyperref Info: Implicit mode ON; LaTeX internals redefined. +Package hyperref Info: Bookmarks ON on input line 4390. +\c@Hy@tempcnt=\count329 +LaTeX Info: Redefining \url on input line 4749. +\XeTeXLinkMargin=\dimen299 + +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/generic/bitset\bitset.s +ty +Package: bitset 2019/12/09 v1.3 Handle bit-vector datatype (HO) + +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/generic/bigintcalc\bigi +ntcalc.sty +Package: bigintcalc 2019/12/15 v1.5 Expandable calculations on big integers (HO +) +)) +\Fld@menulength=\count330 +\Field@Width=\dimen300 +\Fld@charsize=\dimen301 +Package hyperref Info: Hyper figures OFF on input line 6027. +Package hyperref Info: Link nesting OFF on input line 6032. +Package hyperref Info: Hyper index ON on input line 6035. +Package hyperref Info: backreferencing OFF on input line 6042. +Package hyperref Info: Link coloring OFF on input line 6047. +Package hyperref Info: Link coloring with OCG OFF on input line 6052. +Package hyperref Info: PDF/A mode OFF on input line 6057. +LaTeX Info: Redefining \ref on input line 6097. +LaTeX Info: Redefining \pageref on input line 6101. + +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/latex/base\atbegshi-ltx +.sty +Package: atbegshi-ltx 2021/01/10 v1.0c Emulation of the original atbegshi +package with kernel methods +) +\Hy@abspage=\count331 +\c@Item=\count332 +\c@Hfootnote=\count333 +) +Package hyperref Info: Driver: hpdftex. + +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/latex/hyperref\hpdftex. +def +File: hpdftex.def 2022-02-21 v7.00n Hyperref driver for pdfTeX + +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/latex/base\atveryend-lt +x.sty +Package: atveryend-ltx 2020/08/19 v1.0a Emulation of the original atveryend pac +kage +with kernel methods +) +\Fld@listcount=\count334 +\c@bookmark@seq@number=\count335 + +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/latex/rerunfilecheck\re +runfilecheck.sty +Package: rerunfilecheck 2019/12/05 v1.9 Rerun checks for auxiliary files (HO) + +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/generic/uniquecounter\u +niquecounter.sty +Package: uniquecounter 2019/12/15 v1.4 Provide unlimited unique counter (HO) +) +Package uniquecounter Info: New unique counter `rerunfilecheck' on input line 2 +86. +) +\Hy@SectionHShift=\skip58 +) +\headeroffset=\skip59 +\headerheight=\skip60 +\titlestraw=\skip61 +\EPSALogo=\skip62 +\EPSAoff=\skip63 +\ECLLogo=\skip64 +\SecBar=\skip65 +\margintop=\skip66 +\marginbottom=\skip67 +\marginright=\skip68 +\marginleft=\skip69 + +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/latex/montserrat\montse +rrat.sty +Package: montserrat 2019/11/07 v1.03 + +`montserrat' v1.03, 2019/11/07 Style file for Montserrat and Alternates (msharp +e) +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/latex/base\fontenc.sty +Package: fontenc 2021/04/29 v2.0v Standard LaTeX package + +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/latex/ly1\ly1enc.def +File: ly1enc.def 2022/06/11 v0.8 TeX 'n ANSI encoding (DPC/KB) +Now handling font encoding LY1 ... +... processing UTF-8 mapping file for font encoding LY1 + +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/latex/base\ly1enc.dfu +File: ly1enc.dfu 2021/06/21 v1.2n UTF-8 support + defining Unicode char U+00A0 (decimal 160) + defining Unicode char U+00A1 (decimal 161) + defining Unicode char U+00A2 (decimal 162) + defining Unicode char U+00A3 (decimal 163) + defining Unicode char U+00A4 (decimal 164) + defining Unicode char U+00A5 (decimal 165) + defining Unicode char U+00A6 (decimal 166) + defining Unicode char U+00A7 (decimal 167) + defining Unicode char U+00AA (decimal 170) + defining Unicode char U+00AB (decimal 171) + defining Unicode char U+00AD (decimal 173) + defining Unicode char U+00AE (decimal 174) + defining Unicode char U+00B0 (decimal 176) + defining Unicode char U+00B5 (decimal 181) + defining Unicode char U+00B6 (decimal 182) + defining Unicode char U+00B7 (decimal 183) + defining Unicode char U+00BA (decimal 186) + defining Unicode char U+00BB (decimal 187) + defining Unicode char U+00BC (decimal 188) + defining Unicode char U+00BD (decimal 189) + defining Unicode char U+00BE (decimal 190) + defining Unicode char U+00BF (decimal 191) + defining Unicode char U+00C0 (decimal 192) + defining Unicode char U+00C1 (decimal 193) + defining Unicode char U+00C2 (decimal 194) + defining Unicode char U+00C3 (decimal 195) + defining Unicode char U+00C4 (decimal 196) + defining Unicode char U+00C5 (decimal 197) + defining Unicode char U+00C6 (decimal 198) + defining Unicode char U+00C7 (decimal 199) + defining Unicode char U+00C8 (decimal 200) + defining Unicode char U+00C9 (decimal 201) + defining Unicode char U+00CA (decimal 202) + defining Unicode char U+00CB (decimal 203) + defining Unicode char U+00CC (decimal 204) + defining Unicode char U+00CD (decimal 205) + defining Unicode char U+00CE (decimal 206) + defining Unicode char U+00CF (decimal 207) + defining Unicode char U+00D0 (decimal 208) + defining Unicode char U+00D1 (decimal 209) + defining Unicode char U+00D2 (decimal 210) + defining Unicode char U+00D3 (decimal 211) + defining Unicode char U+00D4 (decimal 212) + defining Unicode char U+00D5 (decimal 213) + defining Unicode char U+00D6 (decimal 214) + defining Unicode char U+00D8 (decimal 216) + defining Unicode char U+00D9 (decimal 217) + defining Unicode char U+00DA (decimal 218) + defining Unicode char U+00DB (decimal 219) + defining Unicode char U+00DC (decimal 220) + defining Unicode char U+00DD (decimal 221) + defining Unicode char U+00DE (decimal 222) + defining Unicode char U+00DF (decimal 223) + defining Unicode char U+00E0 (decimal 224) + defining Unicode char U+00E1 (decimal 225) + defining Unicode char U+00E2 (decimal 226) + defining Unicode char U+00E3 (decimal 227) + defining Unicode char U+00E4 (decimal 228) + defining Unicode char U+00E5 (decimal 229) + defining Unicode char U+00E6 (decimal 230) + defining Unicode char U+00E7 (decimal 231) + defining Unicode char U+00E8 (decimal 232) + defining Unicode char U+00E9 (decimal 233) + defining Unicode char U+00EA (decimal 234) + defining Unicode char U+00EB (decimal 235) + defining Unicode char U+00EC (decimal 236) + defining Unicode char U+00ED (decimal 237) + defining Unicode char U+00EE (decimal 238) + defining Unicode char U+00EF (decimal 239) + defining Unicode char U+00F0 (decimal 240) + defining Unicode char U+00F1 (decimal 241) + defining Unicode char U+00F2 (decimal 242) + defining Unicode char U+00F3 (decimal 243) + defining Unicode char U+00F4 (decimal 244) + defining Unicode char U+00F5 (decimal 245) + defining Unicode char U+00F6 (decimal 246) + defining Unicode char U+00F8 (decimal 248) + defining Unicode char U+00F9 (decimal 249) + defining Unicode char U+00FA (decimal 250) + defining Unicode char U+00FB (decimal 251) + defining Unicode char U+00FC (decimal 252) + defining Unicode char U+00FD (decimal 253) + defining Unicode char U+00FE (decimal 254) + defining Unicode char U+00FF (decimal 255) + defining Unicode char U+0131 (decimal 305) + defining Unicode char U+0141 (decimal 321) + defining Unicode char U+0142 (decimal 322) + defining Unicode char U+0152 (decimal 338) + defining Unicode char U+0153 (decimal 339) + defining Unicode char U+0160 (decimal 352) + defining Unicode char U+0161 (decimal 353) + defining Unicode char U+0174 (decimal 372) + defining Unicode char U+0175 (decimal 373) + defining Unicode char U+0176 (decimal 374) + defining Unicode char U+0177 (decimal 375) + defining Unicode char U+0178 (decimal 376) + defining Unicode char U+017D (decimal 381) + defining Unicode char U+017E (decimal 382) + defining Unicode char U+0192 (decimal 402) + defining Unicode char U+0218 (decimal 536) + defining Unicode char U+0219 (decimal 537) + defining Unicode char U+021A (decimal 538) + defining Unicode char U+021B (decimal 539) + defining Unicode char U+0237 (decimal 567) + defining Unicode char U+02C6 (decimal 710) + defining Unicode char U+02DC (decimal 732) + defining Unicode char U+2013 (decimal 8211) + defining Unicode char U+2014 (decimal 8212) + defining Unicode char U+201C (decimal 8220) + defining Unicode char U+201D (decimal 8221) + defining Unicode char U+2020 (decimal 8224) + defining Unicode char U+2021 (decimal 8225) + defining Unicode char U+2022 (decimal 8226) + defining Unicode char U+2026 (decimal 8230) + defining Unicode char U+2030 (decimal 8240) + defining Unicode char U+2039 (decimal 8249) + defining Unicode char U+203A (decimal 8250) + defining Unicode char U+2122 (decimal 8482) + defining Unicode char U+FB00 (decimal 64256) + defining Unicode char U+FB01 (decimal 64257) + defining Unicode char U+FB02 (decimal 64258) + defining Unicode char U+FB03 (decimal 64259) + defining Unicode char U+FB04 (decimal 64260) + defining Unicode char U+FB05 (decimal 64261) + defining Unicode char U+FB06 (decimal 64262) +))) +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/latex/base\textcomp.sty +Package: textcomp 2020/02/02 v2.0n Standard LaTeX package +) +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/latex/fontaxes\fontaxes +.sty +Package: fontaxes 2020/07/21 v1.0e Font selection axes +LaTeX Info: Redefining \upshape on input line 29. +LaTeX Info: Redefining \itshape on input line 31. +LaTeX Info: Redefining \slshape on input line 33. +LaTeX Info: Redefining \swshape on input line 35. +LaTeX Info: Redefining \scshape on input line 37. +LaTeX Info: Redefining \sscshape on input line 39. +LaTeX Info: Redefining \ulcshape on input line 41. +LaTeX Info: Redefining \textsw on input line 47. +LaTeX Info: Redefining \textssc on input line 48. +LaTeX Info: Redefining \textulc on input line 49. +) +LaTeX Info: Redefining \textin on input line 42. + +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/latex/xkeyval\xkeyval.s +ty +Package: xkeyval 2020/11/20 v2.8 package option processing (HA) + +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/generic/xkeyval\xkeyval +.tex +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/generic/xkeyval\xkvutil +s.tex +\XKV@toks=\toks41 +\XKV@tempa@toks=\toks42 +) +\XKV@depth=\count336 +File: xkeyval.tex 2014/12/03 v2.7a key=value parser (HA) +))) +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/latex/base\fontenc.sty +Package: fontenc 2021/04/29 v2.0v Standard LaTeX package +LaTeX Font Info: Trying to load font information for T1+Montserrat-TLF on in +put line 112. + +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/latex/montserrat\t1mont +serrat-tlf.fd +File: T1Montserrat-TLF.fd 2019/11/07 (autoinst) Font definitions for T1/Montser +rat-TLF. +) +LaTeX Font Info: Font shape `T1/Montserrat-TLF/regular/n' will be +(Font) scaled to size 12.0pt on input line 112. +) +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/latex/xpatch\xpatch.sty +Package: xpatch 2020/03/25 v0.3a Extending etoolbox patching commands + +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/latex/l3packages/xparse +\xparse.sty +Package: xparse 2022-01-12 L3 Experimental document command parser +)) +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/latex/koma-script\scrla +yer-scrpage.sty +Package: scrlayer-scrpage 2021/11/13 v3.35 KOMA-Script package (end user interf +ace for scrlayer) + +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/latex/koma-script\scrla +yer.sty +Package: scrlayer 2021/11/13 v3.35 KOMA-Script package (defining layers and pag +e styles) + +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/latex/koma-script\scrkb +ase.sty +Package: scrkbase 2021/11/13 v3.35 KOMA-Script package (KOMA-Script-dependent b +asics and keyval usage) + +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/latex/koma-script\scrba +se.sty +Package: scrbase 2021/11/13 v3.35 KOMA-Script package (KOMA-Script-independent +basics and keyval usage) + +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/latex/koma-script\scrlf +ile.sty +Package: scrlfile 2021/11/13 v3.35 KOMA-Script package (file load hooks) + +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/latex/koma-script\scrlf +ile-hook.sty +Package: scrlfile-hook 2021/11/13 v3.35 KOMA-Script package (using LaTeX hooks) + + +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/latex/koma-script\scrlo +go.sty +Package: scrlogo 2021/11/13 v3.35 KOMA-Script package (logo) +))) +Applying: [2021/05/01] Usage of raw or classic option list on input line 252. +Already applied: [0000/00/00] Usage of raw or classic option list on input line + 368. +)) +\footheight=\skip70 +Package scrlayer Info: patching LaTeX kernel macro \pagestyle on input line 216 +2. +) +Package scrbase Info: Unknown processing state. +(scrbase) Processing option `markcase=noupper' +(scrbase) of member `.scrlayer-scrpage.sty' of family +(scrbase) `KOMA' doesn't set +(scrbase) a valid state. This will be interpreted +(scrbase) as \FamilyKeyStateProcessed on input line 636. +) +Package scrlayer-scrpage Info: auto-selection of `pagestyleset=standard'. + +1: subsection +1: section +1: section +1: subsection +) +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/latex/eurosym\eurosym.s +ty +Package: eurosym 1998/08/06 v1.1 European currency symbol ``Euro'' +\@eurobox=\box76 +) +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/latex/amsfonts\amssymb. +sty +Package: amssymb 2013/01/14 v3.01 AMS font symbols + +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/latex/amsfonts\amsfonts +.sty +Package: amsfonts 2013/01/14 v3.01 Basic AMSFonts support +\symAMSa=\mathgroup4 +\symAMSb=\mathgroup5 +LaTeX Font Info: Redeclaring math symbol \hbar on input line 98. +LaTeX Font Info: Overwriting math alphabet `\mathfrak' in version `bold' +(Font) U/euf/m/n --> U/euf/b/n on input line 106. +)) +Package hyperref Info: Option `unicode' set `true' on input line 29. +Package hyperref Info: Option `colorlinks' set `true' on input line 29. + (choix streaming camera.aux) +\openout1 = `"choix streaming camera.aux"'. + +LaTeX Font Info: Checking defaults for OML/cmm/m/it on input line 31. +LaTeX Font Info: ... okay on input line 31. +LaTeX Font Info: Checking defaults for OMS/cmsy/m/n on input line 31. +LaTeX Font Info: ... okay on input line 31. +LaTeX Font Info: Checking defaults for OT1/cmr/m/n on input line 31. +LaTeX Font Info: ... okay on input line 31. +LaTeX Font Info: Checking defaults for T1/cmr/m/n on input line 31. +LaTeX Font Info: ... okay on input line 31. +LaTeX Font Info: Checking defaults for TS1/cmr/m/n on input line 31. +LaTeX Font Info: ... okay on input line 31. +LaTeX Font Info: Checking defaults for OMX/cmex/m/n on input line 31. +LaTeX Font Info: ... okay on input line 31. +LaTeX Font Info: Checking defaults for U/cmr/m/n on input line 31. +LaTeX Font Info: ... okay on input line 31. +LaTeX Font Info: Checking defaults for PD1/pdf/m/n on input line 31. +LaTeX Font Info: ... okay on input line 31. +LaTeX Font Info: Checking defaults for PU/pdf/m/n on input line 31. +LaTeX Font Info: ... okay on input line 31. +LaTeX Font Info: Checking defaults for LY1/ptm/m/n on input line 31. +LaTeX Font Info: Trying to load font information for LY1+ptm on input line 3 +1. + +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/latex/ly1\ly1ptm.fd +File: ly1ptm.fd 2001/02/01 font definitions for LY1/ptm using Berry names. +) +LaTeX Font Info: ... okay on input line 31. +LaTeX Info: Redefining \degres on input line 31. +LaTeX Info: Redefining \up on input line 31. + +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/latex/translations/dict +s\translations-basic-dictionary-french.trsl +File: translations-basic-dictionary-french.trsl (french translation file `trans +lations-basic-dictionary') +) +Package translations Info: loading dictionary `translations-basic-dictionary' f +or `french'. on input line 31. + +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/context/base/mkii\supp- +pdf.mkii +[Loading MPS to PDF converter (version 2006.09.02).] +\scratchcounter=\count337 +\scratchdimen=\dimen302 +\scratchbox=\box77 +\nofMPsegments=\count338 +\nofMParguments=\count339 +\everyMPshowfont=\toks43 +\MPscratchCnt=\count340 +\MPscratchDim=\dimen303 +\MPnumerator=\count341 +\makeMPintoPDFobject=\count342 +\everyMPtoPDFconversion=\toks44 +) +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/latex/epstopdf-pkg\epst +opdf-base.sty +Package: epstopdf-base 2020-01-24 v2.11 Base part for package epstopdf +Package epstopdf-base Info: Redefining graphics rule for `.eps' on input line 4 +85. + +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/latex/00miktex\epstopdf +-sys.cfg +File: epstopdf-sys.cfg 2021/03/18 v2.0 Configuration of epstopdf for MiKTeX +)) +Package caption Info: Begin \AtBeginDocument code. +Package caption Info: hyperref package is loaded. +Package caption Info: End \AtBeginDocument code. + +*geometry* driver: auto-detecting +*geometry* detected driver: pdftex +*geometry* verbose mode - [ preamble ] result: +* driver: pdftex +* paper: <default> +* layout: <same size as paper> +* layoutoffset:(h,v)=(0.0pt,0.0pt) +* modes: +* h-part:(L,W,R)=(71.13188pt, 469.47049pt, 56.9055pt) +* v-part:(T,H,B)=(85.35826pt, 660.10394pt, 99.58464pt) +* \paperwidth=597.50787pt +* \paperheight=845.04684pt +* \textwidth=469.47049pt +* \textheight=660.10394pt +* \oddsidemargin=-1.1381pt +* \evensidemargin=-1.1381pt +* \topmargin=-23.91173pt +* \headheight=12.0pt +* \headsep=25.0pt +* \topskip=12.0pt +* \footskip=30.0pt +* \marginparwidth=35.0pt +* \marginparsep=10.0pt +* \columnsep=10.0pt +* \skip\footins=10.8pt plus 4.0pt minus 2.0pt +* \hoffset=0.0pt +* \voffset=0.0pt +* \mag=1000 +* \@twocolumnfalse +* \@twosidefalse +* \@mparswitchfalse +* \@reversemarginfalse +* (1in=72.27pt=25.4mm, 1cm=28.453pt) + +Package hyperref Info: Link coloring ON on input line 31. + +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/latex/hyperref\nameref. +sty +Package: nameref 2021-04-02 v2.47 Cross-referencing by name of section + +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/latex/refcount\refcount +.sty +Package: refcount 2019/12/15 v3.6 Data extraction from label references (HO) +) +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/generic/gettitlestring\ +gettitlestring.sty +Package: gettitlestring 2019/12/15 v1.6 Cleanup title references (HO) +) +\c@section@level=\count343 +) +LaTeX Info: Redefining \ref on input line 31. +LaTeX Info: Redefining \pageref on input line 31. +LaTeX Info: Redefining \nameref on input line 31. + (choix streaming camera.out) (choix streaming camera.out) +\@outlinefile=\write4 +\openout4 = `"choix streaming camera.out"'. + +\c@mv@tabular=\count344 +\c@mv@boldtabular=\count345 +Package scrlayer Info: Setting magic \footheight to \baselineskip while +(scrlayer) \begin{document} on input line 31. + + +Package scrlayer-scrpage Warning: Very small head height detected! +(scrlayer-scrpage) Using scrlayer-scrpage the head height +(scrlayer-scrpage) should be at least \baselineskip, which is +(scrlayer-scrpage) 14.5pt currently. +(scrlayer-scrpage) But head height is currently 12.0pt only. +(scrlayer-scrpage) You may use +(scrlayer-scrpage) geometry option `head=14.5pt' +(scrlayer-scrpage) \relax to avoid this warning. + +*geometry* verbose mode - [ newgeometry ] result: +* driver: pdftex +* paper: <default> +* layout: <same size as paper> +* layoutoffset:(h,v)=(0.0pt,0.0pt) +* modes: +* h-part:(L,W,R)=(71.13188pt, 469.47049pt, 56.9055pt) +* v-part:(T,H,B)=(85.35826pt, 717.00946pt, 42.67912pt) +* \paperwidth=597.50787pt +* \paperheight=845.04684pt +* \textwidth=469.47049pt +* \textheight=717.00946pt +* \oddsidemargin=-1.1381pt +* \evensidemargin=-1.1381pt +* \topmargin=-23.91173pt +* \headheight=12.0pt +* \headsep=25.0pt +* \topskip=12.0pt +* \footskip=30.0pt +* \marginparwidth=35.0pt +* \marginparsep=10.0pt +* \columnsep=10.0pt +* \skip\footins=10.8pt plus 4.0pt minus 2.0pt +* \hoffset=0.0pt +* \voffset=0.0pt +* \mag=1000 +* \@twocolumnfalse +* \@twosidefalse +* \@mparswitchfalse +* \@reversemarginfalse +* (1in=72.27pt=25.4mm, 1cm=28.453pt) + +<logos/Logo_EPSA_2019.png, id=22, 523.2348pt x 139.11975pt> +File: logos/Logo_EPSA_2019.png Graphic file (type png) +<use logos/Logo_EPSA_2019.png> +Package pdftex.def Info: logos/Logo_EPSA_2019.png used on input line 33. +(pdftex.def) Requested size: 428.04933pt x 113.81102pt. +LaTeX Font Info: Font shape `T1/Montserrat-TLF/regular/n' will be +(Font) scaled to size 20.74pt on input line 33. +LaTeX Font Info: Font shape `T1/Montserrat-TLF/bold/n' will be +(Font) scaled to size 20.74pt on input line 33. +LaTeX Font Info: Font shape `T1/Montserrat-TLF/regular/n' will be +(Font) scaled to size 17.28pt on input line 33. +<logos/LogoCentrale.png, id=24, 1505.625pt x 1505.625pt> +File: logos/LogoCentrale.png Graphic file (type png) +<use logos/LogoCentrale.png> +Package pdftex.def Info: logos/LogoCentrale.png used on input line 33. +(pdftex.def) Requested size: 133.72786pt x 133.70844pt. + +Overfull \hbox (24.66261pt too wide) in paragraph at lines 33--33 +[]| [] [] + [] + +LaTeX Font Info: Font shape `T1/Montserrat-TLF/bold/n' will be +(Font) scaled to size 12.0pt on input line 33. +LaTeX Font Info: Font shape `T1/Montserrat-TLF/bold/n' will be +(Font) scaled to size 17.28pt on input line 33. +LaTeX Font Info: Font shape `T1/Montserrat-TLF/regular/n' will be +(Font) scaled to size 14.4pt on input line 33. +LaTeX Font Info: Font shape `T1/Montserrat-TLF/regular/it' will be +(Font) scaled to size 14.4pt on input line 33. +LaTeX Font Info: Font shape `T1/Montserrat-TLF/bold/it' will be +(Font) scaled to size 14.4pt on input line 33. +LaTeX Font Info: Font shape `T1/Montserrat-TLF/bold/n' will be +(Font) scaled to size 14.4pt on input line 33. +LaTeX Font Info: Font shape `T1/Montserrat-TLF/regular/n' will be +(Font) scaled to size 10.0pt on input line 33. +LaTeX Font Info: Font shape `T1/Montserrat-TLF/bold/n' will be +(Font) scaled to size 10.0pt on input line 33. +Missing character: There is no , in font nullfont! +<logos/texte centrale.png, id=25, 1504.8722pt x 301.125pt> +File: logos/texte centrale.png Graphic file (type png) +<use logos/texte centrale.png> +Package pdftex.def Info: logos/texte centrale.png used on input line 33. +(pdftex.def) Requested size: 227.62204pt x 45.54356pt. + +Overfull \hbox (56.9055pt too wide) has occurred while \output is active +[]|[][][] + [] + +[1 + + +{C:/Users/Utilisateur/AppData/Local/MiKTeX/fonts/map/pdftex/pdftex.map} <C:/AA_ +perso/localtex/tex/latex/EPSA-rap-template/logos/Logo_EPSA_2019.png> <C:/AA_per +so/localtex/tex/latex/EPSA-rap-template/logos/LogoCentrale.png> <C:/AA_perso/lo +caltex/tex/latex/EPSA-rap-template/logos/texte centrale.png>] +(choix streaming camera.toc +LaTeX Font Info: Trying to load font information for U+msa on input line 4. + +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/latex/amsfonts\umsa.fd +File: umsa.fd 2013/01/14 v3.01 AMS symbols A +) +LaTeX Font Info: Trying to load font information for U+msb on input line 4. +(C:\Users\Utilisateur\AppData\Local\Programs\MiKTeX\tex/latex/amsfonts\umsb.fd +File: umsb.fd 2013/01/14 v3.01 AMS symbols B +)) +\tf@toc=\write5 +\openout5 = `"choix streaming camera.toc"'. + +File: logos/LogoCentrale.png Graphic file (type png) +<use logos/LogoCentrale.png> +Package pdftex.def Info: logos/LogoCentrale.png used on input line 74. +(pdftex.def) Requested size: 17.06964pt x 17.07182pt. +<logos/Logo_EPSA_2019_r.png, id=41, 487.0998pt x 87.80804pt> +File: logos/Logo_EPSA_2019_r.png Graphic file (type png) +<use logos/Logo_EPSA_2019_r.png> +Package pdftex.def Info: logos/Logo_EPSA_2019_r.png used on input line 74. +(pdftex.def) Requested size: 94.69792pt x 17.07182pt. + +pdfTeX warning (ext4): destination with the same identifier (name{page.1}) has +been already used, duplicate ignored +<to be read again> + \relax +l.74 \item P + uissance suffisante [1 + + <C:/AA_perso/localtex/tex/latex/EPSA-rap-template/logos/Logo_EPSA_2019_r.png>] + + +LaTeX Font Warning: Font shape `U/eurosym/regular/n' undefined +(Font) using `U/eurosym/m/n' instead on input line 97. + +File: logos/LogoCentrale.png Graphic file (type png) +<use logos/LogoCentrale.png> +Package pdftex.def Info: logos/LogoCentrale.png used on input line 135. +(pdftex.def) Requested size: 17.06964pt x 17.07182pt. +File: logos/Logo_EPSA_2019_r.png Graphic file (type png) +<use logos/Logo_EPSA_2019_r.png> +Package pdftex.def Info: logos/Logo_EPSA_2019_r.png used on input line 135. +(pdftex.def) Requested size: 94.69792pt x 17.07182pt. +[2] (choix streaming camera.aux) + +LaTeX Font Warning: Some font shapes were not available, defaults substituted. + +Package rerunfilecheck Info: File `"choix streaming camera".out' has not change +d. +(rerunfilecheck) Checksum: 2EB346B161DBA23B99300A880C27B0D3;611. + ) +Here is how much of TeX's memory you used: + 32337 strings out of 478582 + 682693 string characters out of 2841512 + 947535 words of memory out of 3000000 + 50008 multiletter control sequences out of 15000+600000 + 656464 words of font info for 70 fonts, out of 8000000 for 9000 + 1141 hyphenation exceptions out of 8191 + 138i,18n,134p,446b,967s stack positions out of 10000i,1000n,20000p,200000b,80000s +{C:/Users/Utilisateur/AppData/Local/Programs/MiKTeX/fonts/enc/dvips/montserra +t/zmo_bapnwu.enc}<C:/Users/Utilisateur/AppData/Local/Programs/MiKTeX/fonts/type +1/public/montserrat/Montserrat-Bold.pfb><C:/Users/Utilisateur/AppData/Local/Pro +grams/MiKTeX/fonts/type1/public/montserrat/Montserrat-BoldItalic.pfb><C:/Users/ +Utilisateur/AppData/Local/Programs/MiKTeX/fonts/type1/public/montserrat/Montser +rat-Regular.pfb><C:/Users/Utilisateur/AppData/Local/Programs/MiKTeX/fonts/type1 +/public/amsfonts/cm/cmmi12.pfb><C:/Users/Utilisateur/AppData/Local/Programs/MiK +TeX/fonts/type1/public/amsfonts/cm/cmr12.pfb><C:/Users/Utilisateur/AppData/Loca +l/Programs/MiKTeX/fonts/type1/public/eurosym/feymr10.pfb><C:/Users/Utilisateur/ +AppData/Local/Programs/MiKTeX/fonts/type1/public/amsfonts/symbols/msam10.pfb> +Output written on "choix streaming camera.pdf" (3 pages, 499751 bytes). +PDF statistics: + 91 PDF objects out of 1000 (max. 8388607) + 8 named destinations out of 1000 (max. 500000) + 65 words of extra memory for PDF output out of 10000 (max. 10000000) + diff --git "a/Documentation/Pre-projet/Solution cam\303\251ra/choix streaming camera.out" "b/Documentation/Pre-projet/Solution cam\303\251ra/choix streaming camera.out" new file mode 100644 index 0000000000000000000000000000000000000000..5c210de6a31fa035ad7fc4cd2260c45fd4d69632 --- /dev/null +++ "b/Documentation/Pre-projet/Solution cam\303\251ra/choix streaming camera.out" @@ -0,0 +1,4 @@ +\BOOKMARK [1][-]{section.1}{\376\377\000I\000n\000t\000r\000o\000d\000u\000c\000t\000i\000o\000n}{}% 1 +\BOOKMARK [1][-]{section.2}{\376\377\000D\000e\000s\000c\000r\000i\000p\000t\000i\000o\000n\000\040\000d\000e\000s\000\040\000s\000o\000l\000u\000t\000i\000o\000n\000s}{}% 2 +\BOOKMARK [2][-]{subsection.2.1}{\376\377\000I\000n\000t\000e\000l\000l\000i\000g\000e\000n\000c\000e\000\040\000e\000m\000b\000a\000r\000q\000u\000\351}{section.2}% 3 +\BOOKMARK [2][-]{subsection.2.2}{\376\377\000I\000n\000t\000e\000l\000l\000i\000g\000e\000n\000c\000e\000\040\000d\000\351\000p\000o\000r\000t\000\351}{section.2}% 4 diff --git "a/Documentation/Pre-projet/Solution cam\303\251ra/choix streaming camera.pdf" "b/Documentation/Pre-projet/Solution cam\303\251ra/choix streaming camera.pdf" new file mode 100644 index 0000000000000000000000000000000000000000..2cc01d80f14dd58ab8b601bdcf42b1cd0ad45dbf Binary files /dev/null and "b/Documentation/Pre-projet/Solution cam\303\251ra/choix streaming camera.pdf" differ diff --git "a/Documentation/Pre-projet/Solution cam\303\251ra/choix streaming camera.synctex.gz" "b/Documentation/Pre-projet/Solution cam\303\251ra/choix streaming camera.synctex.gz" new file mode 100644 index 0000000000000000000000000000000000000000..b635622bf86664c9593e808f381fd6e2a993eacc Binary files /dev/null and "b/Documentation/Pre-projet/Solution cam\303\251ra/choix streaming camera.synctex.gz" differ diff --git "a/Documentation/Pre-projet/Solution cam\303\251ra/choix streaming camera.tex" "b/Documentation/Pre-projet/Solution cam\303\251ra/choix streaming camera.tex" new file mode 100644 index 0000000000000000000000000000000000000000..3c9e1421a8b987869dbddfe2d6c173ee48628b3c --- /dev/null +++ "b/Documentation/Pre-projet/Solution cam\303\251ra/choix streaming camera.tex" @@ -0,0 +1,135 @@ +\documentclass{EPSA-rap-template} + +\usepackage{eurosym} +\usepackage{amssymb} + +\type{Présentation} + +\titresize{\LARGE} % ne pas hésiter a changer la taille : +%\normalsize +%\large +%\Large +%\LARGE +%\huge +%\Huge +%\HUGE + +\titre{Intelligence embarqué} + +\departement{Recherche} + +\auteurs{Eymeric \textbf{Chauchat}} + +\version{V1.0} + +\versionnement{ +\ver{V1.0}{25 aout 2022}{ ECT }{Rédaction initiale.}{1} +} + +\setuppack + +\begin{document} + +\fairepagedegarde +\newpage +\tableofcontents + +\section{Introduction} + +En plus du contrôle à distance de la voiture (qui est obligatoire pour permettre un arrêt d'urgence), le projet nécessite que l'on traite des données vidéos pour permettre la conduite autonome de la voiture. En ce sens plusieurs solutions s'offrent à nous pour permettre l'acquisition et le traitement de ces données. + +\section{Description des solutions} + +L'intelligence de la voiture peut se trouver à deux endroits : + +\begin{itemize} +\item A l'intérieur de la voiture télécommandée +\item sur l'ordinateur qui possède le dongle d'arret d'urgence / commande +\end{itemize} + +Ces deux possibilités ouvrent un grand champ d'alternative pour arriver à faire l'acquisition vidéo et le traitement / commande. + +\subsection{Intelligence embarqué} + +Dans le cas d'une intelligence embarquée, l'acquisition vidéo se fera directement grâce à des caméras branchées sur la carte de contrôle. + +La question est alors : quelle doit être la plateforme qui va nous permettre de faire les calculs et en déduire la commande de notre voiture ? + +La plateforme choisit doit être robuste (résistante au probable choc sur le corps de la voiture), doit permettre une liaison avec l'arduino de contrôle de la voiture et doit avoir une assez grande puissance de calcul pour traiter les images (qui peuvent provenir de différentes caméras HD). + +A savoir que toute les plateformes se rapprochant de Arduino, Rasberry Pi, ou tournant sur ATmega328P, PIC ou autre microprocesseur cadencé en dessous du gigahertz ne pourra pas convenir dû au manque de puissance de calcul que nécessite le traitement vidéo. + +Voici alors une première liste de plateforme : + + +\begin{itemize} + +\item Téléphone Android haut de gamme : + +\textbf{Avantages : } +\begin{itemize} +\item disponible auprès des membres du Pae +\item Aucun coût +\item Pas de consommation +\item Puissance suffisante +\item taille petite +\end{itemize} + +\textbf{Inconvénients : } +\begin{itemize} +\item Obligation de développement en .apk +\item Puissance de calcul limité +\item difficulté pour gérer les différentes entrée vidéo +\end{itemize} + +\item \href{https://www.nvidia.com/fr-be/autonomous-machines/jetson-store/}{Nvidia Jetson} + +\textbf{Avantages : } +\begin{itemize} +\item très forte puissance de calcul +\item basse consommation +\item Carte qui pourrait être intégré sur le véhicule à grande échelle +\item architecture faite pour le calcul d'IA +\item Programmation en CUDA / C++ +\end{itemize} +\textbf{Inconvénients : } +\begin{itemize} +\item prix 109 \euro{} +\item besoin de fournir une protection +\item Assez encombrant sur la voiture (103mm x 90.5mm x 34mm) +\end{itemize} + +\end{itemize} + +\subsection{Intelligence déporté} + +La deuxième solution est donc de déporter le calcul et la commande à l'extérieur de la voiture sur un ordinateur distant. Il faut alors trouver un moyen de recevoir le flux vidéo de plusieurs caméras à distance. La réception doit être de bonne qualité et avec une faible latence ($\leqslant 500ms$). + +On ne peut donc pas utiliser de système analogique (beaucoup de bruit à cause de la nature analogique du transfert). Il faut alors trouver un système numérique peu onéreux ($\leqslant 200 $\euro{}) qui permettent le transfert. + +Voici la liste préliminaire des solutions : + +\begin{itemize} + +\item ESP32-CAM + +\textbf{Avantages : } + +\begin{itemize} +\item Système compact +\item Système autonome +\item Bon marché ($30$\euro{}) +\item faible latence ($\leqslant 100$ms) +\item Petit encombrement +\end{itemize} +\textbf{Inconvénients : } + +\begin{itemize} +\item Faible qualité vidéo (max 800x600 en 30 fps) +\item multiplication des émissions wifi (comment gérer la réception) +\end{itemize} + + +\end{itemize} + +\end{document} \ No newline at end of file diff --git "a/Documentation/Pre-projet/Solution cam\303\251ra/choix streaming camera.toc" "b/Documentation/Pre-projet/Solution cam\303\251ra/choix streaming camera.toc" new file mode 100644 index 0000000000000000000000000000000000000000..dac91c9d932446edc3bd112a1c141dfaa30c9374 --- /dev/null +++ "b/Documentation/Pre-projet/Solution cam\303\251ra/choix streaming camera.toc" @@ -0,0 +1,5 @@ +\babel@toc {french}{}\relax +\contentsline {section}{\numberline {1}Introduction}{1}{section.1}% +\contentsline {section}{\numberline {2}Description des solutions}{1}{section.2}% +\contentsline {subsection}{\numberline {2.1}Intelligence embarqué}{1}{subsection.2.1}% +\contentsline {subsection}{\numberline {2.2}Intelligence déporté}{2}{subsection.2.2}% diff --git a/Documentation/Pre-projet/Voiture RC/Arduino Nano scheme.jpg b/Documentation/Pre-projet/Voiture RC/Arduino Nano scheme.jpg new file mode 100644 index 0000000000000000000000000000000000000000..62675312a3cf9c06d8fc77995a7538ffcc7a7a5f Binary files /dev/null and b/Documentation/Pre-projet/Voiture RC/Arduino Nano scheme.jpg differ diff --git a/Documentation/Pre-projet/Voiture RC/Arduino Nano scheme.png b/Documentation/Pre-projet/Voiture RC/Arduino Nano scheme.png new file mode 100644 index 0000000000000000000000000000000000000000..99b780602be86afab3b73a931358ecd9603a9d0c Binary files /dev/null and b/Documentation/Pre-projet/Voiture RC/Arduino Nano scheme.png differ diff --git a/Documentation/Pre-projet/Voiture RC/Arduino Nano scheme.psd b/Documentation/Pre-projet/Voiture RC/Arduino Nano scheme.psd new file mode 100644 index 0000000000000000000000000000000000000000..069520fe5af68d947beba564bb88847f2aa044c4 Binary files /dev/null and b/Documentation/Pre-projet/Voiture RC/Arduino Nano scheme.psd differ diff --git a/Documentation/Pre-projet/Voiture RC/Code Arduino/Comande_preli/Comande_preli.ino b/Documentation/Pre-projet/Voiture RC/Code Arduino/Comande_preli/Comande_preli.ino new file mode 100644 index 0000000000000000000000000000000000000000..aec7d420d47406fbeec706d7049c103567d6528d --- /dev/null +++ b/Documentation/Pre-projet/Voiture RC/Code Arduino/Comande_preli/Comande_preli.ino @@ -0,0 +1,43 @@ +#define PontHRouge 10 +#define PontHNoir 9 + +int val = 0; + +void setup() { + + pinMode(PontHRouge,OUTPUT); + pinMode(PontHNoir,OUTPUT); + + Serial.begin(115200); + + while (!Serial) { + // some boards need to wait to ensure access to serial over USB + } + + Serial.println("Test des commandes PWM voiture"); + +} + +void loop() { + + if(val >= 0 ) + { + analogWrite(PontHRouge,abs(val)); + analogWrite(PontHNoir,abs(val)); + } + if(val < 0) + { + analogWrite(PontHNoir,abs(val)); + } + + if(Serial.available()){ + + val = Serial.readString().toInt(); + + Serial.println(val); + } + + + + +} diff --git a/Documentation/Pre-projet/Voiture RC/Code Arduino/GettingStarted/GettingStarted.ino b/Documentation/Pre-projet/Voiture RC/Code Arduino/GettingStarted/GettingStarted.ino new file mode 100644 index 0000000000000000000000000000000000000000..d2df72a44d8d2b5519c7c86461a3dc82c9cf83ce --- /dev/null +++ b/Documentation/Pre-projet/Voiture RC/Code Arduino/GettingStarted/GettingStarted.ino @@ -0,0 +1,154 @@ +/* + * See documentation at https://nRF24.github.io/RF24 + * See License information at root directory of this library + * Author: Brendan Doherty (2bndy5) + */ + +/** + * A simple example of sending data from 1 nRF24L01 transceiver to another. + * + * This example was written to be used on 2 devices acting as "nodes". + * Use the Serial Monitor to change each node's behavior. + */ +#include <SPI.h> +#include "printf.h" +#include "RF24.h" + +// instantiate an object for the nRF24L01 transceiver +RF24 radio(8, 7); // using pin 7 for the CE pin, and pin 8 for the CSN pin + +// Let these addresses be used for the pair +uint8_t address[][6] = { "1Node", "2Node" }; +// It is very helpful to think of an address as a path instead of as +// an identifying device destination + +// to use different addresses on a pair of radios, we need a variable to +// uniquely identify which address this radio will use to transmit +bool radioNumber = 1; // 0 uses address[0] to transmit, 1 uses address[1] to transmit + +// Used to control whether this node is sending or receiving +bool role = false; // true = TX role, false = RX role + +// For this example, we'll be using a payload containing +// a single float number that will be incremented +// on every successful transmission +float payload = 0.0; + +void setup() { + + Serial.begin(115200); + while (!Serial) { + // some boards need to wait to ensure access to serial over USB + } + + // initialize the transceiver on the SPI bus + if (!radio.begin()) { + Serial.println(F("radio hardware is not responding!!")); + while (1) {} // hold in infinite loop + } + + // print example's introductory prompt + Serial.println(F("RF24/examples/GettingStarted")); + + // To set the radioNumber via the Serial monitor on startup + Serial.println(F("Which radio is this? Enter '0' or '1'. Defaults to '0'")); + while (!Serial.available()) { + // wait for user input + } + char input = Serial.parseInt(); + radioNumber = input == 1; + Serial.print(F("radioNumber = ")); + Serial.println((int)radioNumber); + + // role variable is hardcoded to RX behavior, inform the user of this + Serial.println(F("*** PRESS 'T' to begin transmitting to the other node")); + + // Set the PA Level low to try preventing power supply related problems + // because these examples are likely run with nodes in close proximity to + // each other. + radio.setPALevel(RF24_PA_LOW); // RF24_PA_MAX is default. + + // save on transmission time by setting the radio to only transmit the + // number of bytes we need to transmit a float + radio.setPayloadSize(sizeof(payload)); // float datatype occupies 4 bytes + + // set the TX address of the RX node into the TX pipe + radio.openWritingPipe(address[radioNumber]); // always uses pipe 0 + + // set the RX address of the TX node into a RX pipe + radio.openReadingPipe(1, address[!radioNumber]); // using pipe 1 + + // additional setup specific to the node's role + if (role) { + radio.stopListening(); // put radio in TX mode + } else { + radio.startListening(); // put radio in RX mode + } + + // For debugging info + // printf_begin(); // needed only once for printing details + // radio.printDetails(); // (smaller) function that prints raw register values + // radio.printPrettyDetails(); // (larger) function that prints human readable data + +} // setup + +void loop() { + + if (role) { + // This device is a TX node + + unsigned long start_timer = micros(); // start the timer + bool report = radio.write(&payload, sizeof(float)); // transmit & save the report + unsigned long end_timer = micros(); // end the timer + + if (report) { + Serial.print(F("Transmission successful! ")); // payload was delivered + Serial.print(F("Time to transmit = ")); + Serial.print(end_timer - start_timer); // print the timer result + Serial.print(F(" us. Sent: ")); + Serial.println(payload); // print payload sent + payload += 0.01; // increment float payload + } else { + Serial.println(F("Transmission failed or timed out")); // payload was not delivered + } + + // to make this example readable in the serial monitor + delay(1000); // slow transmissions down by 1 second + + } else { + // This device is a RX node + + uint8_t pipe; + if (radio.available(&pipe)) { // is there a payload? get the pipe number that recieved it + uint8_t bytes = radio.getPayloadSize(); // get the size of the payload + radio.read(&payload, bytes); // fetch payload from FIFO + Serial.print(F("Received ")); + Serial.print(bytes); // print the size of the payload + Serial.print(F(" bytes on pipe ")); + Serial.print(pipe); // print the pipe number + Serial.print(F(": ")); + Serial.println(payload); // print the payload's value + } + } // role + + if (Serial.available()) { + // change the role via the serial monitor + + char c = toupper(Serial.read()); + if (c == 'T' && !role) { + // Become the TX node + + role = true; + Serial.println(F("*** CHANGING TO TRANSMIT ROLE -- PRESS 'R' TO SWITCH BACK")); + radio.stopListening(); + + } else if (c == 'R' && role) { + // Become the RX node + + role = false; + Serial.println(F("*** CHANGING TO RECEIVE ROLE -- PRESS 'T' TO SWITCH BACK")); + radio.startListening(); + } + } + +} // loop diff --git a/Documentation/Pre-projet/Voiture RC/Code Arduino/Test_Direction/Test_Direction.ino b/Documentation/Pre-projet/Voiture RC/Code Arduino/Test_Direction/Test_Direction.ino new file mode 100644 index 0000000000000000000000000000000000000000..8e496d04d02ae8871621a88b907e06e222785b57 --- /dev/null +++ b/Documentation/Pre-projet/Voiture RC/Code Arduino/Test_Direction/Test_Direction.ino @@ -0,0 +1,55 @@ +#define DirPin A6 +// Droite 176 Gauche 850 + +#define PontG 5 + +#define PontD 6 + + + +int val = 0; + +int aim = 500; + +void setup() { + // put your setup code here, to run once: + Serial.begin(9600); + +} + +void loop() { + // put your main code here, to run repeatedly: + +if(Serial.available()){ + + aim = Serial.readString().toInt(); + Serial.println(aim); +} + + if(val < aim-50) + { + + analogWrite(PontG,100); + analogWrite(PontD,0); + } + + else if(val > aim+50) + { + + analogWrite(PontD,100); + analogWrite(PontG,0); + } + else + { + analogWrite(PontD,0); + analogWrite(PontG,0); + } + + + val= analogRead(DirPin); + Serial.println(val); + + //analogWrite(PontG,100); + + +} diff --git a/Documentation/Pre-projet/Voiture RC/RC-presentation.tex b/Documentation/Pre-projet/Voiture RC/RC-presentation.tex new file mode 100644 index 0000000000000000000000000000000000000000..e0ac49a9fbd393fbcf88bde63d00f349bb185d9b --- /dev/null +++ b/Documentation/Pre-projet/Voiture RC/RC-presentation.tex @@ -0,0 +1,85 @@ +\documentclass{EPSA-rap-template} + +\type{Présentation} + +\titresize{\LARGE} % ne pas hésiter a changer la taille : +%\normalsize +%\large +%\Large +%\LARGE +%\huge +%\Huge +%\HUGE + +\titre{Voiture RC} + +\departement{Recherche} + +\auteurs{Eymeric \textbf{Chauchat}} + +\version{V1.0} + +\versionnement{ +\ver{V1.0}{26 aout 2022}{ ECT }{Rédaction initiale.}{1} +} + +\setuppack + +\begin{document} + +\fairepagedegarde +\newpage +\tableofcontents + +\section{Introduction} + +Ce document va présenter la voiture radio commandé qui va être utilisé pour le projet de Pae cette année et la manière dont elle a été préparé. Pour permettre un contrôle par un ordinateur ou plus largement par n'importe quel type de microprocesseur ou processeur, nous avons remplacé la carte de réception par une arduino allié d'une nrf24l01 et de quelques composants annexes. + +\section{Construction} + + +\subsection{Montage électrique} + +la nrf24l01 est montée de manière analogue au dongle usb sur l'arduino de la voiture (Figure \ref{fig:wiring}). Cependant nous avons aussi besoin de connection avec la distribution en puissance de la voiture. + +\begin{figure} +\centering +\includegraphics[width=0.4\textwidth]{Arduino Nano scheme.jpg} +\caption{Câblage de l'arduino nano} +\label{fig:wiring} +\end{figure} + +\section{Fonctionnement de la voiture} + +La voiture possède deux systèmes principaux, la direction et la propulsion. La direction est composée d'une nappe de 6 câbles : + +\begin{itemize} + +\item Noir : moteur - +\item Orange : moteur + +\item Vert pomme : Potentiomètre + +\item Blanc : Potentiomètre signal +\item Vert : Potentiomètre - +\item Bleu : isolation unused + +\end{itemize} + +à savoir que moteur - et moteur + sont contrôlé grâce à l'intermédiaire d'un pont en H sur la nappe. Le contrôle de la partie direction se fait simplement à partir de la donnée en angle du potentiomètre et de la sortie moteur. + +le deuxième système, la propulsion est composé de 4 câbles : + +\begin{itemize} +\item Blanc : Ground +\item Jaune : +8 V continu +\item Noir : première entrée pont en H +\item Rouge : deuxième entrée pont en H +\end{itemize} + +Le contrôle de la propulsion se fait au travers du câble Rouge et Noir. Pour avancer il faut mettre un signal sur le câble noir et pour reculer il faut mettre un signal sur le câble rouge et le câble noir. + +\section{Script de contrôle} + + + + +\end{document} \ No newline at end of file diff --git a/Documentation/Pre-projet/presentation-pae-autodrive.pdf b/Documentation/Pre-projet/presentation-pae-autodrive.pdf new file mode 100644 index 0000000000000000000000000000000000000000..bb8015119f3f709a0e9564f79034f4e6fe805c86 Binary files /dev/null and b/Documentation/Pre-projet/presentation-pae-autodrive.pdf differ diff --git "a/Documentation/Pre-projet/pr\303\251sentation du pae.pdf" "b/Documentation/Pre-projet/pr\303\251sentation du pae.pdf" new file mode 100644 index 0000000000000000000000000000000000000000..59b1ed0685fc107cbb6074399b69748e9f54300b Binary files /dev/null and "b/Documentation/Pre-projet/pr\303\251sentation du pae.pdf" differ diff --git "a/Documentation/Pre-projet/resume-travail-pr\303\251liminaire.pdf" "b/Documentation/Pre-projet/resume-travail-pr\303\251liminaire.pdf" new file mode 100644 index 0000000000000000000000000000000000000000..9aa5bff0c2bbce9a75e3133052dd7ed3d25e607d Binary files /dev/null and "b/Documentation/Pre-projet/resume-travail-pr\303\251liminaire.pdf" differ