Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

add code of lab1 by Petro Fedyk #17

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
54 changes: 54 additions & 0 deletions mc_labs/mc_lab_01/Petro-Fedyk/btn.h
Original file line number Diff line number Diff line change
@@ -0,0 +1,54 @@
#ifndef BTN_H
#define BTN_H

#include <Arduino.h>
#define HOLD_TIME 2000

extern const uint8_t btnGPIO;
extern unsigned long lastHoldTime;
extern unsigned long lastClickTime;
extern unsigned long currentDelay;

extern bool btnHold;
extern bool isPressBtn;
extern bool algoBlink;
extern bool siteBtnPressed;
extern bool isSiteBtnHold;

void buttonHold()
{
if (!digitalRead(btnGPIO))
{
if (!btnHold)
{
lastHoldTime = millis();
btnHold = true;
Serial.println("press");
}

if (millis() - lastHoldTime >= HOLD_TIME)
{
algoBlink = !algoBlink;
Serial.println("Button is held");
}
}
else
{
btnHold = false;
}
}

void checkSiteBtn()
{
static bool lastState = false;

if (siteBtnPressed && !lastState)
{
algoBlink = !algoBlink;
Serial.println(algoBlink ? "Algorithm mode activated" : "Default mode activated");
}

lastState = siteBtnPressed;
}

#endif
119 changes: 119 additions & 0 deletions mc_labs/mc_lab_01/Petro-Fedyk/data/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,119 @@
<!DOCTYPE HTML>
<html>

<head>
<meta name="viewport" content="width=device-width, initial-scale=1">
<style>
body {
font-family: Arial;
text-align: center;
margin: 0px auto;
padding-top: 30px;
}

.button {
padding: 10px 20px;
font-size: 24px;
text-align: center;
outline: none;
color: #fff;
background-color: #2f4468;
border: none;
border-radius: 5px;
box-shadow: 0 6px #999;
cursor: pointer;
-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.button:hover {
background-color: #1f2e45
}

.button:active {
background-color: #1f2e45;
box-shadow: 0 4px #666;
transform: translateY(2px);
}

.leds {
width: 100px;
height: 100px;
margin: 20px;
display: inline-block;
border: 5px solid black;
border-radius: 50%;
}

.container {
text-align: center;
}

#led1 {
background-color: white;
}

@media screen and (max-width: 480px) {
.leds {
width: 50px;
height: 50px;
}

.button {
padding: 15px 100px 15px 10px;
font-size: 10px;
}

h1 {
font-size: 24px;
padding-top: 20px;
}
}
</style>
</head>

<body>
<h1>ESP Pushbutton Web Server</h1>
<!-- onmousedown / onmouseup - on PC/Laptop, ontouchend / ontouchstart - on mobile -->
<button class="button" onclick="algorighm1();">Algo on mini</button>
<button class="button" onclick="algorighm2();">Algo on big</button>

<div class="container">
<h2>Mini</h2>
<div id="led1" class="leds"></div>
<div id="led2" class="leds"></div>
<div id="led3" class="leds"></div>
</div>

<div class="container">
<h2>Big</h2>
<div id="led4" class="leds"></div>
<div id="led5" class="leds"></div>
<div id="led6" class="leds"></div>
</div>




<script>
var led1 = document.getElementById('led1');
var led2 = document.getElementById('led2');
var led3 = document.getElementById('led3');

var led4 = document.getElementById('led4');
var led5 = document.getElementById('led5');
var led6 = document.getElementById('led6');

function algorighm1() {
var xhr = new XMLHttpRequest();
xhr.open("GET", "/" + x, true);
xhr.send();
}
function algorighm2() {
var xhr = new XMLHttpRequest();
xhr.open("GET", "/" + x, true);
xhr.send();
}
</script>
</body>

</html>
99 changes: 99 additions & 0 deletions mc_labs/mc_lab_01/Petro-Fedyk/indexHtml.h
Original file line number Diff line number Diff line change
@@ -0,0 +1,99 @@
#ifndef INDEX_HTML_H
#define INDEX_HTML_H

const char index_html[] PROGMEM = R"rawliteral(
<!DOCTYPE HTML>
<html>

<head>
<meta name="viewport" content="width=device-width, initial-scale=1">
<style>
body {
font-family: Arial;
text-align: center;
margin: 0px auto;
padding-top: 30px;
}

.button {
padding: 10px 20px;
font-size: 24px;
text-align: center;
outline: none;
color: #fff;
background-color: #2f4468;
border: none;
border-radius: 5px;
box-shadow: 0 6px #999;
cursor: pointer;
-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.button:hover {
background-color: #1f2e45
}

.button:active {
background-color: #1f2e45;
box-shadow: 0 4px #666;
transform: translateY(2px);
}

.leds {
width: 100px;
height: 100px;
margin: 20px;
display: inline-block;
border: 5px solid black;
border-radius: 50%;
}

.container {
text-align: center;
}

#led1 {
background-color: white;
}

@media screen and (max-width: 480px) {
.leds {
width: 50px;
height: 50px;
}

.button {
padding: 15px 100px 15px 10px;
font-size: 10px;
}

h1 {
font-size: 24px;
padding-top: 20px;
}
}
</style>
</head>

<body>
<h1>ESP Pushbutton Web Server</h1>
<!-- onmousedown / onmouseup - on PC/Laptop, ontouchend / ontouchstart - on mobile -->
<button class="button" onclick="algorighm1();">Click me</button>



<script>
let isOn = false;
function algorighm1() {
isOn = !isOn;
var xhr = new XMLHttpRequest();
xhr.open("GET", isOn ? "/on_alg1" : "/off_alg1", true);
xhr.send();
}
</script>
</body>

</html>
)rawliteral";

#endif
94 changes: 94 additions & 0 deletions mc_labs/mc_lab_01/Petro-Fedyk/mc-lab1.ino
Original file line number Diff line number Diff line change
@@ -0,0 +1,94 @@
#include <ESP8266WiFi.h>
#include <ESP8266mDNS.h>
#include <ESPAsyncTCP.h>
#include <ESPAsyncWebServer.h>
#include <WiFiClient.h>
#include "indexHtml.h"
#include "wifi.h"
#include "btn.h"

const uint8_t btnGPIO = 13;
#define LED1GPIO 0
#define LED2GPIO 14
#define LED3GPIO 12
#define BLINK_TIME 1000
#define PIN_DEFOULT 3
#define PIN_ALGO 4

unsigned long lastHoldTime = 0;
unsigned long currentDelay = 0;
unsigned long lastClickTime = 0;

bool btnHold = false;
bool isPressBtn = false;
bool algoBlink = false;
bool siteBtnPressed = false;

const uint8_t defaulLED[] = {LED1GPIO, LED2GPIO, LED3GPIO};
const uint8_t algolLED[] = {LED3GPIO, LED2GPIO, LED1GPIO, LED2GPIO, LED3GPIO};

void pinsSetup()
{
pinMode(btnGPIO, INPUT);
for (uint8_t i = 0; i < PIN_DEFOULT; i++)
{
pinMode(defaulLED[i], OUTPUT);
}
for (uint8_t j = 0; j < PIN_ALGO; j++)
{
pinMode(algolLED[j], OUTPUT);
}
}

void setup()
{
Serial.begin(115200);
pinsSetup();
initWiFi();
InitMDNS();
}

uint8_t currentLED = 0;

void do_algorithm()
{
if (millis() - currentDelay >= BLINK_TIME)
{
currentDelay = millis();

if (algoBlink)
{
if (currentLED > 0)
digitalWrite(algolLED[currentLED - 1], LOW);
else
digitalWrite(algolLED[sizeof(algolLED) / sizeof(algolLED[0]) - 1], LOW);

digitalWrite(algolLED[currentLED], HIGH);
Serial.println(currentLED);
Serial.println("algo blink");

currentLED = (currentLED + 1) % (sizeof(algolLED) / sizeof(algolLED[0]));
}
else
{
if (currentLED > 0)
digitalWrite(defaulLED[currentLED - 1], LOW);
else
digitalWrite(defaulLED[sizeof(defaulLED) / sizeof(defaulLED[0]) - 1], LOW);

digitalWrite(defaulLED[currentLED], HIGH);
Serial.println(currentLED);
Serial.println("default blink");

currentLED = (currentLED + 1) % (sizeof(defaulLED) / sizeof(defaulLED[0]));
}
}
}

void loop()
{
MDNS.update();
buttonHold();
do_algorithm();
checkSiteBtn();
}
Loading
Loading