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
| $(function() { | |
| /* variables */ | |
| var status = $('.status'); | |
| var percent = $('.percent'); | |
| var bar = $('.bar'); | |
| /* submit form with ajax request using jQuery.form plugin */ | |
| $('form').ajaxForm({ | |
| /* set data type json */ |
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
| KHViewController *rootView = [[KHViewController alloc]initWithNibName:@"KHViewController" bundle:nil]; | |
| UINavigationController *navigation = [[UINavigationController alloc]initWithRootViewController:rootView]; | |
| self.window.rootViewController = navigation; |
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
| /* | |
| * To change this template, choose Tools | Templates | |
| * and open the template in the editor. | |
| */ | |
| package com.chukitow.ci.actions; | |
| import java.sql.Connection; | |
| import java.sql.DriverManager; | |
| /** |
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 testLed = 13; | |
| int dotDelay = 200; | |
| int hertz = 500000; | |
| int tonePin = 4; | |
| String data; | |
| //define the morse code for the alphabet and numbers | |
| char* letters[] = { |
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
| _serialPort = new SerialPort(); | |
| // Allow the user to set the appropriate properties. | |
| _serialPort.PortName = SetPortName(_serialPort.PortName); | |
| _serialPort.BaudRate = SetPortBaudRate(_serialPort.BaudRate); | |
| _serialPort.Parity = SetPortParity(_serialPort.Parity); | |
| _serialPort.DataBits = SetPortDataBits(_serialPort.DataBits); | |
| _serialPort.StopBits = SetPortStopBits(_serialPort.StopBits); | |
| _serialPort.Handshake = SetPortHandshake(_serialPort.Handshake); |
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 <18F4520.h> | |
| #device adc = 10 | |
| #fuses XT, PUT, NODEBUG , NOBROWNOUT , NOPROTECT , NOLVP | |
| #use delay(clock=16000000) | |
| #use rs232(baud=9600, bits = 8 , parity = N ,xmit=PIN_C6, rcv=PIN_C7) | |
| void read_adc_chanel(); | |
| float adc_sensor_1 = 0; | |
| float adc_sensor_2 = 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
| #include <18F4550.h> | |
| #device adc = 10 | |
| #fuses XT, PUT, NODEBUG , NOBROWNOUT , NOPROTECT , NOLVP | |
| #use delay(clock=4000000) | |
| #use rs232(baud=9600, bits = 8 , parity = N ,xmit=PIN_C6, rcv=PIN_C7) | |
| void read_adc_chanel(); | |
| void evaluate_aceleration(); | |
| float adc_sensor_1 = 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
| % PORTADA | |
| \begin{titlepage} | |
| \begin{center} | |
| \vspace*{-1in} | |
| \begin{figure}[htb] | |
| \begin{center} | |
| \includegraphics[width=8cm]{logo_udc} |