First effort in creating a rest API
This commit is contained in:
parent
218bf5b114
commit
b6f2b48647
3 changed files with 231 additions and 0 deletions
140
gadgety_esp8266_embedded_HTML.ino
Normal file
140
gadgety_esp8266_embedded_HTML.ino
Normal file
|
@ -0,0 +1,140 @@
|
|||
#include <DNSServer.h>
|
||||
#include <ESP8266WiFi.h>
|
||||
#include <WiFiClient.h>
|
||||
#include <ESP8266WebServer.h>
|
||||
//#include <FS.h>
|
||||
#include "index_html.h"
|
||||
#include <list>
|
||||
|
||||
using namespace std;
|
||||
|
||||
#define TIMESTEPS 80000 // 1 millisecond
|
||||
#define LINES_NUM 8
|
||||
|
||||
typedef unsigned int line_time_t;
|
||||
|
||||
enum {
|
||||
EVENT_NOTEON,
|
||||
EVENT_NOTEOFF,
|
||||
EVENT_JUMP,
|
||||
EVENT_BARRIER,
|
||||
EVENT_ENVELOPE // Todo
|
||||
};
|
||||
|
||||
typedef struct {
|
||||
unsigned type;
|
||||
line_time_t time;
|
||||
unsigned tone;
|
||||
line_time_t new_cursor;
|
||||
unsigned lines_mask;
|
||||
} event_t;
|
||||
|
||||
typedef struct {
|
||||
line_time_t cursor;
|
||||
// ADSR? Other line/synth parameters?
|
||||
list<event_t> events;
|
||||
list<event_t>::iterator next_event;
|
||||
} line_t;
|
||||
|
||||
// Todo: jsonify() and unjsonify()
|
||||
line_t lines[LINES_NUM];
|
||||
|
||||
void sequencer_init(void)
|
||||
{
|
||||
unsigned i;
|
||||
|
||||
for(i = 0; i < LINES_NUM; ++i) {
|
||||
lines[i].cursor = 0;
|
||||
lines[i].next_event = lines[i].events.begin();
|
||||
}
|
||||
pinMode(2, OUTPUT);
|
||||
}
|
||||
|
||||
// Call every TIMESTEPS seconds
|
||||
void sequencer_main_loop(void)
|
||||
{
|
||||
unsigned i;
|
||||
|
||||
// Restart main loop timer
|
||||
timer0_write(ESP.getCycleCount() + TIMESTEPS);
|
||||
|
||||
for(i = 0; i < LINES_NUM; ++i) {
|
||||
while(lines[i].next_event != lines[i].events.end() && lines[i].next_event->time == lines[i].cursor) {
|
||||
// Peform event: lines[i].next_event
|
||||
// ...
|
||||
++lines[i].next_event;
|
||||
}
|
||||
|
||||
if(lines[i].next_event != lines[i].events.end())
|
||||
++lines[i].cursor;
|
||||
}
|
||||
|
||||
digitalWrite(2, !digitalRead(2));
|
||||
}
|
||||
|
||||
const byte DNS_PORT = 53;
|
||||
ESP8266WebServer server(80); //Server on port 80
|
||||
IPAddress myIP = WiFi.softAPIP(); //Get IP address
|
||||
DNSServer dnsServer;
|
||||
|
||||
void redirect_index()
|
||||
{
|
||||
server.sendHeader("Location", "/");
|
||||
server.send(301);
|
||||
}
|
||||
|
||||
void serve_index()
|
||||
{
|
||||
server.sendHeader("Content-Encoding", "gzip");
|
||||
server.send_P(200, "text/html", (const char*)index_html_gz, index_html_gz_len);
|
||||
}
|
||||
|
||||
void serve_random()
|
||||
{
|
||||
server.send(200, "application/json", "{ \"val\": " + String(rand()) + " }");
|
||||
}
|
||||
|
||||
void setup()
|
||||
{
|
||||
// Start sequencer
|
||||
sequencer_init();
|
||||
|
||||
noInterrupts();
|
||||
timer0_isr_init();
|
||||
timer0_attachInterrupt(sequencer_main_loop);
|
||||
timer0_write(ESP.getCycleCount() + TIMESTEPS);
|
||||
interrupts();
|
||||
|
||||
// SPIFFS.begin();
|
||||
Serial.begin(115200);
|
||||
WiFi.mode(WIFI_AP); //Only Access point
|
||||
WiFi.softAP("Gadgety", "gadgety123"); //Start HOTspot removing password will disable security
|
||||
// server.on("/", handleRoot); //Which routine to handle at root location
|
||||
server.onNotFound([]() {
|
||||
// handleRoot();
|
||||
});
|
||||
server.begin(); //Start server
|
||||
//server.serveStatic("/", SPIFFS, "/index.html");
|
||||
|
||||
server.onNotFound(redirect_index);
|
||||
server.on("/index.html", serve_index);
|
||||
server.on("/", serve_index);
|
||||
server.on("/random.ws", serve_random);
|
||||
|
||||
dnsServer.start(DNS_PORT, "www.gadgety.com", myIP);
|
||||
}
|
||||
void loop() {
|
||||
dnsServer.processNextRequest();
|
||||
server.handleClient(); //Handle client requests
|
||||
if (server.arg(1)=="1") {
|
||||
Serial.print("Acceso");
|
||||
} else if (server.arg(1)=="0") {
|
||||
Serial.print("Spento");
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
|
||||
// void handleRoot() {
|
||||
// server.send (200, "text/html", index.html);
|
||||
// }
|
37
index.html
Normal file
37
index.html
Normal file
|
@ -0,0 +1,37 @@
|
|||
<!doctype html>
|
||||
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta http-equiv="x-ua-compatible" content="ie=edge">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1, viewport-fit=cover">
|
||||
<title>Random generator</title>
|
||||
<style>
|
||||
/*=======================COMUNE=====================*/
|
||||
|
||||
html{
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<h2>Random number generator (hurray!)</h2>
|
||||
<input type="button" value="Generate" onclick="receive_random()">
|
||||
<p id="value">Press to generate new value</p>
|
||||
<script type="text/javascript">
|
||||
function receive_random() {
|
||||
var xmlhttp = new XMLHttpRequest();
|
||||
|
||||
xmlhttp.onreadystatechange = function() {
|
||||
if(this.readyState == 4 && this.status == 200) {
|
||||
var result = JSON.parse(this.responseText);
|
||||
console.log(result);
|
||||
document.getElementById("value").innerHTML = result.val;
|
||||
}
|
||||
};
|
||||
xmlhttp.open("GET", "/random.ws", true);
|
||||
xmlhttp.send();
|
||||
}
|
||||
</script>
|
||||
</body>
|
||||
</html>
|
54
index_html.h
Normal file
54
index_html.h
Normal file
|
@ -0,0 +1,54 @@
|
|||
unsigned char PROGMEM index_html_gz[] = {
|
||||
0x1f, 0x8b, 0x08, 0x08, 0x4a, 0x96, 0x5c, 0x5b, 0x00, 0x03, 0x69, 0x6e,
|
||||
0x64, 0x65, 0x78, 0x2e, 0x68, 0x74, 0x6d, 0x6c, 0x00, 0x6d, 0x54, 0xcb,
|
||||
0x6e, 0xdb, 0x30, 0x10, 0x3c, 0xd7, 0x5f, 0xb1, 0x21, 0xd0, 0x40, 0x0e,
|
||||
0x22, 0xc9, 0x4e, 0x7b, 0x68, 0x62, 0xd1, 0x87, 0x16, 0x41, 0xd2, 0x22,
|
||||
0x8f, 0x22, 0x49, 0x81, 0xde, 0x0a, 0x59, 0x5a, 0x4b, 0x6c, 0x25, 0x52,
|
||||
0x25, 0x57, 0x92, 0x8d, 0x20, 0xff, 0x5e, 0x52, 0x94, 0x61, 0x37, 0x88,
|
||||
0x2f, 0xe2, 0x2e, 0x67, 0x66, 0xd7, 0xa3, 0xb1, 0x93, 0xa3, 0x5c, 0x65,
|
||||
0xb4, 0x6d, 0x10, 0x4a, 0xaa, 0xab, 0xe5, 0x24, 0x71, 0x0f, 0xd8, 0xd4,
|
||||
0x95, 0x34, 0x9c, 0x95, 0x44, 0xcd, 0x45, 0x1c, 0xf7, 0x7d, 0x1f, 0xf5,
|
||||
0x1f, 0x22, 0xa5, 0x8b, 0x78, 0x7e, 0x7e, 0x7e, 0x1e, 0x6f, 0x1c, 0x86,
|
||||
0x39, 0x2c, 0xa6, 0xf9, 0x72, 0x02, 0x90, 0xd4, 0x48, 0x29, 0x64, 0x65,
|
||||
0xaa, 0x0d, 0x12, 0x67, 0x2d, 0xad, 0xc3, 0x4f, 0x6c, 0x7f, 0xe1, 0x64,
|
||||
0x42, 0xfc, 0xdb, 0x8a, 0x8e, 0xb3, 0x4d, 0xd8, 0xa6, 0x61, 0xa6, 0xea,
|
||||
0x26, 0x25, 0xb1, 0xaa, 0x90, 0x41, 0xa6, 0x24, 0xa1, 0xb4, 0x2c, 0x81,
|
||||
0x1c, 0xf3, 0x02, 0x0f, 0x78, 0x32, 0xad, 0x91, 0xb3, 0x4e, 0x60, 0xdf,
|
||||
0x28, 0x4d, 0x07, 0xd0, 0x5e, 0xe4, 0x54, 0xf2, 0x1c, 0x3b, 0x91, 0x61,
|
||||
0x38, 0x14, 0xa7, 0x20, 0xa4, 0x20, 0x91, 0x56, 0xa1, 0xc9, 0xd2, 0x0a,
|
||||
0xf9, 0xfc, 0x14, 0x76, 0xbc, 0x70, 0x2d, 0x88, 0x67, 0xaa, 0x43, 0xed,
|
||||
0xa5, 0x49, 0x50, 0x85, 0xcb, 0x87, 0x54, 0xe6, 0xaa, 0x86, 0x02, 0x25,
|
||||
0xea, 0x94, 0x94, 0x4e, 0x62, 0xdf, 0x77, 0x08, 0x43, 0x5b, 0x7f, 0x8a,
|
||||
0x4f, 0xf8, 0xdb, 0x9f, 0x2f, 0xf7, 0xb7, 0x3f, 0xee, 0x2e, 0xdf, 0xbc,
|
||||
0x3a, 0x89, 0x27, 0x96, 0xe9, 0x1c, 0x7a, 0xb6, 0xcf, 0x77, 0xc3, 0x76,
|
||||
0x17, 0x30, 0x9f, 0xcd, 0xde, 0x2f, 0x5c, 0x5d, 0xa2, 0x28, 0x4a, 0xda,
|
||||
0x37, 0x5e, 0xdc, 0xc0, 0x78, 0x9c, 0x98, 0xc4, 0xde, 0xd1, 0x64, 0xa5,
|
||||
0xf2, 0xed, 0xb0, 0x4a, 0x79, 0xb6, 0xdb, 0x54, 0xb6, 0xf5, 0x0a, 0xf5,
|
||||
0x7e, 0x61, 0x08, 0xca, 0x56, 0xeb, 0x74, 0x7b, 0x34, 0xb5, 0xac, 0xb3,
|
||||
0x01, 0x2c, 0x64, 0xd3, 0x12, 0xb8, 0x97, 0xc9, 0xd9, 0xaa, 0x25, 0x52,
|
||||
0x92, 0x41, 0x97, 0x56, 0xad, 0x2d, 0xaf, 0x3c, 0xcd, 0xfa, 0xad, 0x64,
|
||||
0x56, 0x89, 0xec, 0x0f, 0x67, 0x1a, 0x33, 0x14, 0x1d, 0xfe, 0xd2, 0x83,
|
||||
0x7e, 0x30, 0xf5, 0xee, 0x34, 0x20, 0x72, 0xeb, 0xb9, 0x63, 0xb1, 0xe5,
|
||||
0x77, 0x8d, 0xc6, 0x00, 0xa9, 0xdd, 0x54, 0x04, 0x89, 0xbd, 0x97, 0x4c,
|
||||
0xe2, 0xc6, 0x7b, 0x95, 0x69, 0xd1, 0xec, 0x86, 0x12, 0x6e, 0x28, 0xfe,
|
||||
0x9d, 0x76, 0xa9, 0xef, 0x0e, 0x8a, 0x00, 0xeb, 0x56, 0x66, 0x24, 0x94,
|
||||
0x84, 0xd7, 0x13, 0xe1, 0x79, 0xb8, 0x07, 0xab, 0xa8, 0x5d, 0xe4, 0x5c,
|
||||
0x4e, 0x80, 0x0f, 0x33, 0x7e, 0xde, 0xde, 0x5c, 0xdb, 0xea, 0xc1, 0xa6,
|
||||
0x06, 0x0d, 0x05, 0xd3, 0xc5, 0x64, 0x84, 0x8e, 0xb0, 0x48, 0x49, 0x6d,
|
||||
0xad, 0xda, 0x1a, 0xb2, 0x5b, 0xd9, 0xe0, 0xc9, 0x02, 0x2d, 0x73, 0x37,
|
||||
0xe9, 0x40, 0x1a, 0x40, 0xac, 0x03, 0x2a, 0x85, 0x89, 0x06, 0xfc, 0xa3,
|
||||
0xc3, 0x03, 0xe7, 0xf0, 0x11, 0x8e, 0x8f, 0x61, 0xe8, 0x3b, 0x89, 0xd6,
|
||||
0xb8, 0xde, 0xd9, 0x6c, 0x76, 0x48, 0xf4, 0x7b, 0x59, 0x0b, 0xda, 0x8a,
|
||||
0xac, 0xf8, 0xb7, 0xc7, 0xfb, 0xbb, 0xa8, 0x71, 0x11, 0xdf, 0xe9, 0x99,
|
||||
0x46, 0x49, 0x83, 0x4f, 0xf6, 0x4b, 0x4f, 0x17, 0x07, 0x2c, 0x1b, 0x53,
|
||||
0xa3, 0x2a, 0x8c, 0x2a, 0x55, 0x04, 0x9e, 0xfd, 0xdf, 0xb5, 0xfd, 0xbd,
|
||||
0xb5, 0xb5, 0x8d, 0x71, 0x54, 0x20, 0x5d, 0x56, 0xe8, 0x8e, 0x9f, 0xb7,
|
||||
0x5f, 0xf3, 0x60, 0x34, 0x7d, 0x1a, 0x09, 0x69, 0xcd, 0xbe, 0x7e, 0xba,
|
||||
0xbd, 0xb1, 0x43, 0x3d, 0x3f, 0xb2, 0x57, 0x7b, 0x89, 0x97, 0xf1, 0xf4,
|
||||
0xb2, 0x78, 0xed, 0x49, 0x83, 0x32, 0x60, 0x57, 0x97, 0x4f, 0xec, 0x14,
|
||||
0x58, 0xec, 0x5d, 0x8e, 0x7a, 0x63, 0x2b, 0xd2, 0x2d, 0x4e, 0x5f, 0xc3,
|
||||
0x0d, 0xca, 0x3c, 0x18, 0xbb, 0x63, 0x0c, 0x87, 0xd7, 0xe6, 0x72, 0xe8,
|
||||
0x03, 0x68, 0x93, 0x35, 0xfc, 0x29, 0xfc, 0x03, 0xa3, 0xe0, 0x3b, 0xbc,
|
||||
0x25, 0x04, 0x00, 0x00
|
||||
};
|
||||
unsigned int index_html_gz_len = 604;
|
Loading…
Reference in a new issue