Advertisement
pleasedontcode

haroon rev_01

Sep 23rd, 2023
128
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. /********* Pleasedontcode.com **********
  2.  
  3.     Pleasedontcode thanks you for automatic code generation! Enjoy your code!
  4.  
  5.     - Terms and Conditions:
  6.     You have a non-exclusive, revocable, worldwide, royalty-free license
  7.     for personal and commercial use. Attribution is optional; modifications
  8.     are allowed, but you're responsible for code maintenance. We're not
  9.     liable for any loss or damage. For full terms,
  10.     please visit pleasedontcode.com/termsandconditions.
  11.  
  12.     - Project: haroon
  13.     - Source Code compiled for: Arduino Pro Mini 5V
  14.     - Source Code created on: 2023-09-23 22:19:24
  15.     - Source Code generated by: Haroon
  16.  
  17. ********* Pleasedontcode.com **********/
  18. /****** DEFINITION OF LIBRARIES *****/
  19. #include <Arduino.h>
  20. #include <Wire.h>
  21. #include <Adafruit_SSD1306.h>
  22.  
  23. /****** SYSTEM REQUIREMENT 1 *****/
  24. /* wifi cods haking app */
  25.  
  26. /****** FUNCTION PROTOTYPES *****/
  27. void setup(void);
  28. void loop(void);
  29.  
  30. /***** DEFINITION OF I2C PINS *****/
  31. static const uint8_t haroon_SSD1306OledDisplay_I2C_PIN_SDA_A4 = A4;
  32. static const uint8_t haroon_SSD1306OledDisplay_I2C_PIN_SCL_A5 = A5;
  33. static const uint8_t haroon_SSD1306OledDisplay_I2C_SLAVE_ADDRESS = 60;
  34.  
  35. void setup(void)
  36. {
  37.     // put your setup code here, to run once:
  38.  
  39. }
  40.  
  41.  
  42. void loop(void)
  43. {
  44.     // put your main code here, to run repeatedly:
  45.  
  46. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement