This file contains hidden or 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
/******************************************************************************* | |
* (C) Copyright 2025; Nepal Digital Systems Pvt. Ltd., Kathmandu, Nepal. The | |
* attached material and the information contained therein is proprietary to | |
* Nepal Digital Systems Pvt. Ltd. and is issued only under strict confidentiality | |
* arrangements.It shall not be used, reproduced, copied in whole or in part, adapted, | |
* modified, or disseminated without a written license of Nepal Digital Systems Pvt. | |
* Ltd. .It must be returned to Nepal Digital Systems Pvt. Ltd. upon its first request. | |
*******************************************************************************/ | |
/******************************************************************************* |
This file contains hidden or 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 hidden or 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() { |
This file contains hidden or 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 hidden or 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 hidden or 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()); | |
} | |
} |