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
| # https://github.com/microsoft/wslg/issues/479 | |
| # https://github.com/arkane-systems/genie/issues/175#issuecomment-922526126 | |
| # Append below to your .bashrc to fix wslg | |
| wsl_mount_root=/mnt | |
| wsl_windir="${wsl_mount_root}/c/WINDOWS/System32" | |
| wsl_distro=Ubuntu-20.04 | |
| wsl_wslg_display=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
| { | |
| "packages": [ | |
| { | |
| "maintainer": "DFRobot DFRDuino", | |
| "help": { | |
| "online": "http://esp32.com" | |
| }, | |
| "websiteURL": "https://github.com/espressif/arduino-esp32", | |
| "platforms": [ | |
| { |
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 <Servo.h> | |
| Servo myservo; | |
| void setup() { | |
| Serial.begin(9600); | |
| myservo.attach(7); | |
| myservo.writeMicroseconds(1500); | |
| } |
OlderNewer