Advertisement
Guest User

Untitled

a guest
Dec 14th, 2019
149
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.45 KB | None | 0 0
  1. if (s == "a") return 0x1E;
  2. if (s == "b") return 0x30;
  3. if (s == "c") return 0x2E;
  4. if (s == "d") return 0x20;
  5. if (s == "e") return 0x12;
  6. if (s == "e") return 0x12;
  7. if (s == "q") return 0x10;
  8. if (s == "r") return 0x13;
  9. if (s == "t") return 0x14;
  10. if (s == "y") return 0x15;
  11. if (s == "u") return 0x16;
  12. if (s == "i") return 0x17;
  13. if (s == "o") return 0x18;
  14. if (s == "p") return 0x19;
  15. if (s == "s") return 0x1F;
  16. if (s == "f") return 0x21;
  17. if (s == "g") return 0x22;
  18. if (s == "h") return 0x23;
  19. if (s == "j") return 0x24;
  20. if (s == "k") return 0x25;
  21. if (s == "l") return 0x26;
  22. if (s == "z") return 0x2C;
  23. if (s == "x") return 0x2C;
  24. if (s == "v") return 0x2F;
  25. if (s == "b") return 0x30;
  26. if (s == "n") return 0x31;
  27. if (s == "m") return 0x32;
  28. if (s == "w") return 0x11;
  29. if (s == "p") return 0x19;
  30. if (s == "/") return 0x35;
  31. if (s == " ") return 0x39;
  32. if (s == ".") return 0x34;
  33. if (s == ",") return 0x33;
  34. if (s == "[") return 0x1A;
  35. if (s == "]") return 0x1B;
  36. if (s == "delete") return 0x0e;
  37. if (s == "enter") return 0x1c;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement