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 <LiquidCrystal.h> | |
LiquidCrystal lcd(7, 8, 9, 10, 11, 12); | |
void setup() { | |
lcd.begin(16,2); | |
lcd.print("Temperatura:"); | |
} | |
void loop() { | |
int leitura = analogRead(A0); |
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
#define bPin 9 | |
#define gPin 10 | |
#define rPin 11 | |
int r, g, b; | |
int hue; | |
void setup() { | |
pinMode(rPin, OUTPUT); | |
pinMode(gPin, OUTPUT); |
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
/** | |
Morse.cpp - Library for morse code translating. | |
Created by Matheus Ashton Silva, January 24th, 2011. | |
Release under CC license http://creativecommons.org/ | |
**/ | |
#include "WProgram.h" | |
#include "Morse.h" | |
Morse::Morse(int ledPin, int buzzPin, int buttonPin, const LiquidCrystal& lcd) : _lcd( lcd ) { |
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
[user] | |
name = Matheus Ashton | |
email = [email protected] | |
[color] | |
ui = auto | |
[color "branch"] | |
current = yellow reverse | |
local = yellow | |
remote = green | |
[color "diff"] |
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 hyper_keystroke = ":ctrl,cmd,shift,alt"; | |
var window_keystroke = ":w,ctrl,cmd,shift,alt"; | |
var layout_keystroke = ":l,ctrl,cmd,shift,alt"; | |
/**** | |
Configs | |
****/ | |
slate.config("windowHintsShowIcons", true); | |
slate.config("windowHintsIgnoreHiddenWindows", false); | |
slate.config("defaultToCurrentScreen", true); |
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
# Your keymap | |
# | |
# Atom keymaps work similarly to style sheets. Just as style sheets use | |
# selectors to apply styles to elements, Atom keymaps use selectors to associate | |
# keystrokes with events in specific contexts. | |
# | |
# You can create a new keybinding in this file by typing "key" and then hitting | |
# tab. | |
# | |
# Here's an example taken from Atom's built-in keymap: |
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
if type brew &>/dev/null | |
then | |
FPATH="$(brew --prefix)/share/zsh/site-functions:${FPATH}" | |
fi |