Search results

  1. fukurou

    [MEDIA]

  2. fukurou

    [MEDIA]

  3. fukurou

    👨‍💻 dev arduino cheat sheet codes

    div : / division % modulo
  4. fukurou

    [MEDIA]

  5. fukurou

    [MEDIA]

  6. fukurou

    [MEDIA]

  7. fukurou

    [MEDIA]

  8. fukurou

    and I wonder

  9. fukurou

    👨‍💻 dev arduino cheat sheet codes

    classes: class Led{ private: byte pin; public: Led(){this->pin = 13;} Led(byte pin){ this->pin = pin; } void init(){ pinMode(pin, OUTPUT); } void on(){ digitalWrite(pin, HIGH); } void off(){ digitalWrite(pin, LOW); } }; Led led1; //...
  10. fukurou

    👨‍💻 dev arduino cheat sheet codes

    conditionals if (condition) {} else if (condition2) {} else {} /* Find max(a, b): */ max = ( a > b ) ? a : b; functions int triple(int a){ return a *3; } //int arr[array_size] // to pass array param int times(int a, int b){ return a * b; } random int randNumber; void setup() {...
  11. fukurou

    👨‍💻 dev arduino cheat sheet codes

    variables int led = 13; // implicit var declaration bool ledState1 = false; const float pi = 3.14; #define c1 4 // const declaration String s = "hello"; N-dimentional arrays int b[ 2 ][ 2 ] = { { 1, 2 }, { 3, 4 } }; int b[ 2 ][ 2 ]; b[0][0] = 10;// item in array loops for(int i=0; i<7; i++)...
  12. fukurou

    [MEDIA]

  13. fukurou

    and I wonder

    Arduino UNO has 32kB of Flash memory which is sufficient to write thousands of lines of code. Normally while writing Arduino code SRAM is the most valuable memory on Arduino boards. Arduino UNO has only 2kB of SRAM which equals 2048 bytes.
  14. fukurou

    and I wonder

  15. fukurou

    and I wonder

    an arduino is a supplementary element but still, can it carry an entire LG?
  16. fukurou

    and I wonder

    is there merit to running a LivinGrimoire only on an Arduino?
Top