1 / 27

智慧電子應用設計導論 (1/3) Arduino Programming Language

智慧電子應用設計導論 (1/3) Arduino Programming Language. Chin-Shiuh Shieh ( 謝欽旭 ) http://bit.kuas.edu.tw/~csshieh Department of Electronic Engineering National Kaohsiung University of Applied Sciences, Taiwan. Arduino Programming Language. Arduino – Tutorials http://arduino.cc/en/Tutorial/HomePage

oberon
Download Presentation

智慧電子應用設計導論 (1/3) Arduino Programming Language

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. 智慧電子應用設計導論(1/3)Arduino Programming Language Chin-Shiuh Shieh (謝欽旭) http://bit.kuas.edu.tw/~csshieh Department of Electronic Engineering National Kaohsiung University of Applied Sciences, Taiwan C.-S. Shieh, EC, KUAS, Taiwan

  2. Arduino Programming Language • Arduino – Tutorials • http://arduino.cc/en/Tutorial/HomePage • Arduino - Reference • http://arduino.cc/en/Reference/HomePage • Arduino – Libraries • http://arduino.cc/en/Reference/Libraries C.-S. Shieh, EC, KUAS, Taiwan

  3. Structure • setup() • loop() C.-S. Shieh, EC, KUAS, Taiwan

  4. Structure - Control Structures • if • if...else • for • switch case • while • do... while • break • continue • return • goto C.-S. Shieh, EC, KUAS, Taiwan

  5. Structure - Further Syntax • ; (semicolon) • {} (curly braces) • // (single line comment) • /* */ (multi-line comment) • #define • #include C.-S. Shieh, EC, KUAS, Taiwan

  6. Structure - Arithmetic Operators • = (assignment operator) • + (addition) • - (subtraction) • * (multiplication) • / (division) • % (modulo) C.-S. Shieh, EC, KUAS, Taiwan

  7. Structure - Comparison Operators • == (equal to) • != (not equal to) • < (less than) • > (greater than) • <= (less than or equal to) • >= (greater than or equal to) C.-S. Shieh, EC, KUAS, Taiwan

  8. Structure - Boolean Operators • && (and) • || (or) • ! (not) C.-S. Shieh, EC, KUAS, Taiwan

  9. Structure - Pointer Access Operators • * dereference operator • & reference operator C.-S. Shieh, EC, KUAS, Taiwan

  10. Structure - Bitwise Operators • & (bitwise and) • | (bitwise or) • ^ (bitwise xor) • ~ (bitwise not) • << (bitshift left) • >> (bitshift right) C.-S. Shieh, EC, KUAS, Taiwan

  11. Structure - Compound Operators • ++ (increment) • -- (decrement) • += (compound addition) • -= (compound subtraction) • *= (compound multiplication) • /= (compound division) • &= (compound bitwise and) • |= (compound bitwise or) C.-S. Shieh, EC, KUAS, Taiwan

  12. Variables - Constants • HIGH | LOW • INPUT | OUTPUT| INPUT_PULLUP • true | false • integer constants • floating point constants C.-S. Shieh, EC, KUAS, Taiwan

  13. Variables - Data Types • void • boolean • char • unsigned char • byte • int • unsigned int • word • long • unsigned long • float • double • string - char array • String - object • array C.-S. Shieh, EC, KUAS, Taiwan

  14. Variables - Conversion • char() • byte() • int() • word() • long() • float() C.-S. Shieh, EC, KUAS, Taiwan

  15. Variables - Variable Scope & Qualifiers • variable scope • static • volatile • const C.-S. Shieh, EC, KUAS, Taiwan

  16. Variables - Utilities • sizeof() C.-S. Shieh, EC, KUAS, Taiwan

  17. Functions - Digital I/O • pinMode() • digitalWrite() • digitalRead() C.-S. Shieh, EC, KUAS, Taiwan

  18. Functions - Analog I/O • analogReference() • analogRead() • analogWrite() - PWM C.-S. Shieh, EC, KUAS, Taiwan

  19. Functions - Advanced I/O • tone() • noTone() • shiftOut() • shiftIn() • pulseIn() • pulseIn(2,HIGH); C.-S. Shieh, EC, KUAS, Taiwan

  20. Functions - Time • millis() • micros() • delay() • delayMicroseconds() C.-S. Shieh, EC, KUAS, Taiwan

  21. Functions - Math • min() • max() • abs() • constrain() • map() • pow() • sqrt() C.-S. Shieh, EC, KUAS, Taiwan

  22. Functions - Trigonometry • sin() • cos() • tan() C.-S. Shieh, EC, KUAS, Taiwan

  23. Functions - Random Numbers • randomSeed() • random() C.-S. Shieh, EC, KUAS, Taiwan

  24. Functions - Bits and Bytes • lowByte() • highByte() • bitRead() • bitWrite() • bitSet() • bitClear() • bit() C.-S. Shieh, EC, KUAS, Taiwan

  25. Functions - External Interrupts • attachInterrupt() • detachInterrupt() C.-S. Shieh, EC, KUAS, Taiwan

  26. Functions - Interrupts • interrupts() • noInterrupts() C.-S. Shieh, EC, KUAS, Taiwan

  27. Functions - Communication • Serial • Stream C.-S. Shieh, EC, KUAS, Taiwan

More Related