Post Reply 
The ultimate partner for the HP Prime G2 - The Arduino Leonardo.
11-19-2023, 08:22 AM
Post: #34
RE: The ultimate partner for the HP Prime G2 - The Arduino Leonardo.
Bonjour

J'ai voulu essayer de limiter le nombre de données envoyées depuis l'Arduino
avec le second argument de RawHID.write(), mais je reçois quand même 64 valeurs.
Du coup je ne comprends pas à quoi sert ce second argument ?

Voici mon code :

Hello

I tried to limit the amount of data sent from the Arduino
with the second argument to RawHID.write(), but I still receive 64 values.
So I don't understand what the second argument is for?

Here's my code:
Code:

void loop() {
  // put your main code here, to run repeatedly:
    for (int i=0; i<6; i++){
       k[i]=i*2;
    }
    auto com=RawHID.available();
    if (com)
    {
     j=RawHID.read();
      if (j==255) {
   
        RawHID.write(k,6);
      }
    j=0; 
    }
}

Sorry for my english
Find all posts by this user
Quote this message in a reply
Post Reply 


Messages In This Thread
RE: The ultimate partner for the HP Prime G2 - The Arduino Leonardo. - Tyann - 11-19-2023 08:22 AM



User(s) browsing this thread: 2 Guest(s)