Attach to GPRS Service
-> AT+CGATT = 1
<- OK
Define PDP Context (cid, PDP type, APN)
-> AT+CGDCONT=1,"IP","zap.vivo.com.br"
| #define F_CPU 8000000U | |
| #include <avr/io.h> | |
| #include <avr/interrupt.h> | |
| #include <inttypes.h> | |
| #include <stdlib.h> | |
| #include <stdio.h> | |
| #include <string.h> | |
| #include <util/delay.h> | |
| #include <avr/eeprom.h> | |
| const char slashr[]="\r"; |
| <html> | |
| <head> | |
| <title>Power comparator</title> | |
| <script type="text/javascript" src="https://www.google.com/jsapi"></script> | |
| <script type="text/javascript"> | |
| google.load("visualization", "1", {packages:["corechart"]}); | |
| google.setOnLoadCallback(drawChart); | |
| function drawChart() { | |
| var data = google.visualization.arrayToDataTable([ |
| <?xml version="1.0" encoding="utf-8"?> | |
| <resources> | |
| <color name="red_50">#fde0dc</color> | |
| <color name="red_100">#f9bdbb</color> | |
| <color name="red_200">#f69988</color> | |
| <color name="red_300">#f36c60</color> | |
| <color name="red_400">#e84e40</color> | |
| <color name="red_500">#e51c23</color> |
| public static String caluculateTimeAgo(long timeStamp) { | |
| long timeDiffernce; | |
| long unixTime = System.currentTimeMillis() / 1000L; //get current time in seconds. | |
| int j; | |
| String[] periods = {"s", "m", "h", "d", "w", "m", "y", "d"}; | |
| // you may choose to write full time intervals like seconds, minutes, days and so on | |
| double[] lengths = {60, 60, 24, 7, 4.35, 12, 10}; | |
| timeDiffernce = unixTime - timeStamp; | |
| String tense = "ago"; |
| <receiver android:enabled="true" android:name=".BootUpReceiver" | |
| android:permission="android.permission.RECEIVE_BOOT_COMPLETED"> | |
| <intent-filter> | |
| <action android:name="android.intent.action.BOOT_COMPLETED" /> | |
| <category android:name="android.intent.category.DEFAULT" /> | |
| </intent-filter> | |
| </receiver> | |
| <uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED" /> |
| public class BootUpReceiver extends BroadcastReceiver{ | |
| @Override | |
| public void onReceive(Context context, Intent intent) { | |
| Intent i = new Intent(context, MyActivity.class); | |
| i.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK); | |
| context.startActivity(i); | |
| } | |
| } |
| /** | |
| * Continents and Countries MySQL Tables compiled from Wikipedia, Braintree Payments documentation | |
| * and a couple other places I don't recall at the moment. This data is compatible with the Braintree | |
| * Payment API as of Dec 2011 | |
| * | |
| * Compiled by Steve Kamerman, 2011 | |
| */ | |
| SET FOREIGN_KEY_CHECKS=0; | |
| -- ---------------------------- |
| import org.eclipse.paho.client.mqttv3.MqttCallback; | |
| import org.eclipse.paho.client.mqttv3.MqttClient; | |
| import org.eclipse.paho.client.mqttv3.MqttConnectOptions; | |
| import org.eclipse.paho.client.mqttv3.MqttDeliveryToken; | |
| import org.eclipse.paho.client.mqttv3.MqttException; | |
| import org.eclipse.paho.client.mqttv3.MqttMessage; | |
| import org.eclipse.paho.client.mqttv3.MqttTopic; | |
| public class SimpleMqttClient implements MqttCallback { |
| <?php | |
| Schema::create('users' , function($table) | |
| { | |
| $table->increments('id'); Incrementing ID to the table (primary key). | |
| $table->string('email'); VARCHAR equivalent column | |
| $table->string('name', 100); VARCHAR equivalent with a length | |
| $table->integer('votes'); INTEGER equivalent to the table |