Difference between revisions of "IoT - Collabs - ESP Firmware with Guru"

From The TinkerNet Wiki
Jump to navigation Jump to search
Line 1: Line 1:
 
==Modular Firmware==
 
==Modular Firmware==
  
=== Baseline ===
+
===Baseline===
  
 
This is the basis for pretty much ANY ESP-based firmware project.  It'll get your device online.
 
This is the basis for pretty much ANY ESP-based firmware project.  It'll get your device online.
  
==== main.cpp ====
+
====main.cpp====
 
<syntaxhighlight lang="cpp" line="1">
 
<syntaxhighlight lang="cpp" line="1">
 
#include "TopSecret.h"
 
#include "TopSecret.h"
Line 31: Line 31:
 
</syntaxhighlight>
 
</syntaxhighlight>
  
==== The parts ====
+
====The parts====
  
 
[[Modular ESP Firmware - Baseline - Work Environment|Work Environment]] (Platformio/VSC setup)
 
[[Modular ESP Firmware - Baseline - Work Environment|Work Environment]] (Platformio/VSC setup)
Line 48: Line 48:
 
to your <code>platformio.ini</code> file.
 
to your <code>platformio.ini</code> file.
  
==== main.cpp ====
+
====main.cpp====
  
 
Add:
 
Add:
Line 62: Line 62:
 
inside '''loop()'''
 
inside '''loop()'''
  
==== The rest of the parts ====
+
====The rest of the parts====
  
 
[[Modular ESP Firmware - MQTT - Declarations and Defines|Declarations and Defines]]
 
[[Modular ESP Firmware - MQTT - Declarations and Defines|Declarations and Defines]]
Line 113: Line 113:
 
[[Modular ESP Firmware - TFT - Source|Source code]]
 
[[Modular ESP Firmware - TFT - Source|Source code]]
  
=== OLED Display ===
+
===OLED Display===
  
 
[[Modular ESP Firmware - TFT - Source|Source code]]
 
[[Modular ESP Firmware - TFT - Source|Source code]]
  
==== (upcoming) ====
+
====(upcoming)====
 +
[[File:Little OLEDs.jpg|thumb]]
 +
 
 +
 
 +
[[File:OLED example.mp4|thumb]]
  
 
===Climate Sensing===
 
===Climate Sensing===

Revision as of 15:20, 4 January 2021

Modular Firmware

Baseline

This is the basis for pretty much ANY ESP-based firmware project. It'll get your device online.

main.cpp

 1 #include "TopSecret.h"
 2 #include "functions.h"
 3 
 4 void setup()
 5 {
 6   Serial.begin(115200);
 7   delay(50); // Delay to let the ESP get booted before sending out serial data
 8   Serial.printf("\n+---------------------------------------+\n");
 9   Serial.printf("|             ESP Baseline              |\n");
10   Serial.printf("+---------------------------------------+\n");
11 
12   setup_wifi();
13 
14   // Turn off the On-board LED (notice that it's inverted on most ESP boards)
15   pinMode(LED_BUILTIN, OUTPUT);
16   digitalWrite(LED_BUILTIN, HIGH);
17 }
18 
19 void loop()
20 {
21   // put your main code here, to run repeatedly:
22 }

The parts

Work Environment (Platformio/VSC setup)

Declarations and Defines

Individual Functions

MQTT

This is intended to be added to the baseline.

You'll need to add:

lib_deps =
       PubSubClient

to your platformio.ini file.

main.cpp

Add:

setup_mqtt();

to setup() after the setup_wifi(); call.

Put:

DOtheBloodyMQTT();

inside loop()

The rest of the parts

Declarations and Defines

Individual Functions

OTA

Gurus source code...

Source code

Ffffffuuuuuuuu......

Configuration HotSpot

Source code

Wiegand RFID keypad

Source code

NeoPixels

Extreme WIP

This is intended to be added to the baseline.

You'll need to add:

lib_deps =
       Adafruit NeoPixel

to your platformio.ini file.

and put

#include <Adafruit_NeoPixel.h>

in your source

Declarations and Defines

Individual Functions

Web Serving

Source code

TFT Display

Source code

OLED Display

Source code

(upcoming)

Little OLEDs.jpg


Climate Sensing

Source code

Energy Monitoring

Source code

Modularization Tutorial (WIP)

The source code...