- Products
- Ozeki 10
- Introduction
- Apps
- Connections
- SMS
- Gamepad
- Arduino
- Analog Sensor
- Button
- Buzzer
- DC Motor
- DHT Sensor
- Gyroscope
- ID Manager
- IR Transceiver
- Joystick
- Keyboard
- Arduino Mega
- Arduino Nano
- Arduino Uno
- Ozeki Matrix
- Ozeki Display Module
- Raspberry PI
- Protocol
- Chat Control
- LCD Display
- NFC Reader
- Optical Gate
- RF 433 MHz
- RF 2.4 GHz
- RGB LED
- RGB Sensor
- Rotary Encoder
- Servo Motors
- Stepper Motors
- Switch Controller
- Temperature Sensor
- Ultrasonic
- Orientation
- PBX VoIP Phone
- Speech Engines
- Autoconnect to Serial
- Installation guide
- Terms and Definitions
- Ozeki 10 Guide
- HTTP API
- SMS
- Bulk Messenger
- Cluster Software
- Developer tools
- Robots
- Hardware
- Technology
- Sales
RECOMMENDED FOR YOU:
SMS Gateway software
Ozeki brings you outstanding
SMS Gateway technology. Use our SMS Server products on Windows,Linux, or Android
C# SMS API
Developers can use our C# SMS API to send SMS from C#.Net. The C# SMS API comes with full source code
PHP SMS API
The ozeki PHP SMS gateway software can be used to send SMS from PHP and to receive SMS usig PHP on your website
SMPP SMS Gateway
SMS service providers use our SMPP gateway solution, that offers a high performance SMPP server and SMPP client gateway with amazing routing capabilities
Ozeki brings you outstanding
SMS Gateway technology. Use our SMS Server products on Windows,Linux, or Android
C# SMS API
Developers can use our C# SMS API to send SMS from C#.Net. The C# SMS API comes with full source code
PHP SMS API
The ozeki PHP SMS gateway software can be used to send SMS from PHP and to receive SMS usig PHP on your website
SMPP SMS Gateway
SMS service providers use our SMPP gateway solution, that offers a high performance SMPP server and SMPP client gateway with amazing routing capabilities
Ozeki 10
Ozeki Matrix Keyboard Control Code
MPR121 capacitive touch keypad controller is capable to sense 12 buttons. When you touch a button, the character is sent to this OZEKI software. The 12 characters are numbers (0-9) plus * and #. You can connect the MPR121 to your Ozeki Display Module. (LCD Display Code)
Required hardware
- Ozeki Display Module
- LCD Display
- Touchpad MPR121
Source code to install on controller
Before you upload this code to your Arduino, please format the EEPROM...
#include <OzIDManager.h> #include <OzKeyboardController.h> OzIDManager* manager; OzKeyboardController* keyboardController; void setup() { Serial.begin(115200); manager = new OzIDManager; manager->_sendACK = true; manager->_checksum = true; OzCommunication::setIDManager(manager); keyboardController = new OzKeyboardController(); //continues if keyboard has been detected int x = 1; manager->sendLinkSetup(); manager->PrintWelcomeLine(keyboardController, x++, "MyKeyboard"); Wire.begin(); } void loop() { OzCommunication::communicate(); keyboardController->ownLoop(); }
More information
- How to setup a keyboard on arduino mega
- Arduino Nano Keyboard Control Code
- How to setup a keyboard on arduino uno
- How to setup a keyboard on Raspberry Pi
- Keyboard protocol for arduino
- How to control a keyboard using chat messages
- Keyboard Desc
- Keyboard Arduino