Jump to content
  • Sky
  • Blueberry
  • Slate
  • Blackcurrant
  • Watermelon
  • Strawberry
  • Orange
  • Banana
  • Apple
  • Emerald
  • Chocolate
  • Charcoal

Search the Community

Showing results for tags 'Keyboard'.

  • Search By Tags

    Type tags separated by commas.
  • Search By Author

Content Type


Forums

  • OpenComputers
    • Announcements
    • Feedback
    • IRC
  • Code Central
    • Support
    • Showcase
    • Tutorials
  • Addons & More
    • Addons Mods
    • Architectures
    • OpenEngineering Task Force
  • General
    • Lounge
    • Forum Games
    • Showcase
    • Servers
  • Archives
    • Public Archives

Find results in...

Find results that contain...


Date Created

  • Start

    End


Last Updated

  • Start

    End


Filter by number of...

Joined

  • Start

    End


Group


AIM


MSN


Website URL


ICQ


Yahoo


Jabber


Skype


Minecraft


GitHub


IRC


Fediverse ID


Location


Interests

Found 3 results

  1. Keyboard.isKeyDown(keyboard.keys.space) and other variants are always returning nil and i'm not sure why! here's my code keyboard = require("keyboard") while true do print(keyboard.isKeyDown(keyboard.keys.space)) end this returns nil over and over. no amount of button pressing changes the output for whatever reason any ideas why?
  2. I'm writing a custom OS for educational purposes and I'm having issues getting keyboard input. Everything completely works in OpenOS so everything is hooked up correctly. My init.lua code Here is my keyboard code I've copied the dofile function from OpenOS so it should work with my code.
  3. Hi! Here is key button receiver code: type, _, char, _ = computer.pullSignal() --Receiving input while true do if type = "key_up" then print(char) end end And here is problem: when I dont touch keyboard it prints 116
×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use and Privacy Policy.