#Blog7
Hello Everyone!
Here is my work on the Tiny OLED Display, which is of I2C Interface.
Display: SSD1306
Type : 4 Pin 128X64 OLED Display
Interface : I2C
Resolution : 128 X 64
Display Size : 0.96 inch
The Circuit Diagram
#include <Wire.h> #include <ACROBOTIC_SSD1306.h> void setup() { Wire.begin(); oled.init(); // Initialze SSD1306 OLED display oled.clearDisplay(); // Clear screen } void loop() { oled.setTextXY(0,0); // Set cursor position, start of line 0 oled.putString("ELEMENT14"); oled.setTextXY(1,0); // Set cursor position, start of line 1 oled.putString("Design Contest"); oled.setTextXY(2,0); // Set cursor position, start of line 2 oled.putString("Arduino,"); oled.setTextXY(2,10); // Set cursor position, line 2 10th character oled.putString("GNPK"); oled.setTextXY(3,0); oled.putString("Smart Gloves"); }
The Application
The OLED Display is used to display the message that has been converted from the Gestures. The Flex Sensor is used to capture the gesture. On particular Gesture the corresponding message is synthesized, the message will be conveyed in both text and voice mode.
Stay Tuned
Thanks for reading my blog
Top Comments