User contributions
Jump to navigation
Jump to search
- 15:18, 30 April 2021 diff hist +2,031 N IoT - Modular - Platformio.ini Created page with "<syntaxhighlight lang="ini" line="1"> [platformio] extra_configs = SugarBush.ini ; extra_configs = Environmental.ini ; extra_configs = Household.ini ; extra_configs =..."
- 15:17, 30 April 2021 diff hist +53 IoT - Modular Firmware →IDE Setup & Such
- 14:33, 30 April 2021 diff hist +884 N IoT - Modular - D-SSD1306 128x32.h Created page with "<syntaxhighlight lang="cpp" line="1"> #ifndef SSD1306_H #define SSD1306_H const int SCREEN_WIDTH = 128; // OLED display width, in pixels const int SCREEN_HEIGHT = 32; // OLED..." current
- 14:32, 30 April 2021 diff hist +884 N IoT - Modular - D-SSD1306 128x64.h Created page with "<syntaxhighlight lang="cpp" line="1"> #ifndef SSD1306_H #define SSD1306_H const int SCREEN_WIDTH = 128; // OLED display width, in pixels const int SCREEN_HEIGHT = 64; // OLED..." current
- 14:32, 30 April 2021 diff hist +10,983 N IoT - Modular - StickDude.h Created page with "<syntaxhighlight lang="cpp" line="1"> #ifndef STICKDUDE_H #define STICKDUDE_H #define DUDE_HEIGHT 12 #define DUDE_WIDTH 8 static const unsigned char PROGMEM StickDude_wave[]..." current
- 14:27, 30 April 2021 diff hist +723 N IoT - Modular - S-BME280.h Created page with "<syntaxhighlight lang="cpp" line="1"> // Bosch-Sensortec // BME280 // Humidity sensor // Measures relative humidity, barometric pressure and ambient temperature // https://www..." current
- 14:27, 30 April 2021 diff hist +597 N IoT - Modular - S-BMP180.h Created page with "<syntaxhighlight lang="cpp" line="1"> // Bosch-Sensortec // BMP180 // Atmospheric Pressure sensor // *** OBSOLETE *** // Measures barometric pressure and ambient temperature..." current
- 14:26, 30 April 2021 diff hist +141 N IoT - Modular - S-Climate.h Created page with "<syntaxhighlight lang="cpp" line="1"> #ifndef CLIMATE_H #define CLIMATE_H float Pressure_Correction; #endif // CLIMATE_H </syntaxhighlight>" current
- 14:24, 30 April 2021 diff hist +127 N IoT - Modular - Noise.h Created page with "<syntaxhighlight lang="cpp" line="1"> #ifndef NOISE_H #define NOISE_H int piezoPin = 14; #endif // NOISE_H </syntaxhighlight>" current
- 14:23, 30 April 2021 diff hist +756 N IoT - Modular - Pixels.h Created page with "<syntaxhighlight lang="cpp" line="1"> #ifndef PIXELS_H #define PIXELS_H /////////////////////////////////////////////////// // Which pin is your neoPixel strip connected to #..." current
- 14:22, 30 April 2021 diff hist +762 N IoT - Modular - MQTT.h Created page with "<syntaxhighlight lang="cpp" line="1"> #ifndef MQTT_H #define MQTT_H #define MQTT_BUFFER_SIZE (100) // This number is arbitrary // To..." current
- 14:21, 30 April 2021 diff hist +518 N IoT - Modular - Externs.h Created page with "<syntaxhighlight lang="cpp" line="1"> #ifndef EXTERNS_H #define EXTERNS_H #ifdef d_Pixels extern int RED[]; extern int GRN[]; extern int BLU[]; extern int BLK[]; extern int..." current
- 14:20, 30 April 2021 diff hist 0 IoT - Modular Firmware →Header Files
- 14:19, 30 April 2021 diff hist +3,990 N IoT - Modular - Functions.h Created page with "<syntaxhighlight lang="cpp" line="1"> #ifndef FUNCTIONS_H #define FUNCTIONS_H // WiFi //////////////////////////////////////////////////////////////////////// void WiFi_init..." current
- 14:18, 30 April 2021 diff hist +3,296 N IoT - Modular - Debug.h Created page with "<syntaxhighlight lang="cpp" line="1"> #ifndef DEBUG_H #define DEBUG_H #ifdef SS_Alert const char DeviceName[] = "SugarShack PumpHuose Alerter"; const char DeviceDesc[] = "ESP..." current
- 14:16, 30 April 2021 diff hist +1,305 N IoT - Modular - Libraries.h Created page with "<syntaxhighlight lang="cpp" line="1"> #ifndef LIBRARIES_H #define LIBRARIES_H // WiFi //////////////////////////////////////////////////////////////////////// #include <ESP82..." current
- 14:11, 30 April 2021 diff hist +1,496 N IoT - Modular - TopSecret.h Created page with "<syntaxhighlight lang="cpp" line="1"> #ifndef TOPSECRET_H #define TOPSECRET_H #if WAP==0 const char* WiFi_ssid = "SSID_0"; const char* WiFi_password = "PASSWORD_0"; const cha..." current Tag: Visual edit
- 14:06, 30 April 2021 diff hist +889 IoT - Modular Firmware →Header Files Tag: Visual edit
- 13:56, 30 April 2021 diff hist +418 IoT - Modular Firmware →Header Files
- 12:48, 30 April 2021 diff hist +49 IoT - Modular Firmware
- 12:45, 30 April 2021 diff hist +71 IoT - Modular Firmware
- 12:41, 30 April 2021 diff hist +3,289 N IoT - Modular - DepthProbes.cpp Created page with "==#includes, Defines, etc...== <syntaxhighlight lang="cpp" line="1"> #include "libraries.h" #include "functions.h" /* * Puplish to tele/TankLevel * * If all probes are h..." current
- 12:38, 30 April 2021 diff hist +4,403 N IoT - Modular - BMP180.cpp Created page with "==#includes, Defines, etc...== <syntaxhighlight lang="cpp" line="1"> #include "libraries.h" #include "functions.h" #include "externs.h" #include "s-BMP180.h" extern int Alti..." current
- 12:30, 30 April 2021 diff hist +4,015 N IoT - Modular - BME280.cpp Created page with "==#includes, Defines, etc...== <syntaxhighlight lang="cpp" line="1"> #include "libraries.h" #include "functions.h" #include "externs.h" #include "s-BME280.h" extern int Alti..." current
- 00:38, 30 April 2021 diff hist +9,072 N IoT - Modular - SSD1306.cpp Created page with "==#includes, Defines, etc...== <syntaxhighlight lang="cpp" line="1"> #include "libraries.h" #include "functions.h" #include "externs.h" #include "StickDude.h" #include "d-S..." current
- 23:27, 29 April 2021 diff hist +1,159 N IoT - Modular - Pixels.cpp Created page with "==#includes, Defines, etc...== <syntaxhighlight lang="cpp" line="1"> #include "libraries.h" #include "functions.h" #include "Pixels.h" </syntaxhighlight> ==Pixels_init()==..." current
- 23:13, 29 April 2021 diff hist +44 IoT - NOTHaSP current
- 23:06, 29 April 2021 diff hist +1,102 N IoT - Modular - Noise.cpp Created page with "==#includes, Defines, etc...== <syntaxhighlight lang="cpp" line="1"> #include "libraries.h" #include "functions.h" #include "Noise.h" </syntaxhighlight> ==Noise_init()== <s..." current
- 22:45, 29 April 2021 diff hist +218 IoT - Modular Firmware
- 22:35, 29 April 2021 diff hist +4,224 N IoT - Modular - Debugging.cpp Created page with "==#includes, Defines, etc...== <syntaxhighlight lang="cpp" line="1"> #include "libraries.h" #include "functions.h" #include "debug.h" </syntaxhighlight> ==debug_TitleScreen(..." current
- 22:29, 29 April 2021 diff hist +577 N IoT - Modular - Supplimentary.cpp Created page with "==#includes, Defines, etc...== <syntaxhighlight lang="cpp" line="1"> #include "libraries.h" #include "functions.h" </syntaxhighlight> ==blinkLED()== <syntaxhighlight lang="..." current
- 22:26, 29 April 2021 diff hist +5,527 N IoT - Modular - I2C.cpp Created page with "==#includes, Defines, etc...== <syntaxhighlight lang="cpp" line="1"> #include "libraries.h" #include "functions.h" </syntaxhighlight> ==I2C_Test()== <syntaxhighlight lang="..." current
- 22:21, 29 April 2021 diff hist +4 Some debugging functions current Tag: Visual edit
- 14:04, 29 April 2021 diff hist +10,948 IoT - Modular - MQTT.cpp current
- 13:59, 29 April 2021 diff hist +944 N IoT - Modular - MQTT.cpp Created page with "==#includes, Defines, etc...== <syntaxhighlight lang="cpp" line="1"> #include "libraries.h" #include "functions.h" #include "externs.h" #include "MQTT.h" WiFiClient espClie..."
- 13:23, 29 April 2021 diff hist +3,882 N IoT - Modular - WiFi.cpp Created page with "==#includes, Defines, etc...== <syntaxhighlight lang="cpp" line="1"> #include "libraries.h" #include "functions.h" //////////////////////////////////////////////////////////..." current
- 13:16, 29 April 2021 diff hist +6,297 N IoT - Modular - main.cpp Created page with "==#includes, Defines, etc...== You'll note this is currently aimed at the SugarBush project. <syntaxhighlight lang="cpp" line="1"> #include "libraries.h" #include "functions..." current
- 13:12, 29 April 2021 diff hist +355 IoT - Modular Firmware
- 13:05, 29 April 2021 diff hist +187 IoT - Modular Firmware →Common Code Parts Tag: Visual edit: Switched
- 13:02, 29 April 2021 diff hist +434 N IoT - Modular Firmware Created page with "==Common Code Parts== * main.cpp * WiFi.cpp * MQTT.cpp * I2C.cpp * Supplimentary.cpp * Debugging.cpp =="Alerts" Code Parts== * Noise.cpp * Pixels.cpp =="Controls" Code Par..."
- 12:48, 29 April 2021 diff hist +45 IoT →Device Firmware Tag: Visual edit: Switched
- 12:24, 29 April 2021 diff hist +5,670 IoT - Collabs - ESP Firmware with Guru →Baseline current
- 12:18, 29 April 2021 diff hist +761 N IoT - Modular - Baseline Created page with "This is the basis for pretty much ANY ESP-based firmware project. It'll get your device online. ====main.cpp==== <syntaxhighlight lang="cpp" line="1"> #include "TopSecret.h"..." current
- 12:18, 29 April 2021 diff hist +34 IoT - Collabs - ESP Firmware with Guru →main.cpp
- 12:17, 29 April 2021 diff hist +24 IoT - Collabs - ESP Firmware with Guru →Baseline Tag: Visual edit
- 17:02, 28 April 2021 diff hist -3 IoT - NOTHaSP →The code as it stands
- 16:11, 28 April 2021 diff hist +132 IoT - ESP-Everything! →Projects using these boards current Tag: Visual edit: Switched
- 15:57, 28 April 2021 diff hist +2,628 IoT - NOTHaSP Tag: Visual edit: Switched
- 15:53, 28 April 2021 diff hist +49 IoT - NOTHaSP
- 15:52, 28 April 2021 diff hist +19 IoT - NOTHaSP Tag: Visual edit