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
ModelCountry { | |
String? image; | |
String? name; | |
String? code; | |
String? iso; | |
ModelCountry(this.image, this.name, this.code, this.iso); | |
} | |
List<ModelCountry> countries = [ |
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
//+------------------------------------------------------------------+ | |
//| LCD.mq5 | | |
//| Copyright 2021, mzielinski.pl | | |
//| https://www.mzielinski.pl | | |
//+------------------------------------------------------------------+ | |
#property copyright "Copyright 2021, mzielinski.pl" | |
#property link "https://www.mzielinski.pl" | |
#property version "1.00" | |
enum ENUM_LCD { |
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 <ESP8266WiFi.h> | |
#include <WiFiClient.h> | |
#include <ESP8266WebServer.h> | |
#include <uri/UriBraces.h> | |
#include <LiquidCrystal_I2C.h> | |
#include <Wire.h> | |
#ifndef STASSID | |
#define STASSID "SSID" | |
#define STAPSK "PASSWORD" |