This file contains 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
//just new to C | |
//other example: http://code.activestate.com/recipes/577908-implementation-of-knuthmorrispratt-algorithm/ | |
#include <stdio.h> | |
#include <stdbool.h> | |
#include <stdlib.h> | |
#include <memory.h> | |
bool is_substring(const char *haystack, const char *needle) { | |
int m=0, i=0; | |
int hsize = strlen(haystack); |
This file contains 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 <Servo.h> | |
// Declear the servo | |
Servo myservo; | |
// Declear pins | |
const int buttonPin = 2; | |
const int servoPin = 13; | |
// Declear variables | |
int lastButtonState = LOW; | |
int bottonState = LOW; |
This file contains 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 the library code: | |
#include <LiquidCrystal.h> | |
#include <Wire.h> | |
// | |
#define BUTTON_PIN 7 | |
#define RELAY_PIN 13 | |
#define B_PIN 9 | |
#define FILL_TIME 30 //second | |
// VARIABLE |
This file contains 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
-- this is an example | |
group: nameOfTheNewGroup | |
Country = { | |
CTRYID:string, name:string | |
US, UNITED_STATES | |
CAN, CANADA | |
CN, CHINA |
This file contains 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
group: nameOfTheNewGroup | |
Country = { | |
country_id:number,country_name:string | |
1, US | |
2, CAN | |
3, CHINA | |
} | |
city = { |