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 <FS.h> | |
#include <ESP8266WiFi.h> | |
#include <DNSServer.h> | |
#include <ESP8266WebServer.h> | |
#include <WiFiManager.h> | |
#include <ArduinoJson.h> | |
#include <ESP8266HTTPClient.h> | |
#include <DHT.h> | |
#define DHTPIN 0 |
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
ORG 100H ; OFFSET PER I PROGRAMMI 8086 | |
PRINT MACRO S ; CREO UNA MACRO CHIAMATA "PRINT" CON UN PARAMETRO S (Stringa) | |
LEA DX, S ; SPOSTO IL CONTENUTO DEL PARAMETRO IN DX | |
MOV AH, 09H ; USO IL CODICE DI INTERRUPT 09H = MOSTRA STRINGA A SCHERMO | |
INT 21H ; COMUNICO L'INTERRUPT | |
PRINT ENDM ; FINISCO LA MACRO | |
CHAR MACRO C ; CREO UNA MACRO CHIAMATA "CHAR" CON UN PARAMETRO C (Carattere) | |
MOV DL, C ; SPOSTO IL CONTENUTO DEL PARAMETRO IN DL |
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 <stdio.h> | |
#include <stdlib.h> | |
#include <strings.h> | |
#define NOME_FILE "file.txt" | |
/* Scrivere un programma che, attraverso un menù, acquisisca i dati dei clienti, li memorizzi, ne permetta la modifica, l'eliminazione, la visualizzazione e l'ordinamento. */ | |
typedef struct { | |
char nome[200]; |