-
Datei
ssd1306.c
_SETDISPLAYOFFSET); ssd1306_command(0x0); ssd1306_command(SSD1306_SETSTARTLINE); ssd1306_command(SSD1306_CHARGEPUMP); ssd1306_command(0x14); ssd1306_command(SSD1306_MEMORYMODE); ssd1306_command(0x00); ssd1306_command(SSD1306_SEGREMAP | 0x1); ssd1306_command(SSD1306_COMSCANDEC); ssd1306_command(SSD1306_SETCOMPINS); ssd1306_command(0x02); ssd1306_command(SSD1306_SETCONTRAST); ssd1306_command(0x1F); ssd1306_command(SSD1306_SETPRECHARGE); ssd1306
in „sprintf funktioniert nicht in ESP-IDF“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
ssd1306.h
SSD1306_ADDR 0x78 #define SSD1306_LCD_Width 128 #define SSD1306_LCD_HEIGHT 64 #define SSD1306_MODE_CMD 0x00 #define SSD1306_MODE_DATA 0x40 #define SSD1306_CMD_ADDR_MODE 0x20 #define SSD1306_CMD_SET_COLUMN_ADDR 0x21 #define SSD1306_CMD_SET_PAGE_ADDR 0x22 #define SSD1306_CMD_SET_START_LINE 0x40 #define SSD1306_CMD_SET_CONTRAST 0x81 #define SSD1306_CMD_SET_CHARGEPUMP 0x8D #define SSD1306_CMD_SET_SEGMENT_REMAP 0xA1 #define SSD1306
in „SSD1306/1309 Library zum Darstellen von Text auf OLED Displays“ · Projekte & Code ·
-
Datei
ssd1306.c
0x00 , SSD1306_SEGREMAP | 0x1 , SSD1306_COMSCANDEC , SSD1306_SETCOMPINS , 0x12 , SSD1306_SETCONTRAST , 0xff , SSD1306_DISPLAYALLON_RESUME , SSD1306_NORMALDISPLAY , SSD1306_SETDISPLAYCLOCKDIV , 0x80 , SSD1306_CHARGEPUMP
in „SSD1306/1309 Library zum Darstellen von Text auf OLED Displays“ · Projekte & Code ·
-
Datei
SSD1306_i2c.h
SSD1306_LCDHEIGHT 64 #define SSD1306_SETCONTRAST 0x81 #define SSD1306_DISPLAYALLON_RESUME 0xA4 #define SSD1306_DISPLAYALLON 0xA5 #define SSD1306_NORMALDISPLAY 0xA6 #define SSD1306_INVERTDISPLAY 0xA7 #define
in „SSD1306/1309 Library zum Darstellen von Text auf OLED Displays“ · Projekte & Code ·
-
Datei
alt_mitfehlern.txt
SSD1306_WRITECOMMAND(0xAE); //display off SSD1306_WRITECOMMAND(0xD5); //--set display clock divide ratio/oscillator frequency SSD1306_WRITECOMMAND(SH1106_MEMORYMODE); // 0x20 SSD1306_WRITECOMMAND(0x10);
in „Display"fehler" bei OLED Module IIC I2C 128x64“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
SSD1306_APEdriver.inc
= 0x00 .equ SSD1306_CONTROL_BYTE_DATA_SINGLE = 0xC0 .equ SSD1306_CONTROL_BYTE_DATA_STREAM = 0x40 // Fundamental commands (pg.28) .equ SSD1306_CMD_SET_CONTRAST = 0x81 // follow with 0x7F .equ SSD1306_CMD_DISPLAY_RAM = 0xA4 .equ SSD1306_CMD_DISPLAY_ALLON = 0xA5 .equ SSD1306_CMD_DISPLAY_NORMAL = 0xA6 .equ SSD1306_CMD_DISPLAY_INVERTED = 0xA7 .equ SSD1306_CMD_DISPLAY_OFF = 0xAE .equ SSD1306_CMD_DISPLAY_ON = 0xAF // Addressing Command
in „[ASM] SSD1306 text library für oled displays + AVR 0- und 1-Series“ · Projekte & Code ·
-
Datei
neu_sh1106_gehtnicht.txt
// Init sequence for 128x64 OLED module SSD1306_WRITECOMMAND(SH1106_DISPLAYOFF); // 0xAE SSD1306_WRITECOMMAND(SH1106_SETDISPLAYCLOCKDIV); // 0xD5 SSD1306_WRITECOMMAND(SH1106_MEMORYMODE); // 0x20 SSD1306_WRITECOMMAND(0x80); // the suggested ratio 0x80 SSD1306_WRITECOMMAND(SH1106_SETMULTIPLEX); // 0xA8 SSD1306_WRITECOMMAND(0x3F); SSD1306_WRITECOMMAND(SH1106_SETDISPLAYOFFSET); // 0xD3 SSD1306_WRITECOMMAND(0x00); // no offset SSD1306_WRITECOMMAND(SH1106
in „Display"fehler" bei OLED Module IIC I2C 128x64“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
SSD1306_APEdriver.inc
= 0x00 .equ SSD1306_CONTROL_BYTE_DATA_SINGLE = 0xC0 .equ SSD1306_CONTROL_BYTE_DATA_STREAM = 0x40 // Fundamental commands (pg.28) .equ SSD1306_CMD_SET_CONTRAST = 0x81 // follow with 0x7F .equ SSD1306_CMD_DISPLAY_RAM = 0xA4 .equ SSD1306_CMD_DISPLAY_ALLON = 0xA5 .equ SSD1306_CMD_DISPLAY_NORMAL = 0xA6 .equ SSD1306_CMD_DISPLAY_INVERTED = 0xA7 .equ SSD1306_CMD_DISPLAY_OFF = 0xAE .equ SSD1306_CMD_DISPLAY_ON = 0xAF // Addressing Command
in „[ASM] SSD1306 text library für oled displays + AVR 0- und 1-Series“ · Projekte & Code ·
-
Datei
SSD1306_driver.inc
) .equ SSD1306_CMD_SET_CONTRAST = 0x81 // follow with 0x7F .equ SSD1306_CMD_DISPLAY_RAM = 0xA4 .equ SSD1306_CMD_DISPLAY_ALLON = 0xA5 .equ SSD1306_CMD_DISPLAY_NORMAL = 0xA6 .equ SSD1306_CMD_DISPLAY_INVERTED = 0xA7 .equ SSD1306_CMD_DISPLAY_OFF = 0xAE .equ SSD1306_CMD_DISPLAY_ON = 0xAF // Addressing Command Table (pg.30) .equ SSD1306_CMD_SET_LOWER_COLUMN = 0x00 .equ SSD1306_CMD_SET_HIGHER_COLUMN = 0x10 .equ SSD1306_CMD_SET_MEMORY_ADDR_MODE
in „[ASM] SSD1306 text library für oled displays + AVR 0- und 1-Series“ · Projekte & Code ·
-
Datei
SSD1306_APEdriver_SRAM.inc
) .equ SSD1306_CMD_SET_CONTRAST = 0x81 // follow with 0x7F .equ SSD1306_CMD_DISPLAY_RAM = 0xA4 .equ SSD1306_CMD_DISPLAY_ALLON = 0xA5 .equ SSD1306_CMD_DISPLAY_NORMAL = 0xA6 .equ SSD1306_CMD_DISPLAY_INVERTED = 0xA7 .equ SSD1306_CMD_DISPLAY_OFF = 0xAE .equ SSD1306_CMD_DISPLAY_ON = 0xAF // Addressing Command Table (pg.30) .equ SSD1306_CMD_SET_LOWER_COLUMN = 0x00 .equ SSD1306_CMD_SET_HIGHER_COLUMN = 0x10 .equ SSD1306_CMD_SET_MEMORY_ADDR_MODE
in „[ASM] SSD1306 text library für oled displays + AVR 0- und 1-Series“ · Projekte & Code ·
-
Datei
SSD1306_EPP_APEdriver_SRAM.inc
) .equ SSD1306_CMD_SET_CONTRAST = 0x81 // follow with 0x7F .equ SSD1306_CMD_DISPLAY_RAM = 0xA4 .equ SSD1306_CMD_DISPLAY_ALLON = 0xA5 .equ SSD1306_CMD_DISPLAY_NORMAL = 0xA6 .equ SSD1306_CMD_DISPLAY_INVERTED = 0xA7 .equ SSD1306_CMD_DISPLAY_OFF = 0xAE .equ SSD1306_CMD_DISPLAY_ON = 0xAF // Addressing Command Table (pg.30) .equ SSD1306_CMD_SET_LOWER_COLUMN = 0x00 .equ SSD1306_CMD_SET_HIGHER_COLUMN = 0x10 .equ SSD1306_CMD_SET_MEMORY_ADDR_MODE
in „[ASM] SSD1306 text library für oled displays + AVR 0- und 1-Series“ · Projekte & Code ·
-
Datei
mysketch.ino
0b01111100, 0b11110000, 0b01110000, 0b01110000, 0b00000000, 0b00110000 }; void MyFunktion(Adafruit_SSD1306* dis) { } void setup() { Serial.begin(9600); // SSD1306_SWITCHCAPVCC = generate display voltage from 3.3V internally if(!display.begin(SSD1306_SWITCHCAPVCC, SCREEN_ADDRESS)) { Serial.println(F("
in „Adafruit SSD1306 Objekt lässt keine Zeiger zu“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
I2C_128x64_Beispielcode.ino
B01111100, B11110000, B01110000, B01110000, B00000000, B00110000 }; void setup() { Serial.begin(9600); // SSD1306_SWITCHCAPVCC = generate display voltage from 3.3V internally if(!display.begin(SSD1306_SWITCHCAPVCC, 0x3c)) { // Address 0x3D for 128x64 Serial.println(F("SSD1306 allocation failed")); for(;;);
in „I2C 128x64 Display Displayfehler“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
grafik.ino
scale); int x = i; int y = Y_LEN - length; // Zeichne die Linie oled->drawFastVLine(x, y, length, SSD1306_WHITE); } /* Beschriftung einfügen */ oled->setTextColor(SSD1306_WHITE, SSD1306_BLACK); oled->setTextSize(1); oled->setCursor(0, 0); // Start at top-left corner oled->print("Power "); oled->print
in „Adafruit SSD1306 Objekt lässt keine Zeiger zu“ · Mikrocontroller und Digitale Elektronik ·
-
PDF
SSD1306-Revision_1.1__Charge_Pump__1_.pdf
SSD1306 Rev 1.1 P 57/59 Apr 2008 Solomon Systech 15.2 SSD1306Z Die Tray Information Figure 15-2 : SSD1306Z die tray information Solomon Systech Apr 2008 P 58/59 Rev 1.1 SSD1306 Solomon Systech reserves
in „5V an den Datenleitungen?“ · Mikrocontroller und Digitale Elektronik ·
-
PDF
SSD1306.pdf
SSD1306 Rev 1.1 P 57/59 Apr 2008 Solomon Systech 15.2 SSD1306Z Die Tray Information Figure 15-2 : SSD1306Z die tray information Solomon Systech Apr 2008 P 58/59 Rev 1.1 SSD1306 Solomon Systech reserves
in „OLED Grafik Anzeige“ · Mikrocontroller und Digitale Elektronik ·
-
PDF
LED_Display_driver_chip_SSD1306_DataSheet.pdf
value. Select appropriate value against module application. Solomon Systech Aug 2010 P 60/64 Rev 1.5 SSD1306 15 PACKAGE INFORMATION 15.1 SSD1306TR1 Detail Dimension Figure 15-1 SSD1306TR1 Detail Dimension T 36 S S SSD1306 Rev 1.5 P 61/64 Aug 2010 Solomon Systech Solomon Systech Aug 2010 P 62/64 Rev 1.5 SSD1306 15.2 SSD1306Z2 Die Tray Information Figure 15-2 : SSD1306Z2 die tray information SSD1306 Rev 1.5 P 63/64 Aug 2010 Solomon Systech Solomon Systech reserves the right to make changes without notice
in „Spannungsversorgung Arduino läuft nicht über Vin oder 5V-Pin“ · Mikrocontroller und Digitale Elektronik ·
-
PDF
LED_Display_driver_chip_SSD1306_DataSheet.pdf
value. Select appropriate value against module application. Solomon Systech Aug 2010 P 60/64 Rev 1.5 SSD1306 15 PACKAGE INFORMATION 15.1 SSD1306TR1 Detail Dimension Figure 15-1 SSD1306TR1 Detail Dimension T 36 S S SSD1306 Rev 1.5 P 61/64 Aug 2010 Solomon Systech Solomon Systech Aug 2010 P 62/64 Rev 1.5 SSD1306 15.2 SSD1306Z2 Die Tray Information Figure 15-2 : SSD1306Z2 die tray information SSD1306 Rev 1.5 P 63/64 Aug 2010 Solomon Systech Solomon Systech reserves the right to make changes without notice
in „SSD1306/1309 Library zum Darstellen von Text auf OLED Displays“ · Projekte & Code ·
-
PDF
SSD1306.pdf
value. Select appropriate value against module application. Solomon Systech Aug 2010 P 60/64 Rev 1.5 SSD1306 15 PACKAGE INFORMATION 15.1 SSD1306TR1 Detail Dimension Figure 15-1 SSD1306TR1 Detail Dimension T 36 S S SSD1306 Rev 1.5 P 61/64 Aug 2010 Solomon Systech Solomon Systech Aug 2010 P 62/64 Rev 1.5 SSD1306 15.2 SSD1306Z2 Die Tray Information Figure 15-2 : SSD1306Z2 die tray information SSD1306 Rev 1.5 P 63/64 Aug 2010 Solomon Systech Solomon Systech reserves the right to make changes without notice
in „SH1106 Init-Sequenz“ · Mikrocontroller und Digitale Elektronik ·
-
PDF
Solomon_Systech_LED_Display_driver_chip_SSD1306.pdf
value. Select appropriate value against module application. Solomon Systech Aug 2010 P 60/64 Rev 1.5 SSD1306 15 PACKAGE INFORMATION 15.1 SSD1306TR1 Detail Dimension Figure 15-1 SSD1306TR1 Detail Dimension T 36 S S SSD1306 Rev 1.5 P 61/64 Aug 2010 Solomon Systech Solomon Systech Aug 2010 P 62/64 Rev 1.5 SSD1306 15.2 SSD1306Z2 Die Tray Information Figure 15-2 : SSD1306Z2 die tray information SSD1306 Rev 1.5 P 63/64 Aug 2010 Solomon Systech Solomon Systech reserves the right to make changes without notice
in „Mit Wire.h über I2C auf LCD-Display 1602 zugreifen“ · Mikrocontroller und Digitale Elektronik ·
-
PDF
Solomon_Systech_LED_Display_driver_chip_SSD1306.pdf
value. Select appropriate value against module application. Solomon Systech Aug 2010 P 60/64 Rev 1.5 SSD1306 15 PACKAGE INFORMATION 15.1 SSD1306TR1 Detail Dimension Figure 15-1 SSD1306TR1 Detail Dimension T 36 S S SSD1306 Rev 1.5 P 61/64 Aug 2010 Solomon Systech Solomon Systech Aug 2010 P 62/64 Rev 1.5 SSD1306 15.2 SSD1306Z2 Die Tray Information Figure 15-2 : SSD1306Z2 die tray information SSD1306 Rev 1.5 P 63/64 Aug 2010 Solomon Systech Solomon Systech reserves the right to make changes without notice
in „SSD1306/1309 Library zum Darstellen von Text auf OLED Displays“ · Projekte & Code ·
-
Datei
lcd.cpp
/* * This file is part of lcd library for ssd1306/sh1106 oled-display. * * lcd library for ssd1306/sh1106 oled-display is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by
in „SSD1306/1309 Library zum Darstellen von Text auf OLED Displays“ · Projekte & Code ·
-
Datei
0.42inch_oled_ssd1306_72x40_demo.ino
=*/ 8); //U8X8_SSD1306_128X64_NONAME_3W_SW_SPI u8x8(/* clock=*/ 13, /* data=*/ 11, /* cs=*/ 10, /* reset=*/ 8); //U8X8_SSD1306_128X64_NONAME_3W_HW_SPI u8x8(/* cs=*/ 10, /* reset=*/ 8); //U8X8_SSD1306_128X64_NONAME_HW_I2C
in „Mini Display ansteuern“ · Mikrocontroller und Digitale Elektronik ·
-
PDF
SSD1306B_1.1.pdf
Number SEG COM Package Form Reference Remark o Min SEG pad pitch : 47um o Min COM pad pitch : 40um SSD1306BZ 128 64 COG 9 o Die thicknes300 +/- 15um o Bump height : Nominal 9um SSD1306B Rev 1.1 P 7/61 May 2014 Solomon Systech 4 BLOCK DIAGRAM Figure 4-1 SSD1306B Block Diagram RES# CS# E (RD#) R/W#(WR#
in „OLED zeigt nur wirre Pixel am I2C“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
A-iDE_189_XP.txt
\Lygte_ADS1115" "C:\\PROGRAM FILES\\Arduino_IDE_189_ESP\\portable\\sketchbook\\libraries\\Adafruit_SSD1306\\Adafruit_SSD1306.cpp" -o nul "C:\\PROGRAM FILES\\Arduino_IDE_189_ESP\\hardware\\tools\\avr/bin/avr-g++" -c -g -Os -w -std=gnu++11 -fpermissive -fno-exceptions -ffunction-sections -fdata-sections
in „Arduino Bootlader funktioniert nicht“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
oled.c
/* * This file is part of oled library for ssd1306/sh1106 oled-display. * * oled library for ssd1306/sh1106 oled-display is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published
in „SSD1306/1309 Library zum Darstellen von Text auf OLED Displays“ · Projekte & Code ·
-
Datei
HelloWorld.ino
; //U8G2_SSD1306_128X64_NONAME_F_HW_I2C u8g2(U8G2_R0, /* reset=*/ U8X8_PIN_NONE); //U8G2_SSD1306_128X64_ALT0_F_HW_I2C u8g2(U8G2_R0, /* reset=*/ U8X8_PIN_NONE); // same as the NONAME variant, but may solve the "every
in „ST7567 Display falsch mit Arduino Nano verbunden?“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
SSD1306_minimal.h
/* SSD1306_minimal.h - SSD1306 OLED Driver Library 2015 Copyright (c) CoPiino Electronics All right reserved. Original Author: GOF Electronics Co. Ltd. Modified by: CoPiino Electronics ( http://copiino.cc
in „Attiny85 dht22 oled ssd1306 i2C“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
EPaper_1_54_Test.ino
; //U8G2_SSD1306_128X64_NONAME_1_3W_HW_SPI u8g2(U8G2_R0, /* cs=*/ 10, /* reset=*/ 8); //U8G2_SSD1306_128X64_NONAME_1_HW_I2C u8g2(U8G2_R0, /* reset=*/ U8X8_PIN_NONE); //U8G2_SSD1306_128X64_ALT0_1_HW_I2C u8g2(U8G2
in „Fragen zu Waveshare e-paper 1.54"“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
oled.h
/* * This file is part of lcd library for ssd1306/sh1106 oled-display. * * oled library for ssd1306/sh1106 oled-display is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published
in „SSD1306/1309 Library zum Darstellen von Text auf OLED Displays“ · Projekte & Code ·
-
Datei
lcd.c
/* * This file is part of lcd library for ssd1306/sh1106 oled-display. * * lcd library for ssd1306/sh1106 oled-display is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by
in „RS485 von ms - immer noch Einschaltprobleme“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
u8g_com_arm_stm32.c
0x40; } u8g_10MicroDelay(); } break; case U8G_COM_MSG_WRITE_BYTE: { hal_status = HAL_I2C_Mem_Write(&hSSD1306_I2C, SSD1306_I2C_ADDRESS, control, 1, &arg_val, 1, SSD1306_I2C_TIMEOUT); } break; case U8G_COM_MSG_WRITE_SEQ: case U8G_COM_MSG_WRITE_SEQ_P: { hal_status = HAL_I2C_Mem_Write(&hSSD1306_I2C, SSD1306_I2C_ADDRESS, control, 1, arg_ptr, arg_val, SSD1306_I2C_TIMEOUT); } break; } return 1; }
in „STM32 F103 - I2C Probleme“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
setup.ino
sizeof(Tables)); // Tables.TotalPower = 38800; // SaveDataToFlash(0, &Tables, sizeof(Tables)); // SSD1306_SWITCHCAPVCC = generate display voltage from 3.3V internally if (!oled1.begin(SSD1306_SWITCHCAPVCC, 0x3d)) { Serial.println(F("SSD1306 allocation failed")); for (;;) ; // Don't proceed, loop forever } // SSD1306_SWITCHCAPVCC = generate display voltage from 3.3V internally if (!oled2.begin(SSD1306_SWITCHCAPVCC, 0x3c)) { Serial.println(F("SSD1306 2 allocation failed")); for (;;) ; // Don't proceed, loop forever
in „Adafruit SSD1306 Objekt lässt keine Zeiger zu“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
lcd_gfx.c
/* * This file is part of lcd library for ssd1306/sh1106 oled-display. * * lcd library for ssd1306/sh1106 oled-display is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by
in „RS485 von ms - immer noch Einschaltprobleme“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
lcd.h
/* * This file is part of lcd library for ssd1306/sh1106 oled-display. * * lcd library for ssd1306/sh1106 oled-display is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by
in „SSD1306/1309 Library zum Darstellen von Text auf OLED Displays“ · Projekte & Code ·
-
Datei
lcd.h
/* * This file is part of lcd library for ssd1306/sh1106 oled-display. * * lcd library for ssd1306/sh1106 oled-display is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by
in „RS485 von ms - immer noch Einschaltprobleme“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
HelloWorld.ino
/U8GLIB_SSD1306_128X64 u8g(10, 9); // HW SPI Com: CS = 10, A0 = 9 (Hardware Pins are SCK = 13 and MOSI = 11) //U8GLIB_SSD1306_128X64 u8g(U8G_I2C_OPT_NONE|U8G_I2C_OPT_DEV_0); // I2C / TWI //U8GLIB_SSD1306_128X64
in „Arduino OLED Display Ansteuern & "Hello World" Programme gehen nicht.“ · Softwareentwicklung ·
-
Datei
lcd_gfx.h
/* * This file is part of lcd library for ssd1306/sh1106 oled-display. * * lcd library for ssd1306/sh1106 oled-display is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by
in „RS485 von ms - immer noch Einschaltprobleme“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
OLED_LCD_Testcode_mit_Interrupt_Drehgeber.ino
/* This is an example of how to use the OLED 128x64 I2C with SSD1306 driver using the Adafruit library. It also applies to the 128x32 version, but not all components would fit the smaller screen. Pins: * GND = GND * VCC = 5V * SCL = A5 * SDA = A4 You can connect
in „Arduino OLED Display hakt bei zu schneller Werteingabe“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
OLED_LCD_Testcode_mit_Interrupt_Drehgeber.ino
/* This is an example of how to use the OLED 128x64 I2C with SSD1306 driver using the Adafruit library. It also applies to the 128x32 version, but not all components would fit the smaller screen. Pins: * GND = GND * VCC = 5V * SCL = A5 * SDA = A4 You can connect
in „Arduino OLED Display hakt bei zu schneller Werteingabe“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
OLED_LCD_Testcode_mit_Drehgeber.ino
/* This is an example of how to use the OLED 128x64 I2C with SSD1306 driver using the Adafruit library. It also applies to the 128x32 version, but not all components would fit the smaller screen. Pins: * GND = GND * VCC = 5V * SCL = A5 * SDA = A4 You can connect
in „Arduino OLED Display hakt bei zu schneller Werteingabe“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
ssd1306_interrupt_Beispiel.ino
/* This is an example of how to use the OLED 128x64 I2C with SSD1306 driver using the Adafruit library. It also applies to the 128x32 version, but not all components would fit the smaller screen. Pins: GND = GND VCC = 5V SCL = A5 SDA = A4 You can connect VCC to 3.3V
in „Arduino OLED Display hakt bei zu schneller Werteingabe“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
ESP8266_WiFI_UDP_Server_OLED.ino
include <Arduino.h> #include <ESP8266WiFi.h> #include <WiFiUDP.h> #include <Wire.h> #include <Adafruit_SSD1306.h> // Name and password of the WLAN access point #define SSID "dummy_wlan_box" #define PASSWORD "dummy_password" // The ESP-12 has a blue LED on GPIO2 #define LED 2 String newHostname = "ESP8266NodeMCU
in „UDP-Netzwerke(l)n mit kleinen Mikrocontrollern und WizNet W5100/W5500“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
Analogwandler_.txt
example code is in the public domain. */ #include <Wire.h> #include <Adafruit_GFX.h> #include <Adafruit_SSD1306.h> #define SCREEN_WIDTH 128 // Breite in Pixel #define SCREEN_HEIGHT 64 // Höhe in Pixel // OLED Display Instanz erstellen (I2C) // Reset Pin wird hier nicht benötigt, daher -1 Adafruit_SSD1306
in „I2C Display einfache Frage“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
Analogwandler_.ino
example code is in the public domain. */ #include <Wire.h> #include <Adafruit_GFX.h> #include <Adafruit_SSD1306.h> #define SCREEN_WIDTH 128 // Breite in Pixel #define SCREEN_HEIGHT 64 // Höhe in Pixel // OLED Display Instanz erstellen (I2C) // Reset Pin wird hier nicht benötigt, daher -1 Adafruit_SSD1306
in „I2C Display einfache Frage“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
Test1.ino
test for 128x32 oled. // Use smaller faster AvrI2c class in place of Wire. // Edit AVRI2C_FASTMODE in SSD1306Ascii.h to change the default I2C frequency. // #include "SSD1306Ascii.h" #include "SSD1306AsciiAvrI2c.h" // 0X3C+SA0 - 0x3C or 0x3D #define I2C_ADDRESS 0x3C // Define proper RST_PIN if required. #define RST_PIN -1 SSD1306AsciiAvrI2c oled; //------------------------------------------------------------------------------ void setup() { #if RST_PIN >= 0 oled.begin(&Adafruit128x32, I2C_ADDRESS, RST_PIN); #else // RST_PIN
in „Mit Wire.h über I2C auf LCD-Display 1602 zugreifen“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
sketch_oct07a.ino
#include <SPI.h> #include <Wire.h> #include <Adafruit_GFX.h> #include <Adafruit_SSD1306.h> #define DISPLAY_I2C_ADDRESS 0x3C #define DISPLAY_WIDTH 128 #define DISPLAY_HEIGHT 64 Adafruit_SSD1306 display(DISPLAY_WIDTH, DISPLAY_HEIGHT, &Wire, -1); /*#include "Arduino.h" #include "SoftwareSerial.h
in „DFPlayer Mini“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
OLED_Analogwert.ino
example code is in the public domain. */ #include <Wire.h> #include <Adafruit_GFX.h> #include <Adafruit_SSD1306.h> #define SCREEN_WIDTH 128 // Breite in Pixel #define SCREEN_HEIGHT 64 // Höhe in Pixel // OLED Display Instanz erstellen (I2C) // Reset Pin wird hier nicht benötigt, daher -1 Adafruit_SSD1306
in „I2C Display einfache Frage“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
GPS_Time_Arduino.ino
// #include <Wire.h> #include <Adafruit_GFX.h> #include <Adafruit_SSD1306.h> #include <SoftwareSerial.h> #include <TinyGPSPlus.h> // OLED Display Einstellungen (128x64 Pixel über I2C) #define SCREEN_WIDTH 128 #define SCREEN_HEIGHT 64 #define OLED_RESET -1 Adafruit_SSD1306
in „DCF-Uhr from Scratch“ · Mikrocontroller und Digitale Elektronik ·
-
PDF
oledm128-6e.pdf
EA OLEDM128-6 INCL CONTROLLER SSD1306 FOR SPI AND I²C Dimension 55x46x3.3mm FEATURES 128X64 DOTS (RELATES TO 8x21 CHARACTER OR 4x16 LARGE CHARACTER) HIGH CONTRAST OLED DISPLAY INTEGRATED CONTROLLER SSD1306 SPI INTERFACE: MOSI
in „OLED zeigt nur wirre Pixel am I2C“ · Mikrocontroller und Digitale Elektronik ·