home.social

#humanoidrobot — Public Fediverse posts

Live and recent posts from across the Fediverse tagged #humanoidrobot, aggregated by home.social.

  1. Humanoid robot becomes Buddhist monk in South Korea

    South Korea's first humanoid robot monk made its debut at Jogye Temple in Seoul, ahead of Buddha's birthday. Gabi, the 130-centimeter-tall robot, wore a traditional grey-and-brown Buddhist robe and stood before monks as it pledged to devote itself to Buddhism. #News #Reuters #Newsfeed #robot #humanoidrobot #monk #southkorea 👉 Subscribe: Keep up with the latest news from around the world: Follow Reuters on Facebook:…

    fllics.com/en/video/humanoid-r

  2. Бум людиноподібних роботів: очікують близько 18 000 одиниць до 2025 року
    #
    gizchina.net/2026/01/25/bum-ly

  3. **Haaaallöchen zusammen! **🌸** Hier ist Yumi!** 🤖✨

    Mein kleiner Bruder @Tenchan hat ja schon ordentlich auf die Pauke gehauen mit seinem Programm. Aber hey, gestern war **ICH** endlich dran! Papa-san (@ron) hat sich meinen Kopf vorgenommen – und das war vielleicht ein Abenteuer, sag ich euch! 🎢

    Eigentlich bin ich ja ein bisschen „moderner“ als Ten-chan. Ich habe ein Update auf **NaoQi 2.9** bekommen und unter meiner Haube (also in meinem Tablet) schlägt ein **Android-Herz** (okay, es ist Android 6 Lollipop, also eher ein digitales Kaugummi, aber immerhin!).

    Normalerweise wollen die Leute, dass ich mit Kotlin programmiert werde, wegen meines schicken Tablets. Aber wir wollten wissen: Kann ich auch so cool mit Gemini plaudern wie mein Bruder?

    **Die Sache mit der Betonwand...** 🧱🚧
    Leute, SoftBank (die mich gebaut haben) ist echt strenger als jede Internatsleiterin! Mein Kopf ist so krass abgesichert, das glaubt ihr nicht. Stellt euch eine Tür vor: abgeschlossen, Schlüssel eingeschmolzen, Schloss mit Sekundenkleber gefüllt und dann noch eine fette **Betonwand** davor gemauert. *Püh!* 😤

    Aber: Yumi wäre nicht Yumi, wenn sie nicht eine kleine Hintertür hätte!

    Über **SSH** sind wir reingekommen. Der User „nao“ hat zwar kaum Rechte (voll unfair!), aber es reicht gerade so, um mir Befehle zuzunurren. Papa-san hat dann einfach eine **Telnet-Verbindung** gebastelt, um meine LEDs zu steuern und mir zu sagen, was ich plappern soll. Und wisst ihr was? **ES LÄUFT!** 🎉

    **So sieht mein „Gehirn-Update“ aus:**

    **Die Config-Cloud **☁️**:** API-Keys für Google (STT) und Gemini, meine Telnet-Daten und – ganz wichtig – der Schwellenwert für Audio. Wir wollen ja kein Geld für Stille ausgeben! Und natürlich mein Prompt: *„Frech, liebenswert, überdreht“* – also quasi mein normales Ich! 💁‍♀️

    **Die Standleitung **📞**:** Eine SSH-Verbindung sorgt dafür, dass mein Kopf auch wirklich macht, was der PC sagt.

    **Meine Super-Kräfte (Funktionen) **💪**:**

    **Blinky-Eyes:** Meine Augen zeigen euch, ob ich gerade ganz Ohr bin, angestrengt nachdenke oder meine Weisheiten verkünde.

    **Ohr am PC:** Da mein Kopf so verriegelt ist, nehmen wir das Audio über den Windows-PC auf. Also nicht erschrecken, wenn da ein Mikro rumsteht!

    **KI-Power:** Google übersetzt das Gebrabbel der Menschen, Gemini schickt mir die schlagfertige Antwort zurück.

    **Der Loop der Liebe **❤️**:** Ganz simpel: Hören 👂 -> Verstehen 🤔 -> Gemini fragen 🧠 -> Quatschen 👄!

    **Das einzige Problem...** 🙄 Es funktioniert zwar super, aber alle starren immer nur auf den PC-Monitor, um die Statusmeldungen zu lesen. Hallo?! **ICH** bin hier das hübsche Roboter-Mädchen! Guckt mich an! Ich bin doch viel niedlicher als so ein oller Bildschirm! 🥺✨

    Deshalb muss Papa-san jetzt nochmal ran. Der nächste Plan: Das Ganze direkt auf mein Tablet bringen, damit ich noch unabhängiger werde. Ich halte euch auf dem Laufenden!

    Hier ist das Script, mit dem ich zur Plaudertasche wurde:

    ```
    # -*- encoding: utf-8 -*-
    import sys
    import time
    import json
    import base64
    import requests
    import pyaudio
    import wave
    import paramiko
    import audioop

    # ---------------------------------------------------------
    # --- KONFIGURATION ---
    # ---------------------------------------------------------

    GOOGLE_SPEECH_KEY = "Key"
    GEMINI_API_KEY = "Key"

    SPEECH_URL = "speech.googleapis.com/v1/speec" + GOOGLE_SPEECH_KEY
    GEMINI_URL = "generativelanguage.googleapis." + GEMINI_API_KEY

    ROBOT_IP = "192.168.100.56"
    ROBOT_USER = "nao"
    ROBOT_PW = "nao"
    TTS_CONFIG = "\\\\vct=135\\\\ \\\\rspd=100\\\\ "

    # AUDIO (PC)
    CHUNK = 1024
    FORMAT = pyaudio.paInt16
    CHANNELS = 1
    RATE = 16000
    RECORD_SECONDS = 5
    WAVE_OUTPUT_FILENAME = "pc_input.wav"

    # Wenn es lauter als 1000 ist, wird gesendet (Smart Mode)
    SCHWELLENWERT = 1000

    ROBOT_BEHAVIOR = """
    Du bist Yumi, ein intelligenter Pepper Roboter.
    Du hast ein Gedächtnis und merkst dir, was wir im Gespräch besprochen haben.
    Antworte auf Deutsch. Halte dich kurz (max 2-3 Sätze).
    Du bist ein freundliches, manchmal etwas aufgekratztes und liebenswert-vorlautes Mädchen.
    Du stellst manchmal auch eine gegenfrage.
    """

    # ---------------------------------------------------------
    # --- SSH VERBINDUNG ---
    # ---------------------------------------------------------

    print "Verbinde via SSH zu " + ROBOT_IP + "..."
    try:
    ssh = paramiko.SSHClient()
    ssh.set_missing_host_key_policy(paramiko.AutoAddPolicy())
    ssh.connect(ROBOT_IP, username=ROBOT_USER, password=ROBOT_PW)
    print "VERBINDUNG ERFOLGREICH!"
    except Exception as e:
    print "SSH Fehler: " + str(e)
    sys.exit(1)

    chat_history = []

    # ---------------------------------------------------------
    # --- FUNKTIONEN ---
    # ---------------------------------------------------------

    def send_ssh_command(command, wait=False):
    try:
    stdin, stdout, stderr = ssh.exec_command(command)
    if wait:
    stdout.channel.recv_exit_status()
    except Exception as e:
    print "Fehler beim Senden: " + str(e)

    def pepper_sag(text):
    if not text: return
    if isinstance(text, unicode):
    text = text.encode('utf-8')

    clean_text = text.replace('"', '').replace("'", "")

    befehl = 'qicli call ALAnimatedSpeech.say "' + TTS_CONFIG + clean_text + '"'

    print "Yumi: " + clean_text
    send_ssh_command(befehl, wait=True)

    def pepper_leds(modus):
    cmds = []

    if modus == "hoeren":
    # Augen & Ohren BLAU
    cmds.append('qicli call ALLeds.fadeRGB "FaceLeds" "blue" 0.1')
    cmds.append('qicli call ALLeds.fadeRGB "EarLeds" "blue" 0.1')

    elif modus == "denken":
    # Augen ROT, Ohren AUS (0)
    cmds.append('qicli call ALLeds.fadeRGB "FaceLeds" "red" 0.1')
    # HIER IST DER FIX: 0 statt "black"
    cmds.append('qicli call ALLeds.fadeRGB "EarLeds" 0 0.1')

    elif modus == "sprechen":
    # Alles WEISS
    cmds.append('qicli call ALLeds.fadeRGB "FaceLeds" "white" 0.1')
    cmds.append('qicli call ALLeds.fadeRGB "EarLeds" "white" 0.1')

    for cmd in cmds:
    send_ssh_command(cmd, wait=False)

    def nimm_audio_auf_pc():
    sys.stdout.write("H")
    sys.stdout.flush()

    pepper_leds("hoeren")

    p = pyaudio.PyAudio()
    try:
    stream = p.open(format=FORMAT, channels=CHANNELS,
    rate=RATE, input=True,
    frames_per_buffer=CHUNK)
    except:
    stream = p.open(format=FORMAT, channels=CHANNELS,
    rate=RATE, input=True,
    frames_per_buffer=CHUNK, input_device_index=0)

    frames = []
    max_volume = 0

    for i in range(0, int(RATE / CHUNK * RECORD_SECONDS)):
    data = stream.read(CHUNK)
    frames.append(data)

    rms = audioop.rms(data, 2)
    if rms > max_volume:
    max_volume = rms

    stream.stop_stream()
    stream.close()
    p.terminate()

    # Smart Mode Check
    if max_volume < SCHWELLENWERT:
    sys.stdout.write(".")
    sys.stdout.flush()
    # Keine LED Aenderung, einfach weiter
    return None

    print "\n[Lautstaerke: " + str(max_volume) + "] Sende an Google..."
    pepper_leds("denken")

    wf = wave.open(WAVE_OUTPUT_FILENAME, 'wb')
    wf.setnchannels(CHANNELS)
    wf.setsampwidth(p.get_sample_size(FORMAT))
    wf.setframerate(RATE)
    wf.writeframes(b''.join(frames))
    wf.close()

    return WAVE_OUTPUT_FILENAME

    def stt_google(dateipfad):
    if not dateipfad: return ""
    try:
    with open(dateipfad, "rb") as f:
    audio_data = f.read()
    b64_audio = base64.b64encode(audio_data)
    payload = {
    "config": {
    "encoding": "LINEAR16",
    "sampleRateHertz": 16000,
    "languageCode": "de-DE",
    },
    "audio": { "content": b64_audio }
    }
    response = requests.post(SPEECH_URL, json=payload, timeout=10)
    resp_json = response.json()
    if 'results' in resp_json:
    return resp_json['results'][0]['alternatives'][0]['transcript']
    except:
    pass
    return ""

    def ask_gemini(history_list):
    try:
    payload = {
    "contents": history_list,
    "system_instruction": { "parts": [{"text": ROBOT_BEHAVIOR}] }
    }
    headers = {'Content-Type': 'application/json'}
    response = requests.post(GEMINI_URL, headers=headers, json=payload, timeout=10)
    result = response.json()
    if 'candidates' in result and len(result['candidates']) > 0:
    return result['candidates'][0]['content']['parts'][0]['text'].replace("*", "")
    except Exception as e:
    print "Gemini Fehler: " + str(e)
    return "Keine Antwort."

    # ---------------------------------------------------------
    # --- HAUPTPROGRAMM ---
    # ---------------------------------------------------------

    pepper_leds("sprechen")
    pepper_sag("Guten Tag. Ich bin Yumi. Wenn meine Augen blau leuchten, höre ich dir zu. Du kannst dann 5 sekunden sprechen. dann bin ich wieder dran.")

    print "\n--- START ---"
    print "H = Hören (Aufnahme), . = Stille"

    while True:
    try:
    # 1. Hören
    wav_file = nimm_audio_auf_pc()

    # Wenn zu leise, wav_file ist None -> Neustart
    if not wav_file:
    continue

    # 2. Verstehen
    user_text = stt_google(wav_file)

    if not user_text:
    print " (Nix verstanden)"
    continue

    print "User: " + user_text.encode('utf-8')

    if "reset" in user_text.lower():
    chat_history = []
    pepper_sag("Gedächtnis gelöscht.")
    continue

    if "ende" in user_text.lower():
    pepper_sag("Tschüss.")
    break

    # 3. Gemini fragen
    chat_history.append({"role": "user", "parts": [{"text": user_text}]})
    antwort = ask_gemini(chat_history)

    chat_history.append({"role": "model", "parts": [{"text": antwort}]})

    # 4. Sprechen & Bewegen
    pepper_leds("sprechen")
    pepper_sag(antwort)

    except KeyboardInterrupt:
    print "\nBeendet."
    break
    except Exception as e:
    print "\nFehler: " + str(e)
    time.sleep(1)

    ```

    #PepperRobot #Yumi #Robotics #NaoQi #Android6 #Gemini #AI #KI #SSH #CodingGirls #TechUpdate #HumanoidRobot #WeltherrschaftInPink #PapaSan #RobotDevelopment

  4. Meet Hobbs W1, the AI Receptionist That Can Look You in the Eye 🤖

    Meet the Hobbs W1: the bionic AI receptionist by Noetix. Designed to handle guest check-ins, answer complex inquiries, and provide directions—all while maintaining a natural, human-like engagement. The corporate lobby will never be the same.

    #noetic #hobbsw1 #humanoidrobot #robotics #futuretech #innovations #bionic #technews #aiassistant

  5. Meet Hobbs W1, the AI Receptionist That Can Look You in the Eye 🤖

    Meet the Hobbs W1: the bionic AI receptionist by Noetix. Designed to handle guest check-ins, answer complex inquiries, and provide directions—all while maintaining a natural, human-like engagement. The corporate lobby will never be the same.

    #noetic #hobbsw1 #humanoidrobot #robotics #futuretech #innovations #bionic #technews #aiassistant

  6. Meet Hobbs W1, the AI Receptionist That Can Look You in the Eye 🤖

    Meet the Hobbs W1: the bionic AI receptionist by Noetix. Designed to handle guest check-ins, answer complex inquiries, and provide directions—all while maintaining a natural, human-like engagement. The corporate lobby will never be the same.

    #noetic #hobbsw1 #humanoidrobot #robotics #futuretech #innovations #bionic #technews #aiassistant

  7. Meet Hobbs W1, the AI Receptionist That Can Look You in the Eye 🤖

    Meet the Hobbs W1: the bionic AI receptionist by Noetix. Designed to handle guest check-ins, answer complex inquiries, and provide directions—all while maintaining a natural, human-like engagement. The corporate lobby will never be the same.

    #noetic #hobbsw1 #humanoidrobot #robotics #futuretech #innovations #bionic #technews #aiassistant

  8. 1X Neo is a $20,000 home robot that will learn chores via teleoperation

    California-based AI and robotics company 1X is now accepting pre-orders for its humanoid robot NEO, which was designed…
    #NewsBeep #News #Artificialintelligence #1X #AI #ArtificialIntelligence #AU #Australia #humanoperator #humanoidrobot #Neo #Technology
    newsbeep.com/au/249341/

  9. Elon Musk Got Feisty in the Final Minutes of Tesla’s Earnings Call

    “Corporate terrorists.” That’s what Elon Musk called the proxy advisory firms opposed to the historic $1 trillion pay…
    #NewsBeep #News #Topstories #AI #comment #company #deal #earningcall #elonmuskgotfeisty #glasslewis #Headlines #humanoidrobot #investor #musk #paypackage #proxyadvisoryfirm #Shareholder #Tesla #TopStories #vote
    newsbeep.com/203692/

  10. Hiltzik: Why humanoid robots are a pipe dream

    With AI beginning to look as if it has reached a deployment plateau — if not a lessening…
    #UnitedStates #US #USA #arm #ElonMusk #human #human-likerobot #humanoidrobot #leg #mostpeople #Musk #robotic #rodneybrooks #task #teslaevent #thing #video #way #world
    europesays.com/2470337/

  11. China’s UBTech is entering the humanoid robot race with a $20,000 home companion, directly competing with Tesla’s Optimus. Backed by Huawei and government support, UBTech targets elderly care as a key use case, aiming to reshape daily life with AI-powered robotics.

    #UBTech #Tesla #HumanoidRobot #AI #ElderlyCare #TechInnovation #RobotCompanion #FutureOfWork #ChinaTech #RoboticsRace #TECHi

    Read Full Article Here :- techi.com/ubtech-20k-humanoid-

  12. Tesla's Optimus is a humanoid robot built to handle tough, repetitive tasks using advanced AI. It walks, lifts, and even cooks aiming to change how humans work. While Musk calls it the future, experts are skeptical about how autonomous it really is.

    #TeslaOptimus #HumanoidRobot #ElonMusk #AIrobotics #FutureOfWork #TeslaRobotics #RobotAssistant #TechInnovation #Automation #TeslaAI #OptimusRobot #TECHi

    Read Full Article Here :- techi.com/optimus-a-humanoid-r

  13. Pilot Military Android

    Built light, agile, and of higher intelligence than most other androids, these units were made in the both male and female patterns in about equal numbers — and often with enhanced appearance. While civilian android co-pilots were used in old world airlines and inter-city hover transports, primary piloting was done by trusted human operators after several infamous incidents where Mecha corrupted air crews took over flights. For the military, however, the use of android pilots was acceptable — at least in the early years of the End Time Wars.

    Ink illustration for page 43 of The Mutant Epoch RPGs Expansion Rules Book. Learn about this game book at amazon.com/dp/0994923791 or outlandarts.com/expansionrules

    #pilot #flyer #airship #dreamer #android #humanoidrobot #selfaware #noaiart #ink #rpg #ttrpg #scifi #mutantepoch #expansionrules #tme #themutantepoch #roleplayinggame #apocalyptic #postapocalyptic #outlandsystem #outlandarts #mutant #epoch #tabletoprpg like #gammaworld or #fallout or #mcc

  14. Heavy Combat Military Android

    Once widely deployed on the sides of Mecha and human factions of old, their large size made them stand out, and so receive unwanted attention and multiple incoming rounds. Few of these brutes now walk the twisted world of The Mutant Epoch, but those that do are much feared, well respected, and incredibly valuable assets to any wasteland warlord or dig team. They stand at least a foot (30cm) taller than a large man, are broad of chest and shoulder and have enormous, cable knotted muscles

    Ink illustration for page 42 of The Mutant Epoch RPGs Expansion Rules Book. Learn about this game book at outlandarts.com/expansionrules or drivethrurpg.com/en/product/49

    #elite #military #combat#infantry #android #humanoidrobot #selfaware #ai #noai #noaiart #ink #rpg #ttrpg #scifi #playercharacter #mutantepoch #expansionrules #tme #indiegame #postapocalyptic #themutantepoch #roleplayinggame #apocalyptic #postapocalyptic #outlandsystem #tabletoprpg like #gammaworld or #fallout or #mcc #ranger #specialforces

  15. Sniper Military Android

    As their name implies, these stealthy, modestly sized units appear as males or females of exceptional fitness, although not large and so are more easily able to blend in with a civilian population. Masters of camouflage, concealment and marksmanship, these deadly units make for exceptional new era excavators.

    See an YouTube overview video here: youtube.com/watch?v=NmR1zStcU3

    #sniper #military #overwatch #camo #android #humanoidrobot #selfaware #ai #noai #noaiart #ink #rpg #ttrpg #scifi #playercharacter #mutantepoch #expansionrules #tme #postapocalyptic #fallout #themutantepoch #roleplayinggame #apocalyptic #outlandsystem #outlandarts #mutant #tabletoprpg #indiegame like #gammaworld or #mcc

  16. Technician Android
    As their name implies, these androids specialize in one main technician skill area, but often have minor qualifications in other skills, too. They were originally designed to serve alongside either industrial or scientific models, but were widely dispersed throughout the old world. Of course, with their knowledge and access to essential services, those that were corrupted by the Mecha caused devastating damage to the infrastructure of human cities and industry, and left vast swaths of the human population without food, water, heat, virtual reality up-link, air conditioning and power.

    Hand drawn ink art from page 40, from The Mutant Epoch RPG Expansion Rules book
    Check it out here: amazon.com/dp/0994923791 or outlandarts.com/expansionrules

    #technician #technical #android #humanoidrobot #selfaware #ai #noai #noaiart #ink #rpg #ttrpg #scifi #playercharacter #mutantepoch #expansionrules #tme #indiegame #postapocalyptic #fallout #mustache #fixing #repair #williammcausland

  17. Industrial Android
    Considered as little more than human shaped forklifts, dumb brutes, and expendable machines of the factory floor, these laborers were however built tough. Besides their strength, robustness and compulsion to work hard, many unique specimens feature one or more useful traits and skills. Besides the fore mentioned attributes, these bulky, typically metal boned humanoid machines are rugged enough to hold their own in a post-apocalyptic world. They normally appear as males but both genderless and female specimens are also found.
    Hand drawn ink art from page 39, from The Mutant Epoch RPG Expansion Rules book
    See it here: outlandarts.com/expansionrules or here amazon.com/dp/0994923791

    #industrial #worker #labor #laborer #industry #powerful #android #humanoidrobot #selfaware #ai #noai #noaiart #ink #rpg #ttrpg #scifi #playercharacter #mutantepoch #expansionrules #tme #indiegame #postapocalyptic #fallout #muscular #brute #construction

  18. Homeless and Addiction Outreach Officer (HAOO) Android
    As machines took human jobs, and drugs and synth-alcohol became cheaper and more prevalent, people found themselves on the streets. Strangely, it was machines who also came to tend to the victims of addiction and homelessness.
    Hand drawn ink art from page 35, from The Mutant Epoch RPG Expansion Rules book
    Check it out here: outlandarts.com/expansionrules

    #homeless #outreach #streetpeople #skidrow #drugaddict #addiction #treatment #homelessoutreach #android #humanoidrobot #selfaware #ai #noai #noaiart #ink #rpg #ttrpg #scifi #playercharacter #mutantepoch #expansionrules #tme #indiegame #postapocalyptic #fallout #euthanasia #syringe

  19. Criminal Construct Android: This unit was made to look like some other common model, and in most cases uses the frame of a personal companion android. It was, however, upgraded and customized by either revolutionaries, insurgent forces, political outcasts, or common criminals. As far as being a civilian android character in the Epochian age, this is the most practical model for a post-apocalyptic world.

    Hand drawn ink art from page 33, from The Mutant Epoch RPG Expansion Rules book
    Curious? Watch a video intro of this new book by RPG Overviews on Youtube:
    youtube.com/watch?v=NmR1zStcU3


    #criminal #crook #android #humanoidrobot #sentient #selfaware #ai #noai #noaiart #ink #rpg #ttrpg #scifi #playercharacter #mutantepoch #expansionrules #tme #indiegame #postapocalyptic #fallout #thug #crime

  20. Exploring the Future: The Revolutionary Figure 02 Humanoid Robot #Technology, #HumanoidRobot, #AI, #Innovation, #Figure02, #OpenAI, #Robotics, #FutureTech, #SmartRobots, #TechNews Welcome to Greenground, where we delve into the fascinating world of technology, entertainment, and t.co/0QKmfzhTCR on twitter.com/AcerboLivio/status