#include <Wire.h>
#include <SPI.h>
#include <SFE_MicroOLED.h>
#define PIN_RESET 9 // Connect RST to pin 9
#define PIN_DC 8 // Connect DC to pin 8
#define PIN_CS 10 // Connect CS to pin 10
#define DC_JUMPER 0
MicroOLED oled(PIN_RESET, PIN_DC, PIN_CS); // SPI declaration
//MicroOLED oled(PIN_RESET, DC_JUMPER); // I2C declaration
int SCREEN_WIDTH = oled.getLCDWidth();
int SCREEN_HEIGHT = oled.getLCDHeight();
#define trigPin 3
#define echoPin 2
void setup()
{
// Serial.begin(9600);
pinMode(trigPin, OUTPUT);
pinMode(echoPin, INPUT);
oled.begin();
oled.clear(PAGE);
oled.display();
oled.clear(PAGE);
oled.clear(ALL);
//arduino logo
oled.pixel(12,11);
oled.pixel(13,11);
oled.pixel(14,11);
oled.pixel(15,11);
oled.pixel(19,11);
oled.pixel(20,11);
oled.pixel(21,11);
oled.pixel(22,11);
oled.pixel(11,12);
oled.pixel(16,12);
oled.pixel(18,12);
oled.pixel(20,12);
oled.pixel(23,12);
oled.pixel(11,13);
oled.pixel(12,13);
oled.pixel(13,13);
oled.pixel(14,13);
oled.pixel(16,13);
oled.pixel(17,13);
oled.pixel(18,13);
oled.pixel(19,13);
oled.pixel(20,13);
oled.pixel(21,13);
oled.pixel(23,13);
oled.pixel(11,14);
oled.pixel(16,14);
oled.pixel(18,14);
oled.pixel(20,14);
oled.pixel(23,14);
oled.pixel(12,15);
oled.pixel(13,15);
oled.pixel(14,15);
oled.pixel(15,15);
oled.pixel(19,15);
oled.pixel(20,15);
oled.pixel(21,15);
oled.pixel(22,15);
oled.circle(17, 13, 8);
oled.setFontType(0); // Set the text to small (10 columns, 6 rows worth of characters).
oled.setCursor(11, 30);
oled.print("ARDUINO");
oled.display();
oled.clear(PAGE);
//arduino logo
delay(2000);
}
void loop()
{
oled.clear(PAGE);
oled.clear(ALL);
long duration, distance;
digitalWrite(trigPin, LOW);
delayMicroseconds(2);
digitalWrite(trigPin, HIGH);
delayMicroseconds(10);
digitalWrite(trigPin, LOW);
duration = pulseIn(echoPin, HIGH);
distance = (duration/2) / 29.1;
//Serial.print(distance/100.0);
// Serial.println(" m");
//Serial.print(distance/2.54);
//Serial.println(" in.");
oled.setFontType(0); // Set the text to small (10 columns, 6 rows worth of characters).
oled.setCursor(0, 0); // Set the text cursor to the upper-left of the screen.
oled.print(distance/100.0); // print distance in meters
oled.print(" m ");
oled.print(distance/2.54); // Print distance in inches
oled.print(" in.");
oled.display();
delay(100);
}
Comments
Please log in or sign up to comment.