Search results

  1. fukurou

    habit skill

    so we have 3 main parts to this: habits +- weeklies ToDos the 1st 2 we can use a size limited que. why limit it's size? for focus. 15 outta do it for the good habits 5 for the bad ones. we have a designated module for the to-dos, which can also contain expiration/event dates.
  2. fukurou

    habit skill

  3. fukurou

    [MEDIA]

  4. fukurou

    [MEDIA]

  5. fukurou

    [MEDIA]

  6. fukurou

    merch

    https://www.redbubble.com/shop/ap/153024852?ref=studio-promote
  7. fukurou

    LG light cls list

    got the cpp files ready
  8. fukurou

    LG light cls list

    #ifndef LivinGrimoireLight_H #define LivinGrimoireLight_H #include <Arduino.h> // Skill super class class Skill { public: Skill(){} virtual void inOut() { // override me } }; // list of Skill objects // only the Chobit cls uses it class ListOfSkills { public: byte...
  9. fukurou

    LG light cls list

  10. fukurou

    LG light cls list

    documentation added : :s60: // example Led class class Led{ private: byte pin; public: // c'tor Led(){this->pin = 13;} // c'tor with param Led(byte pin){ this->pin = pin; } // cls methods void init(){ pinMode(pin, OUTPUT); } void on(){ digitalWrite(pin, HIGH); } void off(){...
  11. fukurou

    LG light cls list

    yes!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! it works! 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); } }; class Skill {...
  12. fukurou

    [MEDIA]

  13. fukurou

    golem build

    @ZORO
  14. fukurou

    LG light cls list

    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); } }; class Skill { public: virtual void inOut() {...
  15. fukurou

    LG light cls list

    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); } }; class Skill { public: virtual void inOut() {...
  16. fukurou

    LG light cls list

    // C++ code // class List { public: byte length; byte data[16]; void append(byte item) { if (length < 16) data[length++] = item; } void remove(byte index) { if (index >= length) return; memmove(&data[index], &data[index+1], length - index - 1); length--; } }; List l { .length =...
  17. fukurou

    LG light cls list

    class Chobits: def __init__(self): super().__init__() self._dClasses: list[DiSkillV2] = [] # _ is a private access modifier def addSkill(self, skill: DiSkillV2) -> Chobits: # add a skill (builder design patterned func)) self._dClasses.append(skill)...
  18. fukurou

    LG light cls list

    class DiSkill: def __init__(self): pass # skill triggers and algorithmic logic def input(self, ear: str, skin: str, eye: str): pass
  19. fukurou

    LG light cls list

    1 DiSkill 2 Chobit 3 DiHelloWorld would be the lightest option
  20. fukurou

    golem build

    Gollum (Golem) (M) @ Liechi Berry Ability: Sturdy Shiny: Yes Tera Type: Normal EVs: 4 HP / 252 Atk / 252 Spe Jolly Nature - Earthquake - Rock Polish - Explosion - Stone Edge
Top