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
{ | |
"version": 8, | |
"name": "Positron", | |
"metadata": { | |
"mapbox:autocomposite": false, | |
"mapbox:type": "template", | |
"mapbox:groups": { | |
"b6371a3f2f5a9932464fa3867530a2e5": { | |
"name": "Transportation", | |
"collapsed": false |
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
import fs from 'fs'; | |
import cheerio from 'cheerio'; | |
import colors from 'colors'; | |
/*eslint-disable no-console */ | |
console.log("buildHTML.js start"); | |
fs.readFile('src/index.html', 'utf8', (err, markup) => { | |
if (err) { | |
return console.log(err); |
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
#include <ESP8266WiFi.h> | |
#include <WiFiClient.h> | |
#include <ESP8266WebServer.h> | |
#include <vector> | |
#include <time.h> | |
#include "pitches.h" | |
//Variables Globales | |
enum CouleurBouton {rougeBouton=D6, bleuBouton=D5, jauneBouton=D7}; | |
enum Couleur { rouge=D2, jaune=D3, bleu=D1 }; |
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
<?xml version="1.0"?> | |
<Simulator name="RoadSimulator"> | |
<SimulatorProperties> | |
<Speed>1000</Speed> <!--Temps pour une "tour" --> | |
<MaxCars>100</MaxCars> <!-- Nb cars maximum --> | |
<!-- etc --> | |
</SimulatorProperties> | |
<SimulatorState> | |
<TypePerso1> | |
<Perso1> <!-- Personnage (Ici Voiture) --> |