This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
void setup() { | |
Serial.begin(115200); | |
} | |
void loop() { | |
while(Serial.available() > 0) { | |
Serial.write(Serial.read()); | |
} | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
* Project : Meat Curing Chamber Controller | |
* Author : Lomas Subedi | |
* Controller : ESP WROOM - 32 | |
*/ | |
/* | |
* ------------------------ | |
* Pin Configuration | |
* ------------------------ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <WiFi.h> | |
#include <WiFiClient.h> | |
#include <SPI.h> | |
#include <Wire.h> | |
#include <HTTPClient.h> | |
#include "ArduinoJson.h" | |
#include "Adafruit_BME280.h" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#define v_major 4 | |
#define v_minor 2 | |
#define v_patch 3 | |
uint32_t = (v_major << 16) | (v_minor << 8) | v_patch; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#define BAUD 115200UL | |
void setup() { | |
// put your setup code here, to run once: | |
Serial.begin(BAUD); | |
} | |
void loop() { |