Changes between Version 10 and Version 11 of SujetTP6-2016


Ignore:
Timestamp:
Mar 18, 2016, 12:34:01 PM (9 years ago)
Author:
franck
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • SujetTP6-2016

    v10 v11  
    9797=== Communication de base Sensor - baseSensor ===
    9898
    99 La documentation de la bibliothèque est [http://tmrh20.github.io/RF24/classRF24.html ici]
     99La documentation de la bibliothèque est [http://tmrh20.github.io/RF24/classRF24.html ici] dont voici un résumé :
    100100
     101* `     RF24 (uint8_t _cepin, uint8_t _cspin)`[[BR]]
     102  Configuration du module radio et du SPI, reçoit les numéros de broche cepin (radio) cspin (SPI Slave Select)
     103
     104* `bool         begin (void)`[[BR]]
     105  Démarrage du module radio
     106
     107* `void         startListening (void)`[[BR]]
     108 
     109* `void         stopListening (void)`[[BR]]
     110
     111* `bool         available (void)`[[BR]]
     112
     113* `void         read (void *buf, uint8_t len)`[[BR]]
     114
     115* `bool         write (const void *buf, uint8_t len)`[[BR]]
     116
     117* `void         openWritingPipe (const uint8_t *address)`[[BR]]
     118
     119* `void         openReadingPipe (uint8_t number, const uint8_t *address)`[[BR]]
    101120
    102121