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
| __---~~~~--__ __--~~~~---__ ____ __ | |
| `\---~~~~~~~~\\ //~~~~~~~~---/' / __ \___ / / ____ ________ ____ _____ | |
| \/~~~~~~~~~\|| ||/~~~~~~~~~\/ / / / / _ \/ / / __ \/ ___/ _ \/ __ `/ __ \ | |
| `\\ //' / /_/ / __/ /___/ /_/ / / / __/ /_/ / / / / | |
| `\\ //' /_____/\___/_____/\____/_/ \___/\__,_/_/ /_/ | |
| || || Hey Doc! / __ \___ _ __ | |
| ______--~~~~~~~~~~~~~~~~~~--______ / / / / _ \ | / / | |
| ___ // _-~ ~-_ \\ ___ / /_/ / __/ |/ / | |
| `\__)\/~ ~\/(__/' /_____/\___/|___/ |
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 <Arduino.h> | |
| #include <FastLED.h> | |
| //DIGITAL STRIP SIDES | |
| // #define DATA_PIN 22 | |
| // #define CLK_PIN 23 | |
| //DIGITAL STRIP SIDES | |
| #define DATA_PIN 8 | |
| #define CLK_PIN 9 |
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
| using System; | |
| using System.Threading; | |
| namespace FumantesEmCSharp | |
| { | |
| class Program | |
| { | |
| static void Main(string[] args) | |
| { | |
| FumantesUsandoMutex ProblemaDosFumantes = new FumantesUsandoMutex(); |
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
| var ssid = "DCC-LCI"; | |
| var password = "aluno.dcc!"; | |
| //wifi config and connect | |
| var wifi; | |
| var ip; | |
| var wifi = require("Wifi"); | |
| wifi.connect(ssid, {password:password}, function(e) { | |
| if (e) { |