Search results

  1. fukurou

    [MEDIA]

  2. fukurou

    👨‍💻 dev creamers of the corn

    creamers of the corn?! you mean team Fuki#4 ?!!! the legendary catalogers? shit in the ass man
  3. fukurou

    [MEDIA]

  4. fukurou

    [MEDIA]

  5. fukurou

    [MEDIA]

  6. fukurou

    blink and jizz loop

    shit in the ass! :s72: :s72: :s72: :s72: :s72:
  7. fukurou

    blink and jizz loop

    .h #ifndef DiBlinker_H #define DiBlinker_H // using Arduino hardware codes outside main: #include <Arduino.h> #include "LivinGrimoireLight.h" #include "DiHelloWorld.h" // example hello world by blinking default Led #13 once class DiBlinker : public Skill { private: Led _l1; public...
  8. fukurou

    blink and jizz loop

  9. fukurou

    Why DQ3 censorship may be a good thing

    I liked her sugar tits tho
  10. fukurou

    blink and jizz loop

    the Arduino only blinks the LED when it receives a command from the Python script. Arduino Code This code will wait for a command from the Python script to blink the LED: void setup() { // Initialize the built-in LED pin as an output pinMode(LED_BUILTIN, OUTPUT); // Start serial...
  11. fukurou

    [MEDIA]

  12. fukurou

    [MEDIA]

  13. fukurou

    atexit: a must have python code for Arduino interactions

    import serial import time import atexit class SerialReader: def __init__(self, port='COM3', baud_rate=9600, timeout=1): self.ser = serial.Serial(port, baud_rate, timeout=timeout) atexit.register(self.close) # Register the close method to be called on exit def...
  14. fukurou

    try posting

    good
  15. fukurou

    try posting

    @Artbyrobot
  16. fukurou

    project 2501

    # noinspection PyUnusedLocal def call_add_DLC_skills(brain: Brain): for file in os.listdir('.'): if file.endswith('.py') and 'DLC' in file: module_name = file[:-3] exec(f"import {module_name}") exec(f"{module_name}.add_DLC_skills(brain)")
  17. fukurou

    project 2501

    def call_add_DLC_skills(brain: Brain): for file in os.listdir('.'): if file.endswith('.py') and 'DLC' in file: module_name = file[:-3] exec(f"import {module_name}") exec(f"{module_name}.add_DLC_skills(brain)")
  18. fukurou

    [MEDIA]

  19. fukurou

    project 2501

  20. fukurou

    project 2501

    import os def call_helloworld_in_all_files(param:str): for file in os.listdir('.'): if file.endswith('.py') and 'DLC' in file: module_name = file[:-3] exec(f"import {module_name}") exec(f"{module_name}.helloworld('{param}')") if __name__ ==...
Top