c_cpp 具有LCD的粒子照片 - 时钟示例代码

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了c_cpp 具有LCD的粒子照片 - 时钟示例代码相关的知识,希望对你有一定的参考价值。

#include "Adafruit_SSD1306.h"

/****************************************************
The connection of the OLED to my Particle Photon is

VCC = 3.3V
GND = GND
SCL = A5 / D1*
SDA = A4 / D0*
****************************************************/

/* ============== MAIN =====================*/

 //Use I2C with OLED RESET pin on D4
 #define OLED_RESET D4
 Adafruit_SSD1306 oled(OLED_RESET);


 unsigned long previousMillis;
 unsigned long interval = 30000;

 void setup() {
  // by default, we'll generate the high voltage from the 3.3v line internally! (neat!)
  oled.begin(SSD1306_SWITCHCAPVCC, 0x3C);  // initialize with the I2C addr 0x3D (for the 128x64)
  // init done     
     
  //oled.display(); // show splashscreen

  Time.zone(-5);
  
   
}

void loop() {
  oled.clearDisplay();
  delay(200);
  oled.setTextSize(2);
  oled.setTextColor(WHITE);
  oled.setCursor(0,0);
  oled.print(Time.hourFormat12()); oled.print(":"); oled.print(Time.minute()); oled.print(":"); oled.print(Time.second());
  oled.setTextColor(BLACK, WHITE); // 'inverted' text
  
  oled.display();
  
  delay(800);
}

以上是关于c_cpp 具有LCD的粒子照片 - 时钟示例代码的主要内容,如果未能解决你的问题,请参考以下文章

51单片机+DS1302+LCD1602+DS18B20时钟示例+ Proteus仿真

在 LCD 显示屏上显示 Raspberry Pi 时钟

基于DS1302与AT89C51的实时日历时钟的LCD显示程序你还有么?还有图的

基于51单片机+DS1302时钟模块+LCD1602显示

基于51单片机+DS1302时钟模块+LCD1602显示

基于51单片机+DS1302时钟模块+LCD1602显示