Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- /********* Pleasedontcode.com **********
- Pleasedontcode thanks you for automatic code generation! Enjoy your code!
- - Terms and Conditions:
- You have a non-exclusive, revocable, worldwide, royalty-free license
- for personal and commercial use. Attribution is optional; modifications
- are allowed, but you're responsible for code maintenance. We're not
- liable for any loss or damage. For full terms,
- please visit pleasedontcode.com/termsandconditions.
- - Project: "OLED Setup"
- - Source Code compiled for: ESP32 DevKit V1
- - Source Code created on: 2024-02-17 06:44:15
- ********* Pleasedontcode.com **********/
- /****** SYSTEM REQUIREMENTS *****/
- /****** SYSTEM REQUIREMENT 1 *****/
- /* wyswietl na wyswietlaczy encje pobrane z home */
- /* assistant */
- /****** SYSTEM REQUIREMENT 2 *****/
- /* Wyswietl encje pobrane z home assistant. ip Home */
- /* assistant to 192.168.1.200 ssid: Coolmatic_Home */
- /* password: Slodziak770811m */
- /****** END SYSTEM REQUIREMENTS *****/
- /****** DEFINITION OF LIBRARIES *****/
- #include <Wire.h>
- #include <Adafruit_SSD1306.h>
- #include <U8g2_for_Adafruit_GFX.h>
- /****** FUNCTION PROTOTYPES *****/
- void setup(void);
- void loop(void);
- /****** DEFINITION OF I2C PINS AND SLAVE ADDRESS *****/
- const uint8_t SSD1306_I2C_SDA_PIN = 21;
- const uint8_t SSD1306_I2C_SCL_PIN = 22;
- const uint8_t SSD1306_I2C_SLAVE_ADDRESS = 60;
- /****** DEFINITION OF LIBRARY CLASS INSTANCES *****/
- Adafruit_SSD1306 display(SSD1306_I2C_SDA_PIN, SSD1306_I2C_SCL_PIN, SSD1306_I2C_SLAVE_ADDRESS);
- U8G2_FOR_ADAFRUIT_GFX u8g2_for_adafruit_gfx;
- /****** SYSTEM REQUIREMENTS *****/
- /****** SYSTEM REQUIREMENT 1 *****/
- // Display entities received from Home Assistant
- void displayEntitiesFromHomeAssistant() {
- // Code to fetch and display entities from Home Assistant
- }
- /****** SYSTEM REQUIREMENT 2 *****/
- // Display entities fetched from Home Assistant with IP: 192.168.1.200, SSID: Coolmatic_Home, Password: Slodziak770811m
- void displayEntitiesFromHomeAssistantWithIP() {
- // Code to fetch and display entities from Home Assistant with the specified IP
- }
- void setup(void)
- {
- // Initialize display with I2C pins and slave address
- display.begin(SSD1306_SWITCHCAPVCC, SSD1306_I2C_SLAVE_ADDRESS);
- // Initialize U8g2_for_Adafruit_GFX
- u8g2_for_adafruit_gfx.begin(display);
- // Other setup code here
- }
- void loop(void)
- {
- // Main code here
- // Display update code
- display.display();
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement