Skip to content

Instantly share code, notes, and snippets.

@DenverDias
DenverDias / AddRepositoryToPacmanForYaourt
Created September 18, 2013 15:09
This snippet adds the repository to pacman that contains yaourt...
[archlinuxfr]
SigLevel = Never
Server = http://repo.archlinux.fr/$arch

Keybase proof

I hereby claim:

  • I am DenverDias on github.
  • I am denver (https://keybase.io/denver) on keybase.
  • I have a public key whose fingerprint is 4649 9061 59BA 835B A581 4920 3707 71A9 9046 6FE9

To claim this, I am signing this object:

void setup()
{
Serial.begin(9600);
/* Using the serial command I program the Arduino to communicate at a baud rate of 9600 bits per second. */
pinMode(tonePin, OUTPUT);
// This command sets the pin to act as output
}
@DenverDias
DenverDias / Defining playLetter function
Created August 16, 2013 18:22
Setting up a construct for playing morse code
void playLetter(char x)
{
switch (x):
case 'E':
dit(); return;
case 'T':
dah(); return;
case 'A':
di();dah(); return;
case 'O':
@DenverDias
DenverDias / Defining a dit
Created August 16, 2013 18:07
Setting a sequence for a dit
void dit()
{
tone(tonePin, buzz);
delay(dotPeriod);
noTone(tonePin);
delay(relaxtime);
}
@DenverDias
DenverDias / Floating buzz output frequency
Created August 16, 2013 18:05
Floating buzz frequency
#define buzz (analogRead(1)+200)
void loop()
{
while(!Serial.available());
//This command makes it wait until the Serial data is sent
while(Serial.available())
{
Input[Index]=Serial.read();
//Stores the byte of data from the serial buffer
Serial.print(Input[Index]);
//Prints out the same data
int Index=0, endofstring, i;
//This creates dummy variables to index letters
char Input[255];
//This is required to store the input data temporarily
@DenverDias
DenverDias / buzz frequency and output pin
Created August 16, 2013 18:03
Defining fixed frequency and output pin for Morse code
#define buzz 1000
#define tonePin 3
@DenverDias
DenverDias / otherPeriods
Created August 16, 2013 18:01
Other base Morse definitions
#define dashPeriod (dotPeriod*3)
#define relaxTime (dotPeriod)
#define letterSpace (dotPeriod*2)
#define wordSpace (dotPeriod*4)