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
# brew install bash-completion | |
if [ -f /usr/local/etc/bash_completion ]; then | |
. /usr/local/etc/bash_completion | |
fi | |
# DL git prompt here: https://github.com/git/git/blob/master/contrib/completion/git-prompt.sh | |
source ~/.git-prompt.sh | |
export PS1='\w\[\e[0;33m\]$(__git_ps1 " (%s)")\[\e[m\]\$ ' |
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
int tempo = 50; | |
void setup() { | |
// put your setup code here, to run once: | |
Serial.begin(31250); | |
Serial.write(250); | |
} | |
void loop() { | |
// put your main code here, to run repeatedly: | |
for (int i = 0; i < 10; i++) { |
NewerOlder