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
/** | |
* Usage: <offset> <value> | |
* | |
* Tested on Allwinner H3. Burning to OEM_PROGRAM and NV2 works good, but to burning bits to NV1 area don't work. | |
* Use it at your own risk! I'm not responsible for any accidentally/wrongly blown fuses and voided warranties. | |
**/ | |
#include <stdio.h> | |
#include <stdint.h> | |
#include <unistd.h> |
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
const fetch = require('node-fetch') | |
const fs = require('fs-extra') | |
const child_process = require('child_process') | |
const real = true | |
let myCounties = [ | |
17, // Zvolen | |
23, // BB | |
18, // Brezno |
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
// Copyright 2018 Marek gamelaster Kraus, license: GNU GPLv3 | |
#include <ESP8266WiFi.h> | |
const char* ssid = ""; // Write WiFi name | |
const char* password = ""; // Write here WiFi password | |
WiFiServer server(80); | |
int relayState = LOW; |