Search results

  1. fukurou

    [MEDIA]

  2. fukurou

    [MEDIA]

  3. fukurou

    [MEDIA]

  4. fukurou

    blink and jizz loop

    shit in the ass! :s72: :s72: :s72: :s72: :s72:
  5. 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...
  6. fukurou

    blink and jizz loop

  7. fukurou

    Why DQ3 censorship may be a good thing

    I liked her sugar tits tho
  8. 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...
  9. fukurou

    [MEDIA]

  10. fukurou

    [MEDIA]

  11. 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...
  12. fukurou

    try posting

    good
  13. fukurou

    try posting

    @Artbyrobot
  14. 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)")
  15. 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)")
  16. fukurou

    [MEDIA]

  17. fukurou

    project 2501

  18. 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__ ==...
  19. fukurou

    [MEDIA]

  20. fukurou

    project 2501

    actually: class Modifier: def modify(self, obj): obj.value += 10 class MyObject: def __init__(self, value): self.value = value def __str__(self): return f"MyObject with value {self.value}" # Create instances my_obj = MyObject(5) modifier = Modifier()...
Top