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 <WiFi.h> | |
| const char* ssid = "ACTS-AP2"; | |
| const char* password = ""; | |
| void setup() { | |
| Serial.begin(115200); | |
| delay(4000); |
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
| ************************************ | |
| Note: Important | |
| If you are geting error like "java.lang.charsequence cannot be resolved" | |
| then it's the issue with the Eclispe as we are currently using older version of | |
| please update to latest version of it. | |
| Eclise indigo support max upto 1.7 but we are writting our code for JDK 1.8. So even you | |
| change the compiler version it will through error. | |
| So Some of the methods() won't work. | |
| ************************************* | |
| ************************************ |
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
| package com.Jagannath.in; | |
| import java.util.ArrayList; | |
| import java.util.Collections; | |
| import java.util.Comparator; | |
| import java.util.Iterator; | |
| class Student{ | |
| private String Name; |
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
| desd@desd-OptiPlex-5050:~/Documents/carla/carla$ ./CarlaUE4.sh | |
| Increasing per-process limit of core file size to infinity. | |
| LogConsoleResponse: Display: Failed to find resolution value strings in scalability ini. Falling back to default. | |
| LogPakFile: Registered encryption key '00000000000000000000000000000000': 0 pak files mounted, 0 remain pending | |
| LogPlatformFile: Using cached read wrapper | |
| LogTaskGraph: Started task graph with 5 named threads and 14 total threads with 3 sets of task threads. | |
| LogStats: Stats thread started at 16.129618 | |
| LogICUInternationalization: ICU TimeZone Detection - Raw Offset: +5:30, Platform Override: '' | |
| LogPluginManager: Mounting plugin LauncherChunkInstaller | |
| LogPluginManager: Mounting plugin DatasmithContent |
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 <LPC214x.h> | |
| /* | |
| Initialize Timer | |
| */ | |
| void initTimer(void); | |
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 <LPC214x.h> | |
| #include <stdio.h> | |
| #include <string.h> | |
| /***************************************************/ | |
| /*****************UART******************************/ | |
| /* | |
| Initialize UART | |
| param: None | |
| return: void |
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<LPC17xx.h> | |
| //void uart_init(); | |
| char data; | |
| char data1[] = "Hiiiii"; | |
| char *p = data1; | |
| //char x = 'A'; | |
| //int i; |
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 appropriate headers | |
| // | |
| // | |
| #include<linux/init.h> | |
| #include<linux/module.h> | |
| #include<linux/kernel.h> | |
| #include<linux/proc_fs.h> | |
| #include<linux/slab.h> | |
| #include<linux/seq_file.h> |
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
| /* | |
| * Sample kset and ktype implementation | |
| * | |
| * Copyright (C) 2004-2007 Greg Kroah-Hartman <[email protected]> | |
| * Copyright (C) 2007 Novell Inc. | |
| * | |
| * Released under the GPL version 2 only. | |
| * | |
| */ |
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
| *****TECH DISCUSSION**** | |
| IDEAS for Project | |
| I2C to USB Driver | |
| MODBUS Protocol | |
| Trace Passing System | |
| BACKNET Protocol Building Management system | |
| COAP Protocol | |
| PowerLink Protocol | |
| Zigbee Protocol |
OlderNewer