Search results

  1. fukurou

    LG light cls list

  2. 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(){...
  3. 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 {...
  4. fukurou

    [MEDIA]

  5. fukurou

    golem build

    @ZORO
  6. 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() {...
  7. 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() {...
  8. 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 =...
  9. 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)...
  10. 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
  11. fukurou

    LG light cls list

    1 DiSkill 2 Chobit 3 DiHelloWorld would be the lightest option
  12. 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
  13. fukurou

    [MEDIA]

  14. fukurou

    [MEDIA]

  15. fukurou

    improved LG alg

    summoning kraken!
  16. fukurou

    golem build

    Ursaluna-Bloodmoon @ Aguav Berry Ability: Mind's Eye Tera Type: Normal EVs: 4 HP / 252 SpD / 252 Spe Timid Nature - Blood Moon - Earth Power - Moonblast - Calm Mind
  17. fukurou

    improved LG alg

    java ver updated, a few more touch ups needed
  18. fukurou

    improved LG alg

  19. fukurou

    golem build

    Sinistcha-Masterpiece @ Big Root Ability: Hospitality Shiny: Yes Tera Type: Grass EVs: 252 HP / 252 SpD IVs: 0 Atk - Matcha Gotcha - Nasty Plot - Shadow Ball - Stun Spore
  20. fukurou

    improved LG alg

    K I propagated the beef up. them numbers were missingno tier spooky but overall this is good
Top