Skip to content

Instantly share code, notes, and snippets.

View zielu92's full-sized avatar
🎯
Focusing

Michał Zieliński zielu92

🎯
Focusing
View GitHub Profile
#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"
//+------------------------------------------------------------------+
//| 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 {
@zielu92
zielu92 / modelCountry.dart
Last active June 3, 2024 12:11
Model of countries and list of countries with emoji flag, phone code and 2 digit country iso code
ModelCountry {
String? image;
String? name;
String? code;
String? iso;
ModelCountry(this.image, this.name, this.code, this.iso);
}
List<ModelCountry> countries = [