http://tinkerman.cat/rpi3_iot_server.pdf (Catalan)
- download the latest image
#include <FS.h> | |
#include <ESP8266WiFi.h> | |
#include <WiFiClientSecure.h> | |
#include <PubSubClient.h> | |
#include <time.h> | |
// Insert your FQDN of your MQTT Broker | |
#define MQTT_SERVER "mqtt.srvx1.local" | |
const char* mqtt_server = MQTT_SERVER; |
http://tinkerman.cat/rpi3_iot_server.pdf (Catalan)
display torig borig; # Display the top and bottom origins | |
group all; # Group everything | |
smash (C>0 0); # Smash everything in the group | |
display none tname bname tval bval; # OPTIONAL: limit changes to | |
names and values | |
group all; # Group everything including smashed texts. | |
change font vector (C>0 0); # Change the font to a vector font | |
change size 50mil (C>0 0); # Change the font size | |
change ratio 15 (C>0 0); # Change the width:height ratio |
Getting started:
Related tutorials:
version: "3.3" | |
services: | |
traefik: | |
image: "traefik:v2.2" | |
container_name: "traefik" | |
command: | |
- "--api=true" | |
- "--api.dashboard=true" |