IdentifiantMot de passe
Loading...
Mot de passe oublié ?Je m'inscris ! (gratuit)
Navigation

Inscrivez-vous gratuitement
pour pouvoir participer, suivre les réponses en temps réel, voter pour les messages, poser vos propres questions et recevoir la newsletter

Arduino Discussion :

T-Display-S3 erreur à la compilation


Sujet :

Arduino

  1. #1
    Membre éprouvé
    Inscrit en
    Juillet 2004
    Messages
    932
    Détails du profil
    Informations forums :
    Inscription : Juillet 2004
    Messages : 932
    Par défaut T-Display-S3 erreur à la compilation
    Bonjour à tous

    j'essaie de compiler un exemple associer au T-Display-S3

    mais j'ai une erreur dont je ne connais la signification

    format '%s' expects argument of type 'char*', but argument 3 has type 'String' [-Werror=format=] en lignes 251 et 269

    j'ai tente de résoudre le pb en mettant en lieu et place de : String(chDayofWeek) => (char *)chDayofWeek mais sans resultat

    Pouvez-vous me donner quelques conseils pour résoudre sur cette erreur svp ?

    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    27
    28
    29
    30
    31
    32
    33
    34
    35
    36
    37
    38
    39
    40
    41
    42
    43
    44
    45
    46
    47
    48
    49
    50
    51
    52
    53
    54
    55
    56
    57
    58
    59
    60
    61
    62
    63
    64
    65
    66
    67
    68
    69
    70
    71
    72
    73
    74
    75
    76
    77
    78
    79
    80
    81
    82
    83
    84
    85
    86
    87
    88
    89
    90
    91
    92
    93
    94
    95
    96
    97
    98
    99
    100
    101
    102
    103
    104
    105
    106
    107
    108
    109
    110
    111
    112
    113
    114
    115
    116
    117
    118
    119
    120
    121
    122
    123
    124
    125
    126
    127
    128
    129
    130
    131
    132
    133
    134
    135
    136
    137
    138
    139
    140
    141
    142
    143
    144
    145
    146
    147
    148
    149
    150
    151
    152
    153
    154
    155
    156
    157
    158
    159
    160
    161
    162
    163
    164
    165
    166
    167
    168
    169
    170
    171
    172
    173
    174
    175
    176
    177
    178
    179
    180
    181
    182
    183
    184
    185
    186
    187
    188
    189
    190
    191
    192
    193
    194
    195
    196
    197
    198
    199
    200
    201
    202
    203
    204
    205
    206
    207
    208
    209
    210
    211
    212
    213
    214
    215
    216
    217
    218
    219
    220
    221
    222
    223
    224
    225
    226
    227
    228
    229
    230
    231
    232
    233
    234
    235
    236
    237
    238
    239
    240
    241
    242
    243
    244
    245
    246
    247
    248
    249
    250
    251
    252
    253
    254
    255
    256
    257
    258
    259
    260
    261
    262
    263
    264
    265
    266
    267
    268
    269
    270
    271
    272
    273
    274
    275
    276
    277
    278
    279
    280
    281
    282
    283
    284
    285
    286
    287
    288
    289
    290
    291
    292
    293
    294
    295
    296
    297
    298
    299
    300
    301
    302
    303
    304
    305
    306
    307
    308
    309
    310
    311
    //////////////////////////////////////////////////////////////////////////////////////////////////////////////
    //                                                                                                          //
    //                                           T-Display-S3 Clock                                             //
    //                                                                                                          //
    //                                          Copyright © 2023 by                                             //
    //                                        Zumwalt Properties, LLC.                                          //
    //                                          All Rights Reserved.                                            //
    //                                                                                                          //
    //          This software is for NON COMMERCIAL USE ONLY in accordance with the licensing agreement         //
    //                                     as published on this website.                                        //
    //                                                                                                          //
    //////////////////////////////////////////////////////////////////////////////////////////////////////////////
     
    //          
    // T-Display-S3 Clock Parts List.
    //
    //  1) One lilygo T-Display-S3.
    //  2) One 3.7V 1000ma lithium rechargable battery with 2 pin JST1.25 connector.
    //
     
    //////////////////////////////////////////////////////////////////////////////////////////////////////////////
    //
    // Included files.
    //
    //////////////////////////////////////////////////////////////////////////////////////////////////////////////
     
    #include "TFT_eSPI.h"
    #include <WiFi.h>
    #include "time.h"
    #include "Greg on pole small.h"
    #include "settings.h"
     
    //////////////////////////////////////////////////////////////////////////////////////////////////////////////
    //
    // Global constants..
    //
    //////////////////////////////////////////////////////////////////////////////////////////////////////////////
     
    // Display.
     
    #define     DISPLAY_HEIGHT          170                         // T-Display-S3 display height in pixels.
    #define     DISPLAY_WIDTH           320                         // T-Display-S3 display width in pixels.
    #define     DISPLAY_BRIGHTNESS_MAX  252                         // T-Display-S3 display brightness maximum.
    #define     DISPLAY_BRIGHTNESS_MIN  0                           // T-Display-S3 display brightness minimum.
     
    // Sprites.
     
    #define     SPRITE_BATTERY_FONT     2                           // Battery sprite font size.
    #define     SPRITE_BATTERY_HEIGHT   30                          // Battery sprite height in pixels.
    #define     SPRITE_BATTERY_WIDTH    100                         // Battery sprite width in pixels.
    #define     SPRITE_DATE_FONT        4                           // Date sprite font size.
    #define     SPRITE_DATE_HEIGHT      40                          // Date sprite height in pixels.
    #define     SPRITE_DATE_WIDTH       200                         // Date sprite width in pixels.
    #define     SPRITE_TIME_FONT        6                           // Time sprite font size.
    #define     SPRITE_TIME_HEIGHT      40                          // Time sprite height in pixels.
    #define     SPRITE_TIME_WIDTH       200                         // Time sprite width in pixels.
     
    //////////////////////////////////////////////////////////////////////////////////////////////////////////////
    //
    // Global variables.
    //
    //////////////////////////////////////////////////////////////////////////////////////////////////////////////
     
    // Battery.
     
    uint32_t    uVolt;                                              // Battery voltage.
     
    // Display (T-Display-S3 lcd display).
     
    TFT_eSPI    lcd = TFT_eSPI();                                   // T-Display-S3 lcd.
    int         lcdBacklighBrightness = DISPLAY_BRIGHTNESS_MAX;     // T-Display-S3 brightness.
     
    // Sprites.
     
    TFT_eSprite spriteBackground = TFT_eSprite(& lcd);              // Background sprite.
    TFT_eSprite spriteBattery = TFT_eSprite(& lcd);                 // Battery sprite.
    TFT_eSprite spriteDate = TFT_eSprite(& lcd);                    // Date sprite.
    TFT_eSprite spriteTime = TFT_eSprite(& lcd);                    // Time sprite.
     
    // Time.
     
    char        chDayOfMonth[3];                                    // Day of month (0 through 31).
    const int   nDaylightOffsetSeconds = 3600;                      // Daylight savings time offset.
    char        chDayofWeek[4];                                     // Day of week (Sunday through Saturday).
    const long  lGmtOffsetSeconds = +1 * 3600;                      // Time zone offset.
    char        chHour[3];                                          // Hour.
    char        chMinute[3];                                        // Minute.
    char        chMonth[4];                                         // Month.
    const char* chNtpServer = "pool.ntp.org";                       // NTP time server.
    char        chSecond[3];                                        // Second.
    char        chYear[5];                                          // Year.
     
    // Wifi.
     
    String      stringIP;                                           // IP address.
    const char* chPassword = WIFI_PASS;                  // Your router password.
    const char* chSsid     = WIFI_SSID;                      // Your router SSID.
     
    //////////////////////////////////////////////////////////////////////////////////////////////////////////////
    //
    // setup().
    //
    //////////////////////////////////////////////////////////////////////////////////////////////////////////////
     
    void setup()
    {
      // Serial.
     
      Serial.begin(115200);
     
      // Analog.
     
      analogReadResolution(12);
     
      // LCD.
     
      lcd.init();
      lcd.setRotation(1);
      ledcSetup(0, 10000, 8);
      ledcAttachPin(38, 0);
      ledcWrite(0, lcdBacklighBrightness);
     
      // Battery.
     
        // Sprite.
     
        spriteBattery.createSprite(SPRITE_BATTERY_WIDTH, SPRITE_BATTERY_HEIGHT);
        spriteBattery.setSwapBytes(true);
        spriteBattery.setTextColor(TFT_BLACK, TFT_WHITE);
     
        // Enable the modeul to operate from an external LiPo battery.
     
        pinMode(15, OUTPUT);
        digitalWrite(15, 1);
     
      // Background sprite.
     
      spriteBackground.createSprite(DISPLAY_WIDTH, DISPLAY_HEIGHT);
      spriteBackground.setSwapBytes(true);
      spriteBackground.setTextColor(TFT_WHITE, TFT_BLACK);
     
      // Date sprite.
     
      spriteDate.createSprite(SPRITE_DATE_WIDTH, SPRITE_DATE_HEIGHT);
      spriteDate.setSwapBytes(true);
      spriteDate.setTextColor(TFT_WHITE, TFT_BLACK);
     
      // Time sprite.
     
      spriteTime.createSprite(SPRITE_TIME_WIDTH, SPRITE_TIME_HEIGHT);
      spriteTime.setSwapBytes(true);
      spriteTime.setTextColor(TFT_WHITE, TFT_BLACK);
     
      // Wifi.
     
        // Start wifi.
     
        lcd.fillScreen(TFT_BLACK);
        lcd.drawString("Awaiting wifi connection...", 0, 0, 2);
        WiFi.begin(chSsid, chPassword);
     
        // Wait for a connection.
     
        while (WiFi.status() != WL_CONNECTED)
        {
          delay(500);
          Serial.print(".");
        }
     
        // Connected.
     
        Serial.println("\nWiFi connected.");
        stringIP = WiFi.localIP().toString();
        lcd.fillScreen(TFT_BLACK);
        lcd.drawString("Wifi connected to " + stringIP + ".", 0, 0, 2);
        delay(2000);
     
      // Time.
     
      configTime(lGmtOffsetSeconds, nDaylightOffsetSeconds, chNtpServer);
    }
     
    //////////////////////////////////////////////////////////////////////////////////////////////////////////////
    //
    // loop().
    //
    //////////////////////////////////////////////////////////////////////////////////////////////////////////////
     
    void loop(void)
    {
      // Local variables.
     
      static  char                chBuffer[81];
      static  struct              tm timeinfo;
     
      // Check for time and date availability.
     
      if(getLocalTime(& timeinfo))
      {
        // Time and date available, obtain hours, minutes and seconds.
     
        strftime(chHour, sizeof(chHour), "%H", & timeinfo);
        strftime(chMinute, sizeof(chMinute), "%M", & timeinfo);
        strftime(chSecond, sizeof(chSecond), "%S", & timeinfo);
     
        // Then obtain day of week, day of month, month and year.
     
        strftime(chDayofWeek, sizeof(chDayofWeek), "%A", & timeinfo);
        strftime(chDayOfMonth, sizeof(chDayOfMonth), "%d", & timeinfo);
        strftime(chMonth, sizeof(chMonth), "%B", & timeinfo);
        strftime(chYear, sizeof(chYear), "%Y", & timeinfo);
      }
     
      // Allow the user to adjust backlight brightness.
     
      if((digitalRead(14) == 0) && (lcdBacklighBrightness < DISPLAY_BRIGHTNESS_MAX))
      {
        // Increase.
     
        lcdBacklighBrightness += 4;
        ledcSetup(0, 10000, 8);
        ledcAttachPin(38, 0);
        ledcWrite(0, lcdBacklighBrightness);
      }
      else if((digitalRead(0)) == 0 && (lcdBacklighBrightness > DISPLAY_BRIGHTNESS_MIN))
      {
        // Decrease.
     
        lcdBacklighBrightness -= 4;
        ledcSetup(0, 10000, 8);
        ledcAttachPin(38, 0);
        ledcWrite(0, lcdBacklighBrightness);
      }
     
      // Transfer "Greg_on_a pole_small" to the background sprite in order to "erase" the background sprite.
     
      spriteBackground.pushImage(0, 0, DISPLAY_WIDTH, DISPLAY_HEIGHT, Greg_on_pole_small);
     
      // Create and draw the time sprite onto the background sprite.
     
        // Convert time from 24 hour to 12 hour (optional).
     
        int nTemp = atoi(chHour);
        if(nTemp > 12)
          nTemp -= 12;
        sprintf(chHour, "%2d", nTemp);
     
        // Update the time sprite.
     
        spriteTime.fillRect(0, 0, SPRITE_TIME_WIDTH, SPRITE_TIME_HEIGHT, TFT_BLACK);
        sprintf(chBuffer, "%s:%s:%s", String(chHour), String(chMinute), String(chSecond));
        spriteTime.drawString(String(chBuffer), (SPRITE_TIME_WIDTH / 2) - (lcd.textWidth(chBuffer, SPRITE_TIME_FONT) / 2), 0, SPRITE_TIME_FONT);
     
        // Transfer the time sprite onto the background sprite with black transparency.
     
        spriteTime.pushToSprite(& spriteBackground, (DISPLAY_WIDTH / 2) - (SPRITE_TIME_WIDTH / 2), 30, TFT_BLACK);
     
      // Create and draw the date sprite onto the background sprite.
     
        // Leading zero supress the day of month.
     
        nTemp = atoi(chDayOfMonth);
        if(nTemp < 10)
          sprintf(chDayOfMonth, "%2d", nTemp);
     
        // Update the date sprite
     
        spriteDate.fillRect(0, 0, SPRITE_DATE_WIDTH, SPRITE_DATE_HEIGHT, TFT_BLACK);
        sprintf(chBuffer, "%s, %s %s, %s", String(chDayofWeek), String(chMonth), String(chDayOfMonth), String(chYear));
        spriteDate.drawString(String(chBuffer), (SPRITE_DATE_WIDTH / 2) - (lcd.textWidth(chBuffer, SPRITE_DATE_FONT) / 2), 0, SPRITE_DATE_FONT);
     
        // Transfer the date sprite onto the background sprite with black transparency.
     
        spriteDate.pushToSprite(& spriteBackground, (DISPLAY_WIDTH / 2) - (SPRITE_DATE_WIDTH / 2), 140, TFT_BLACK);
     
      // Update the battery sprite.
     
        // Read the battery voltage.
     
        uVolt = (analogRead(4) * 2 * 3.3 * 1000) / 4096;
     
        // Upeate the battery sprite.
     
        spriteBattery.fillRect(0, 0, SPRITE_BATTERY_WIDTH, SPRITE_BATTERY_HEIGHT, TFT_WHITE);
        spriteBattery.drawString(String(uVolt / 1000) + "." + String(uVolt % 1000) + " vDC", 0, 0, SPRITE_BATTERY_FONT);
     
        // Transfer the battery sprite onto the background sprite with white transparency.
     
        spriteBattery.pushToSprite(& spriteBackground, 0, 0, TFT_WHITE);
     
      // Update the backlight brightness bar if either button is pressed.
     
      if((digitalRead(14) == 0) || (digitalRead(0) == 0))
      {
        // Either button is pressed, display the backlight brightness bar.
     
        spriteBackground.fillRect(DISPLAY_WIDTH - 16, 
                                  DISPLAY_HEIGHT - (lcdBacklighBrightness * DISPLAY_HEIGHT / DISPLAY_BRIGHTNESS_MAX),
                                  16,
                                  lcdBacklighBrightness * DISPLAY_HEIGHT / DISPLAY_BRIGHTNESS_MAX,
                                  TFT_WHITE);
      }
     
      // With the background sprite now completed, transfer the background sprite to the LCD.
     
      spriteBackground.pushSprite(0, 0);
     
      // Delay 100 milliseconds.
     
      delay(100);
    }
    Mille mercis par avance
    pascal

  2. #2
    Expert confirmé

    Homme Profil pro
    mad scientist :)
    Inscrit en
    Septembre 2019
    Messages
    2 884
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : Etats-Unis

    Informations professionnelles :
    Activité : mad scientist :)

    Informations forums :
    Inscription : Septembre 2019
    Messages : 2 884
    Par défaut
    quand vous utilisez %s la fonction attend une c-string, c'est à dire un tableau de caractères terminé par un caractère nul.
    si vous passez une String (instance de la classe String) ça ne correspond pas et le compilateur se plaint

    dans l'absolu il suffirait de demander à la String sa c-string sous jacente
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
     
    String toto = "salut"
    char buffer[100];
    sprintf(buffer, "%s", toto.c_str());
    mais ici vous avez déjà semble-t-il des c-string donc au lieu de faire
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    sprintf(chBuffer, "%s:%s:%s", String(chHour), String(chMinute), String(chSecond));
    faites simplement
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    sprintf(chBuffer, "%s:%s:%s", chHour, chMinute, chSecond);

  3. #3
    Membre éprouvé
    Inscrit en
    Juillet 2004
    Messages
    932
    Détails du profil
    Informations forums :
    Inscription : Juillet 2004
    Messages : 932
    Par défaut
    Grand merci Jay M

    çà compile mieux mais il me fait maintenant une insulte ici en ligne 265

    => '%2d' directive writing between 2 and 11 bytes into a region of size 3 [-Werror=format-overflow=]

    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
     
    nTemp = atoi(chDayOfMonth);
        if(nTemp < 10)
          sprintf(chDayOfMonth, "%2d", nTemp);  // <===============
    j'avoue ne pas comprendre du tout le sens de l'erreur ....

  4. #4
    Expert confirmé

    Homme Profil pro
    mad scientist :)
    Inscrit en
    Septembre 2019
    Messages
    2 884
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : Etats-Unis

    Informations professionnelles :
    Activité : mad scientist :)

    Informations forums :
    Inscription : Septembre 2019
    Messages : 2 884
    Par défaut
    le compilateur n'est pas assez malin pour comprendre que nTemp est sans doute entre 1 et 10 et donc que ça tient sur 2 chiffres au max. (il se dit que si c'est négatif ça peut aller loin)
    Il vous dit que vous essayez d'écrire un entier qui peut faire entre 2 et 11 octets dans une zone mémoire qui n'a que 3 cases, et donc qu'il y a un gros risque de débordement mémoire

    le plus simple pour vous débarrasser de l'erreur serait d'augmenter la taille du buffer chDayOfMonth mais ce serait intéressant de voir si vous avez toujours l'erreur en faisant

    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
     
    nTemp = atoi(chDayOfMonth);
    if (nTemp > 0 && nTemp < 10) sprintf(chDayOfMonth, "%2d", nTemp);
    Sinon pourquoi transformez vous chDayOfMonth en entier pour le remettre en chaîne de caractère ?

  5. #5
    Membre éprouvé
    Inscrit en
    Juillet 2004
    Messages
    932
    Détails du profil
    Informations forums :
    Inscription : Juillet 2004
    Messages : 932
    Par défaut
    Encore un grand Merci Jay M

    çà va nettement mieux comme çà
    j'ai du aussi déclarer nTmep

    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
     
    int nTemp = atoi(chDayOfMonth);
    if (nTemp > 0 && nTemp < 10) sprintf(chDayOfMonth, "%2d", nTemp);
    et il a compilé sauf que maintenant il m'insulte avec un autre message que je n'ai jamais eu
    il ne reconnait pas la liaison série Com15 en liaison ESPTools je crois
    Images attachées Images attachées  

  6. #6
    Expert confirmé

    Homme Profil pro
    mad scientist :)
    Inscrit en
    Septembre 2019
    Messages
    2 884
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : Etats-Unis

    Informations professionnelles :
    Activité : mad scientist :)

    Informations forums :
    Inscription : Septembre 2019
    Messages : 2 884
    Par défaut
    Ça semble être une erreur au téléchargement… avez vous pu télécharger un petit code genre blink avec ce câble / cette carte / le même port USB?

  7. #7
    Membre éprouvé
    Inscrit en
    Juillet 2004
    Messages
    932
    Détails du profil
    Informations forums :
    Inscription : Juillet 2004
    Messages : 932
    Par défaut
    j'ai changé de câble par précaution , j'ai essayé d'autres exemples
    changé aussi le type de carte "LilyGO T-Display-S3" => "ESP32S3 dev Module"
    rien n'y fait , peut-être une mauvaise version "esptool"
    comment fait-on avec Arduino IDE pour pour change de version "esptool" svp ?

  8. #8
    Expert confirmé

    Homme Profil pro
    mad scientist :)
    Inscrit en
    Septembre 2019
    Messages
    2 884
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : Etats-Unis

    Informations professionnelles :
    Activité : mad scientist :)

    Informations forums :
    Inscription : Septembre 2019
    Messages : 2 884
    Par défaut
    donc si je comprends bien même un sketch vide (juste le setup() et la loop() ) ne se charge pas?

    On ne peut pas changer d'esptool dans l'IDE

    si vous utilisez la version 2.x, essayez avec la dernière version 1.x de l'IDE

    je n'ai pas cette carte donc je ne peux pas tester...

  9. #9
    Responsable Arduino et Systèmes Embarqués


    Avatar de f-leb
    Homme Profil pro
    Enseignant
    Inscrit en
    Janvier 2009
    Messages
    13 128
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Âge : 54
    Localisation : France, Sarthe (Pays de la Loire)

    Informations professionnelles :
    Activité : Enseignant

    Informations forums :
    Inscription : Janvier 2009
    Messages : 13 128
    Billets dans le blog
    47
    Par défaut
    Salut,

    Et si on se met en upload manuel avec les boutons BOOT et RST ?

    D'après la doc : https://github.com/Xinyuan-LilyGO/T-Display-S3#faq

    If the port cannot be found when uploading the program or the USB has been used for other functions, the port does not appear. Please enter the upload mode manually.
    1. Connect the board via the USB cable
    2. Press and hold the BOOT button , While still pressing the BOOT button, press RST
    3. Release the RST
    4. Release the BOOT button
    5. Upload sketch

  10. #10
    Membre éprouvé
    Inscrit en
    Juillet 2004
    Messages
    932
    Détails du profil
    Informations forums :
    Inscription : Juillet 2004
    Messages : 932
    Par défaut
    Bonjour f-leb


    j'ai essayé cette méthode mais dès que j'appuie sur BOOT cela m'inscrit le message
    pourtant j'entends bien l'USB se connecter ou se déconnecter comme cela se fait lorsqu'on raccorde un périphérique
    je précise aussi que le croquis "factory" tourne normalement et m'indique l'heure ntp
    et c'est justement en voulant changer de zone horaire que mon pb a commencé , il ne télécharge même pas
    un croquis avec "setup et "loop" seul

  11. #11
    Membre éprouvé
    Inscrit en
    Juillet 2004
    Messages
    932
    Détails du profil
    Informations forums :
    Inscription : Juillet 2004
    Messages : 932
    Par défaut
    Citation Envoyé par f-leb Voir le message
    Salut,

    Et si on se met en upload manuel avec les boutons BOOT et RST ?

    D'après la doc : https://github.com/Xinyuan-LilyGO/T-Display-S3#faq

    Bonjour à tous ,

    En fait la méthode ne semble pas fonctionner celle qui fonctionne est la suivante

    1) déconnecter le module
    2) Presser le bouton BOOT
    3) reconnecter le module
    4) lancer le téléchargement
    5) à la fin du téléchargement faire un RST

    Plusieurs essais semblent confirmer la méthode mais j'avoue ne pas comprendre pourquoi

Discussions similaires

  1. Erreur de compilation après modification du Uses
    Par DevelOpeR13 dans le forum Langage
    Réponses: 5
    Dernier message: 30/10/2007, 14h23
  2. Réponses: 2
    Dernier message: 23/09/2003, 14h32
  3. Réponses: 10
    Dernier message: 22/09/2003, 21h58
  4. Réponses: 4
    Dernier message: 27/08/2003, 21h34
  5. Réponses: 2
    Dernier message: 04/03/2003, 23h24

Partager

Partager
  • Envoyer la discussion sur Viadeo
  • Envoyer la discussion sur Twitter
  • Envoyer la discussion sur Google
  • Envoyer la discussion sur Facebook
  • Envoyer la discussion sur Digg
  • Envoyer la discussion sur Delicious
  • Envoyer la discussion sur MySpace
  • Envoyer la discussion sur Yahoo