repo_name stringlengths 6 97 | path stringlengths 3 341 | text stringlengths 8 1.02M |
|---|---|---|
AndrejGajdos/C-assignments | csvParser/csvParser.c | /*
============================================================================
Name : csvParser.c
Author : 359234
Copyright : <EMAIL>
Description : GPS parsing
============================================================================
*/
#include "csvParser.h"
int parseCSVLine(FILE * file, gp... |
AndrejGajdos/C-assignments | csvParser/csvParser.h | #ifndef CSVPARSER_H_
#define CSVPARSER_H_
#include <stdio.h>
#include <string.h>
#include <stdlib.h>
#define SUCCESS 0
#define INVALID_ARGUMENTS 1
#define FILE_NOT_FOUND 2
#define OTHER_ERROR 3
#define PARSING_ERROR 4
/**
* Amount of memory (e.g. number of lines) allocated at once while reading input file.
*/
#def... |
xukiki/QqcComFuncDef | QqcComFuncDef/QqcComFuncDef.h | //
// QqcComFuncDef.h
// QqcBaseFramework
//
// Created by hc on 15/2/4.
// Copyright (c) 2015年 Qqc. All rights reserved.
//
#ifndef QqcBaseFramework_QqcComFuncDef_h
#define QqcBaseFramework_QqcComFuncDef_h
//获取医随身服务器其它大小图片
#define img_with_size(_origin_, _size_) [((NSString*)_origin_) stringByReplacingOccurrence... |
stevedonovan/AndroLua | jni/lua/test.c | #include "lobject.h"
#include "stdio.h"
int main() {
printf("String: %d, Udata: %d\n", sizeof(TString), sizeof(Udata));
return 0;
}
|
stevedonovan/AndroLua | jni/luajava/luajava.h | <reponame>stevedonovan/AndroLua
/* DO NOT EDIT THIS FILE - it is machine generated */
#include <jni.h>
/* Header for class org_keplerproject_luajava_LuaState */
#ifndef _Included_org_keplerproject_luajava_LuaState
#define _Included_org_keplerproject_luajava_LuaState
#ifdef __cplusplus
extern "C" {
#endif
/*
... |
jungervin/fs-gauge-bridge | BridgeGauge/common.h | <reponame>jungervin/fs-gauge-bridge<gh_stars>1-10
#pragma once
#ifndef _COMMON_H_
#define _COMMON_H_
#include <MSFS\MSFS.h>
#include <MSFS\MSFS_Render.h>
#include <MSFS\Legacy\gauges.h>
#include <SimConnect.h>
#include <stdio.h>
#include <string.h>
#include <math.h>
#include <cassert>
#include <exception>
#ifndef __... |
DrisBigB/ShineUpdater | Shine/Supporting Files/Shine.h | //
// Shine.h
// Shine
//
// Created by <NAME> on 4/11/18.
// Copyright © 2018 Eighty Three Creative, Inc. All rights reserved.
//
#import <UIKit/UIKit.h>
//! Project version number for Shine.
FOUNDATION_EXPORT double ShineVersionNumber;
//! Project version string for Shine.
FOUNDATION_EXPORT const unsigned char... |
LegendaryyDoc/RaylibPhysics | raygame/shapes.h | #pragma once
#include "glm/glm/vec2.hpp"
#include "mapbox/variant.hpp"
struct circle
{
float radius;
};
struct aabb
{
glm::vec2 halfExtents;
};
using shape = mapbox::util::variant<circle, aabb>;
bool checkCircleCirlce(glm::vec2 posA, circle circleA, glm::vec2 posB, circle circleB);
bool checkAABBAABB(glm::vec2 ... |
LegendaryyDoc/RaylibPhysics | raygame/physics.h | #pragma once
#include "glm/glm/vec2.hpp"
#include "raylib/raylib.h"
#include "shapes.h"
class physObject
{
public:
glm::vec2 pos;
glm::vec2 vel;
glm::vec2 forces;
physObject();
float mass;
float drag;
shape collider;
void tickPhys(float delta);
void draw() const;
// Add a continuous force with respect... |
charles-l/zumo-32u4-ms | motors.c | #define F_CPU 16000000
#include <avr/io.h>
#include <util/delay.h>
#include "microscheme_types.c"
void init() {
DDRB |= _BV(DDB6); // OUTPUT - left motor PWM
DDRB |= _BV(DDB2); // OUTPUT - left motor direction
DDRB |= _BV(DDB5); // OUTPUT - right motor PWM
DDRB |= _BV(DDB1); // OUTPUT - right motor direction
... |
charles-l/zumo-32u4-ms | microscheme_types.c | #include <stdbool.h>
#include <stdlib.h>
struct vector;
struct pair;
struct closure;
typedef unsigned int ms_value;
typedef struct pair {
ms_value car;
ms_value cdr;
} pair;
typedef struct vector {
unsigned int length;
ms_value data[];
} vector;
typedef struct closure {
unsigned char arity;
unsigned in... |
7glyphs/SGKeyChain | SGKeyChain.h | //
// SGKeyChain.h
// 7 glyphs Ltd.
//
// Created by <NAME> on 5/02/15.
// Copyright (c) 2015 7 glyphs Limited. All rights reserved.
//
#import <Foundation/Foundation.h>
@interface SGKeyChain : NSObject
- (instancetype)initWithIdentifier:(NSString *)identifier accessGroup:(NSString *)accessGroup;
- (void)setObje... |
piuslee1/rover-ctl | src/arduino/messages.h | <filename>src/arduino/messages.h
#include <Servo.h>
const uint32_t HASH_PRIME = 59359;
// Doesn't register until 104, 87
const int32_t MIN_ANGLE = 40;
const int32_t MAX_ANGLE = 150;
const int32_t MAX_SPEED_CHANGE = 2;
const int32_t UNCONNECTED = 11;
const unsigned char MTR_FR = 8;
const unsigned char MTR_MR = 4;
con... |
anconaesselmann/Stats | Example/Pods/Target Support Files/Stats/Stats-umbrella.h | #ifdef __OBJC__
#import <UIKit/UIKit.h>
#else
#ifndef FOUNDATION_EXPORT
#if defined(__cplusplus)
#define FOUNDATION_EXPORT extern "C"
#else
#define FOUNDATION_EXPORT extern
#endif
#endif
#endif
FOUNDATION_EXPORT double StatsVersionNumber;
FOUNDATION_EXPORT const unsigned char StatsVersionString[];
|
ChatPy/ChatPy | server.c | #include <stdio.h>
#include <stdlib.h>
#include <string.h>
int main()
{
char *command;
strcpy(command, "python3 server.py");
system(command);
return 0;
}
|
szarnyasg/pygraphblas | pygraphblas/cdef/LAGraph/LAGraph_internal.h | <gh_stars>0
//------------------------------------------------------------------------------
// LAGraph_internal.h: include file for internal use in LAGraph
//------------------------------------------------------------------------------
/*
LAGraph: graph algorithms based on GraphBLAS
Copyright 2019 LAGraph ... |
szarnyasg/pygraphblas | pygraphblas/cdef/extra.h | <reponame>szarnyasg/pygraphblas<gh_stars>0
const double INFINITY = 0.0; // ... is ints only, so this is a workaround
#define UINT64_MAX ...
#define INT64_MAX ...
#define UINT32_MAX ...
#define INT32_MAX ...
#define UINT16_MAX ...
#define INT16_MAX ...
#define UINT8_MAX ...
#define INT8_MAX ...
#define INT64_MIN ...
... |
szarnyasg/pygraphblas | pygraphblas/cdef/LAGraph/LAGraph_Vector_to_dense.c | //------------------------------------------------------------------------------
// LAGraph_Vector_to_dense: convert a vector to dense
//------------------------------------------------------------------------------
/*
LAGraph: graph algorithms based on GraphBLAS
Copyright 2019 LAGraph Contributors.
(se... |
szarnyasg/pygraphblas | pygraphblas/cdef/LAGraph/LAGraph_rand.c | //------------------------------------------------------------------------------
// LAGraph_rand: return a random number
//------------------------------------------------------------------------------
/*
LAGraph: graph algorithms based on GraphBLAS
Copyright 2019 LAGraph Contributors.
(see Contributors... |
szarnyasg/pygraphblas | pygraphblas/cdef/LAGraph/LAgraph_1_to_n.c | <gh_stars>0
#include "LAGraph_internal.h"
#define LAGRAPH_FREE_ALL \
{ \
GrB_free (&v) ; \
LAGRAPH_FREE (I) ; \
LAGRAPH_FREE (X) ; \
}
GrB_Info LAGraph_1_to_n // create an integer vector v = 1:n
(
GrB_Vector *v_handle, // vector to create
GrB_In... |
szarnyasg/pygraphblas | pygraphblas/cdef/LAGraph/LAGraph_binwrite.c | <filename>pygraphblas/cdef/LAGraph/LAGraph_binwrite.c
//------------------------------------------------------------------------------
// LAGraph_binwrite: write a matrix to a binary file
//------------------------------------------------------------------------------
/*
LAGraph: graph algorithms based on GraphB... |
szarnyasg/pygraphblas | pygraphblas/cdef/LAGraph/LAGraph_prune_diag.c | //------------------------------------------------------------------------------
// LAGraph_prune_diag: remove diagonal entries from a matrix
//------------------------------------------------------------------------------
/*
LAGraph: graph algorithms based on GraphBLAS
Copyright 2019 LAGraph Contributors.
... |
szarnyasg/pygraphblas | pygraphblas/cdef/LAGraph/LAGraph_toc.c | //------------------------------------------------------------------------------
// LAGraph_toc: a portable timer for accurate performance measurements
//------------------------------------------------------------------------------
/*
LAGraph: graph algorithms based on GraphBLAS
Copyright 2019 LAGraph Cont... |
szarnyasg/pygraphblas | pygraphblas/cdef/LAGraph/LAGraph_log.c | //------------------------------------------------------------------------------
// LAGraph_log: log a test result for LAGraph
//------------------------------------------------------------------------------
/*
LAGraph: graph algorithms based on GraphBLAS
Copyright 2019 LAGraph Contributors.
(see Contr... |
szarnyasg/pygraphblas | pygraphblas/cdef/la_a6fcf0_cdef.h | <reponame>szarnyasg/pygraphblas
//------------------------------------------------------------------------------
// LAGraph.h: include file for user applications that use LAGraph
//------------------------------------------------------------------------------
/*
LAGraph: graph algorithms based on GraphBLAS
... |
szarnyasg/pygraphblas | pygraphblas/cdef/LAGraph/LAGraph_set_nthreads.c | <reponame>szarnyasg/pygraphblas<filename>pygraphblas/cdef/LAGraph/LAGraph_set_nthreads.c
//------------------------------------------------------------------------------
// LAGraph_set_nthreads: set the # of threads to use
//------------------------------------------------------------------------------
/*
LAGraph:... |
szarnyasg/pygraphblas | pygraphblas/cdef/LAGraph/LAGraph_tsvread.c | <filename>pygraphblas/cdef/LAGraph/LAGraph_tsvread.c
//------------------------------------------------------------------------------
// LAGraph_tsvread: read a tsv file
//------------------------------------------------------------------------------
/*
LAGraph: graph algorithms based on GraphBLAS
Copyright ... |
rupello/ClockTHREEjr | arduino/libraries/ClockTHREE/examples/ClockTHREEjr/hebrew_v1.h | <reponame>rupello/ClockTHREEjr<filename>arduino/libraries/ClockTHREE/examples/ClockTHREEjr/hebrew_v1.h
/*
* ClockTHREEjr faceplate file.
* Autogenerated from Hebrew_v1.wtf
*
* Author:
* Licence:
* Description:
*
*
*/
static uint8_t WORDS[] PROGMEM = {
48, // # words
4, 5, 4, ... |
rupello/ClockTHREEjr | arduino/libraries/ClockTHREE/examples/ClockTHREEjr/english_v0.h | /*
* ClockTHREEjr faceplate file.
* Autogenerated from English_v0.csv
*
* Author: FlorinC
* Licence: CC BY SA
* Description:
* Faceplate from C3jr v1 English
*
*/
static uint8_t WORDS[] PROGMEM = {
32, // # words
1, 0, 2, 4, 0, 2, 1, 2, 4, 7, 0, 3, // word... |
rupello/ClockTHREEjr | arduino/libraries/ClockTHREE/mem_font.h | #ifndef MEM_FONT_H
#define MEM_FONT_H
#include <avr/pgmspace.h>
const uint8_t N_CHAR = 128;
class MemFont{
public:
/*
Place character into output buffer out in selected color.
*/
void getChar(char letter, uint8_t color, uint32_t* out);
private:
};
#endif
|
rupello/ClockTHREEjr | arduino/libraries/ClockTHREE/examples/ClockTHREEjr/dutch_v1.h | <filename>arduino/libraries/ClockTHREE/examples/ClockTHREEjr/dutch_v1.h
/*
* ClockTHREEjr faceplate file.
* Autogenerated from Dutch_v1.wtf
*
* Author:
* Licence: CC BY SA
* Description:
*
*
*/
static uint8_t WORDS[] PROGMEM = {
32, // # words
0, 0, 3, 4, 0, 2, 7, 0,... |
rupello/ClockTHREEjr | arduino/libraries/ClockTHREE/ClockTHREE.h | <reponame>rupello/ClockTHREEjr
/*
ClockTHREE.h -- ClockTHREE RGB LED Matrix library for Arduino
<NAME>
The hardware and software for ClockTHREE have been enabled by the
open souce Peggy2. Thanks to the Evil Mad Science Team for making them
available.
LIBRARY VERSION: 0.01, DATED 26/11/2010
Licenced u... |
wilson100hong/CarND-Path-Planning-Project | src/planner.h | <reponame>wilson100hong/CarND-Path-Planning-Project<filename>src/planner.h
#include <algorithm>
#include <iostream>
#include <limits>
#include <map>
#include <memory>
#include <utility>
#include <vector>
#include "helpers.h"
#include "spline.h"
using std::map;
using std::tuple;
using std::vector;
// Map waypoints in... |
somnisoft/head | test/seams.c | /**
* @file
* @brief Test seams
* @author <NAME> (<EMAIL>)
*
* This software has been placed into the public domain using CC0.
*/
#include <errno.h>
#include <stdarg.h>
#include <stdbool.h>
#include <stdio.h>
#include "test.h"
/**
* Error counter for @ref test_seam_fclose.
*/
int g_test_seam_err_ctr_fclose =... |
somnisoft/head | src/head.c | /**
* @file
* @brief head utility
* @author <NAME> (<EMAIL>)
*
* This software has been placed into the public domain using CC0.
*/
#include <err.h>
#include <errno.h>
#include <inttypes.h>
#include <stdarg.h>
#include <stdbool.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <unistd.h>
#i... |
somnisoft/head | test/seams.h | <filename>test/seams.h
/**
* @file
* @brief Test seams
* @author <NAME> (<EMAIL>)
*
* This software has been placed into the public domain using CC0.
*/
#ifndef HEAD_TEST_SEAMS_H
#define HEAD_TEST_SEAMS_H
#include "test.h"
/*
* Redefine these functions to internal test seams.
*/
#undef fclose
#undef ferror
#u... |
somnisoft/head | test/test.c | /**
* @file
* @brief Test suite
* @author <NAME> (<EMAIL>)
*
* This software has been placed into the public domain using CC0.
*/
#include <sys/types.h>
#include <sys/wait.h>
#include <assert.h>
#include <errno.h>
#include <stdarg.h>
#include <stdlib.h>
#include <string.h>
#include <unistd.h>
#include "test.h"
... |
somnisoft/head | test/test.h | /**
* @file
* @brief Test suite
* @author <NAME> (<EMAIL>)
*
* This software has been placed into the public domain using CC0.
*/
#ifndef HEAD_TEST_H
#define HEAD_TEST_H
#include <stdio.h>
int
head_main(int argc,
char *argv[]);
int
test_seam_fclose(FILE *stream);
int
test_seam_ferror(FILE *stream);
... |
Aveek-Saha/snek-qr | snek.c | #include <stdlib.h>
#include <stdio.h>
#include <windows.h>
#include <conio.h>
#define height 20
#define width 40
char map[height][width], key;
int snake_len=0, block_list[height*width][2], x1=1, y1=0, alive=1;
void draw();
void move();
void spawnFood();
void controls();
void goToXY(int column, int line);
void chang... |
mozre/MegEngine | src/core/include/megbrain/utils/thread_pool.h | /**
* \file src/core/include/megbrain/utils/thread_pool.h
* MegEngine is Licensed under the Apache License, Version 2.0 (the "License")
*
* Copyright (c) 2014-2021 Megvii Inc. All rights reserved.
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distribut... |
sstamoulis/framework-esp8266-rtos-sdk-idf-platformio | examples/sdkconfig.h | <reponame>sstamoulis/framework-esp8266-rtos-sdk-idf-platformio<gh_stars>0
/*
*
* Automatically generated file; DO NOT EDIT.
* Espressif IoT Development Framework Configuration
*
*/
//#define TEST_CASE(...)
#define CONFIG_ESP_WIFI_SSID "wifi"
#define CONFIG_ESP_WIFI_PASSWORD "<PASSWORD>"
#define CONFIG_MAX_STA_CON... |
orodley/chessboard | src/misc.h | #ifndef MISC_H_
#define MISC_H_
// Miscellaneous stuff
// I'm lazy
typedef unsigned int uint;
// Useful for GTK callbacks
#define IGNORE(x) (void)(x)
#endif // include guard
|
orodley/chessboard | src/chess/game.h | #ifndef GAME_H_
#define GAME_H_
#include "board.h"
#include "moves.h"
// Games are represented as trees where each node has an arbitrary number of
// children. This is to make variations easy to store. Linked lists are used
// to store the children for ease of inserting new elements.
struct Game;
typedef struct Gam... |
orodley/chessboard | main.c | #include <assert.h>
#include <gtk/gtk.h>
#include <stdio.h>
#include <stdlib.h>
#include "chess/board.h"
#include "chess/game.h"
#include "chess/pgn.h"
#include "board_display.h"
void set_up_gui();
char *piece_svgs = "pieces/merida/";
int main(int argc, char *argv[])
{
gtk_init(&argc, &argv);
GError *err = NULL;
... |
orodley/chessboard | src/chess/moves.c | #include <stdbool.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include "board.h"
#include "moves.h"
// Assumes the move is legal. This is necessary as the easiest way to test
// whether a move doesn't put the moving player in check (illegal) is to
// perform the move and then test if they are in chec... |
orodley/chessboard | test/pgn/test-pgn.c | <reponame>orodley/chessboard
#include <stdio.h>
#include <stdlib.h>
#include <gtk/gtk.h>
#include "chess/pgn.h"
int main(int argc, char *argv[])
{
#if GLIB_MAJOR_VERION <= 2 && GLIB_MINOR_VERSION <= 34
g_type_init();
#endif
if (argc < 2) {
fprintf(stderr, "Usage: %s <pgn file>\n", argv[0]);
return 1;
}
PGN p... |
orodley/chessboard | src/board_display.c | #include <gtk/gtk.h>
#include <librsvg/rsvg.h>
#ifndef RSVG_CAIRO_H
#include <librsvg/rsvg-cairo.h>
#endif
#include <stdbool.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include "chess/board.h"
#include "chess/moves.h"
#include "chess/pgn.h"
#include "board_display.h"
#include "misc.h"
RsvgHandle *pi... |
orodley/chessboard | src/board_display.h | #ifndef BOARD_DISPLAY_H_
#define BOARD_DISPLAY_H_
#include <stdbool.h>
#include <gtk/gtk.h>
#include "chess/board.h"
#include "chess/game.h"
#include "chess/moves.h"
#define DEFAULT_SQUARE_SIZE 50
void load_svgs(char *dir, GError **err);
void set_button_sensitivity();
gboolean board_draw_callback(GtkWidget *widget... |
orodley/chessboard | src/chess/moves.h | #ifndef MOVES_H_
#define MOVES_H_
//
// A move is represented as 4 bytes, with the start square in the two most
// significant bytes, and the end square in the two least significant
// bytes. Each pair of bytes has the file in the most significant byte, and
// the rank in the least significant byte.
typedef uint_fast32... |
orodley/chessboard | src/chess/board.h | <gh_stars>1-10
#ifndef BOARD_H_
#define BOARD_H_
#include <stdbool.h>
#include <stdint.h>
#include "misc.h"
#define BOARD_SIZE 8
#define PLAYERS 2
typedef uint_fast16_t Square;
#define SQUARE(x, y) (((x) << 8) | (y))
#define SQUARE_X(s) ((s) >> 8)
#define SQUARE_Y(s) ((s) & 0xF)
#define NULL_SQUARE ((Square)(~((Squ... |
orodley/chessboard | src/chess/game.c | #include <stdbool.h>
#include <stdlib.h>
#include <stdio.h>
#include "board.h"
#include "game.h"
Game *new_game()
{
Game *game = malloc(sizeof(Game));
game->move = NULL_MOVE;
game->board = NULL;
game->parent = NULL;
game->children = NULL;
game->sibling = NULL;
return game;
}
Game *add_child(Game *g... |
orodley/chessboard | src/chess/pgn.h | <reponame>orodley/chessboard
#include <glib.h>
#include "game.h"
// PGN spec, section 7
// Numbers are one higher to include null-termination
#define MAX_SYMBOL_LENGTH 256
#define MAX_STRING_LENGTH 256
typedef enum Result
{
WHITE_WINS,
BLACK_WINS,
DRAW,
OTHER,
} Result;
#define NULL_RESULT ((Result)~((Result)0))... |
orodley/chessboard | src/chess/board.c | <gh_stars>1-10
#include <assert.h>
#include <stdbool.h>
#include <stdio.h>
#include <stdlib.h>
#include <ctype.h>
#include "board.h"
#include "misc.h"
#include "moves.h"
void copy_board(Board *dst, Board *src)
{
dst->turn = src->turn;
dst->castling[0] = src->castling[0];
dst->castling[1] = src->castling[1];
dst->e... |
jacobussystems/IoTJackAC1 | src/StringList.h | <reponame>jacobussystems/IoTJackAC1<gh_stars>0
/*
StringList.h
By <NAME>
Jacobus Systems, Brighton & Hove, UK
http://www.jacobus.co.uk
Provided under the MIT license: https://github.com/jacobussystems/ArdJack/blob/master/LICENSE
Copyright (c) 2019 <NAME>, Jacobus Systems, Brighton & Hove, UK
Permission is her... |
jacobussystems/IoTJackAC1 | ArdJackW/src/stdafx.h | <reponame>jacobussystems/IoTJackAC1<filename>ArdJackW/src/stdafx.h
#pragma once
#ifndef STRICT
#define STRICT
#endif
#ifndef WINVER
#define WINVER 0x0600
#endif
#ifndef _WIN32_WINNT
#define _WIN32_WINNT 0x600
#endif
#ifndef _WIN32_WINDOWS
#define _WIN32_WINDOWS 0x600
#endif
#ifndef _WIN32_IE
#define _WIN32_IE 0x06... |
jacobussystems/IoTJackAC1 | src/Table.h | /*
Table.h
By <NAME>
Jacobus Systems, Brighton & Hove, UK
http://www.jacobus.co.uk
Provided under the MIT license: https://github.com/jacobussystems/ArdJack/blob/master/LICENSE
Copyright (c) 2019 <NAME>, Jacobus Systems, Brighton & Hove, UK
Permission is hereby granted, free of charge, to any person obtaining... |
jacobussystems/IoTJackAC1 | src/EthernetInterface.h | /*
EthernetInterface.h
By <NAME>
Jacobus Systems, Brighton & Hove, UK
http://www.jacobus.co.uk
Provided under the MIT license: https://github.com/jacobussystems/ArdJack/blob/master/LICENSE
Copyright (c) 2019 <NAME>, Jacobus Systems, Brighton & Hove, UK
Permission is hereby granted, free of charge, to any pers... |
jacobussystems/IoTJackAC1 | src/RtcClock.h | /*
RtcClock.h
By <NAME>
Jacobus Systems, Brighton & Hove, UK
http://www.jacobus.co.uk
Provided under the MIT license: https://github.com/jacobussystems/ArdJack/blob/master/LICENSE
Copyright (c) 2019 <NAME>, Jacobus Systems, Brighton & Hove, UK
Permission is hereby granted, free of charge, to any person obtain... |
jacobussystems/IoTJackAC1 | src/Part.h | /*
Part.h
By <NAME>
Jacobus Systems, Brighton & Hove, UK
http://www.jacobus.co.uk
Provided under the MIT license: https://github.com/jacobussystems/ArdJack/blob/master/LICENSE
Copyright (c) 2019 <NAME>, Jacobus Systems, Brighton & Hove, UK
Permission is hereby granted, free of charge, to any person obtaining ... |
jacobussystems/IoTJackAC1 | src/IoTObject.h | /*
IoTObject.h
By <NAME>
Jacobus Systems, Brighton & Hove, UK
http://www.jacobus.co.uk
Provided under the MIT license: https://github.com/jacobussystems/ArdJack/blob/master/LICENSE
Copyright (c) 2019 <NAME>, Jacobus Systems, Brighton & Hove, UK
Permission is hereby granted, free of charge, to any person obtai... |
jacobussystems/IoTJackAC1 | src/Route.h | <gh_stars>0
/*
Route.h
By <NAME>
Jacobus Systems, Brighton & Hove, UK
http://www.jacobus.co.uk
Provided under the MIT license: https://github.com/jacobussystems/ArdJack/blob/master/LICENSE
Copyright (c) 2019 <NAME>, Jacobus Systems, Brighton & Hove, UK
Permission is hereby granted, free of charge, to any pers... |
jacobussystems/IoTJackAC1 | src/ArduinoClock.h | /*
ArduinoClock.h
By <NAME>
Jacobus Systems, Brighton & Hove, UK
http://www.jacobus.co.uk
Provided under the MIT license: https://github.com/jacobussystems/ArdJack/blob/master/LICENSE
Copyright (c) 2019 <NAME>, Jacobus Systems, Brighton & Hove, UK
Permission is hereby granted, free of charge, to any person ob... |
jacobussystems/IoTJackAC1 | src/PersistentFileManager.h | /*
PersistentFileManager.h
By <NAME>
Jacobus Systems, Brighton & Hove, UK
http://www.jacobus.co.uk
Provided under the MIT license: https://github.com/jacobussystems/ArdJack/blob/master/LICENSE
Copyright (c) 2019 <NAME>, Jacobus Systems, Brighton & Hove, UK
Permission is hereby granted, free of charge, to any ... |
jacobussystems/IoTJackAC1 | ArdJackW/src/TestBase.h | #pragma once
#include "CppUnitTest.h"
using namespace Microsoft::VisualStudio::CppUnitTestFramework;
TEST_CLASS(TestBase);
|
jacobussystems/IoTJackAC1 | src/ArduinoMFShield.h | <reponame>jacobussystems/IoTJackAC1
/*
ArduinoMFShield.h
By <NAME>
Jacobus Systems, Brighton & Hove, UK
http://www.jacobus.co.uk
Provided under the MIT license: https://github.com/jacobussystems/ArdJack/blob/master/LICENSE
Copyright (c) 2019 <NAME>, Jacobus Systems, Brighton & Hove, UK
Permission is hereby gr... |
jacobussystems/IoTJackAC1 | src/CommandSet.h | /*
CommandSet.h
By <NAME>
Jacobus Systems, Brighton & Hove, UK
http://www.jacobus.co.uk
Provided under the MIT license: https://github.com/jacobussystems/ArdJack/blob/master/LICENSE
Copyright (c) 2019 <NAME>, Jacobus Systems, Brighton & Hove, UK
Permission is hereby granted, free of charge, to any person obta... |
jacobussystems/IoTJackAC1 | src/IoTManager.h | /*
IoTManager.h
By <NAME>
Jacobus Systems, Brighton & Hove, UK
http://www.jacobus.co.uk
Provided under the MIT license: https://github.com/jacobussystems/ArdJack/blob/master/LICENSE
Copyright (c) 2019 <NAME>, Jacobus Systems, Brighton & Hove, UK
Permission is hereby granted, free of charge, to any person obta... |
jacobussystems/IoTJackAC1 | src/pch.h | // pch.h
/*
Problems with headers in compilation?
Try commenting-out parts (or everything) below!
*/
#pragma once
#include "DetectBoard.h"
#include "Globals.h"
#include "ArduinoClock.h"
#include "ArduinoDevice.h"
#include "ArduinoDHT.h"
#include "ArduinoMFShield.h"
#include "ArduinoNeoPixel.h"
#include "ArrayHe... |
jacobussystems/IoTJackAC1 | src/UdpConnection.h | <filename>src/UdpConnection.h
/*
UdpConnection.h
By <NAME>
Jacobus Systems, Brighton & Hove, UK
http://www.jacobus.co.uk
Provided under the MIT license: https://github.com/jacobussystems/ArdJack/blob/master/LICENSE
Copyright (c) 2019 <NAME>, Jacobus Systems, Brighton & Hove, UK
Permission is hereby granted, f... |
jacobussystems/IoTJackAC1 | src/stdafx.h | <gh_stars>0
// stdafx.h : include file for standard system include files,
// or project specific include files that are used frequently, but
// are changed infrequently
//
#pragma once
#ifdef ARDUINO
#else
#ifndef STRICT
#define STRICT
#endif
#ifndef WINVER
#define WINVER 0x0600
#endif
#ifndef _WIN32_WINNT
... |
jacobussystems/IoTJackAC1 | src/npipe.h | <reponame>jacobussystems/IoTJackAC1
#ifdef ARDUINO
#else
/*
Module : npipe.h
Purpose: Defines the interface for an C++ wrapper class for Win32 Named Pipes
Created: PJN / 2-08-1998
History: PJN / 21-02-2002 1. Updated copyright message in source code and documentation
2. Fixed a bug in Close m... |
jacobussystems/IoTJackAC1 | src/Globals.h | /*
Globals.h
By <NAME>
Jacobus Systems, Brighton & Hove, UK
http://www.jacobus.co.uk
Provided under the MIT license: https://github.com/jacobussystems/ArdJack/blob/master/LICENSE
Copyright (c) 2019 <NAME>, Jacobus Systems, Brighton & Hove, UK
Permission is hereby granted, free of charge, to any person obtaini... |
jacobussystems/IoTJackAC1 | ArdJackW/src/MemoryHelpers.h | <filename>ArdJackW/src/MemoryHelpers.h<gh_stars>0
#pragma once
#ifdef ARDUINO
#else
#include "stdafx.h"
#include "Globals.h"
class MemoryHelpers
{
protected:
public:
static long HeapUsed();
};
#endif
|
jacobussystems/IoTJackAC1 | src/Dictionary.h | <reponame>jacobussystems/IoTJackAC1
/*
Dictionary.h
By <NAME>
Jacobus Systems, Brighton & Hove, UK
http://www.jacobus.co.uk
Provided under the MIT license: https://github.com/jacobussystems/ArdJack/blob/master/LICENSE
Copyright (c) 2019 <NAME>, Jacobus Systems, Brighton & Hove, UK
Permission is hereby granted... |
jacobussystems/IoTJackAC1 | ArdJackW/UnitTest1/pch.h | <filename>ArdJackW/UnitTest1/pch.h
// pch.h: This is a precompiled header file.
// Files listed below are compiled only once, improving build performance for future builds.
// This also affects IntelliSense performance, including code completion and many code browsing features.
// However, files listed here are ALL re... |
jacobussystems/IoTJackAC1 | src/FieldReplacer.h | /*
FieldReplacer.h
By <NAME>
Jacobus Systems, Brighton & Hove, UK
http://www.jacobus.co.uk
Provided under the MIT license: https://github.com/jacobussystems/ArdJack/blob/master/LICENSE
Copyright (c) 2019 <NAME>, Jacobus Systems, Brighton & Hove, UK
Permission is hereby granted, free of charge, to any person o... |
jacobussystems/IoTJackAC1 | src/MessageFilterItem.h | <reponame>jacobussystems/IoTJackAC1
/*
MessageFilterItem.h
By <NAME>
Jacobus Systems, Brighton & Hove, UK
http://www.jacobus.co.uk
Provided under the MIT license: https://github.com/jacobussystems/ArdJack/blob/master/LICENSE
Copyright (c) 2019 <NAME>, Jacobus Systems, Brighton & Hove, UK
Permission is hereby ... |
jacobussystems/IoTJackAC1 | src/HttpConnection.h | /*
HttpConnection.h
By <NAME>
Jacobus Systems, Brighton & Hove, UK
http://www.jacobus.co.uk
Provided under the MIT license: https://github.com/jacobussystems/ArdJack/blob/master/LICENSE
Copyright (c) 2019 <NAME>, Jacobus Systems, Brighton & Hove, UK
Permission is hereby granted, free of charge, to any person ... |
jacobussystems/IoTJackAC1 | src/PartManager.h | /*
PartManager.h
By <NAME>
Jacobus Systems, Brighton & Hove, UK
http://www.jacobus.co.uk
Provided under the MIT license: https://github.com/jacobussystems/ArdJack/blob/master/LICENSE
Copyright (c) 2019 <NAME>, Jacobus Systems, Brighton & Hove, UK
Permission is hereby granted, free of charge, to any person obt... |
jacobussystems/IoTJackAC1 | src/Log.h | <reponame>jacobussystems/IoTJackAC1
/*
Log.h
By <NAME>
Jacobus Systems, Brighton & Hove, UK
http://www.jacobus.co.uk
Provided under the MIT license: https://github.com/jacobussystems/ArdJack/blob/master/LICENSE
Copyright (c) 2019 <NAME>, Jacobus Systems, Brighton & Hove, UK
Permission is hereby granted, free ... |
jacobussystems/IoTJackAC1 | src/ArduinoDHT.h | <reponame>jacobussystems/IoTJackAC1
/*
ArduinoDHT.h
By <NAME>
Jacobus Systems, Brighton & Hove, UK
http://www.jacobus.co.uk
Provided under the MIT license: https://github.com/jacobussystems/ArdJack/blob/master/LICENSE
Copyright (c) 2019 <NAME>, Jacobus Systems, Brighton & Hove, UK
Permission is hereby granted... |
jacobussystems/IoTJackAC1 | src/TcpConnection.h | <reponame>jacobussystems/IoTJackAC1
/*
TcpConnection.h
By <NAME>
Jacobus Systems, Brighton & Hove, UK
http://www.jacobus.co.uk
Provided under the MIT license: https://github.com/jacobussystems/ArdJack/blob/master/LICENSE
Copyright (c) 2019 <NAME>, Jacobus Systems, Brighton & Hove, UK
Permission is hereby gran... |
jacobussystems/IoTJackAC1 | src/WiFiLibrary.h | /*
WiFiLibrary.h
By <NAME>
Jacobus Systems, Brighton & Hove, UK
http://www.jacobus.co.uk
Provided under the MIT license: https://github.com/jacobussystems/ArdJack/blob/master/LICENSE
Copyright (c) 2019 <NAME>, Jacobus Systems, Brighton & Hove, UK
Permission is hereby granted, free of charge, to any person obt... |
jacobussystems/IoTJackAC1 | src/ArduinoDevice.h | /*
ArduinoDevice.h
By <NAME>
Jacobus Systems, Brighton & Hove, UK
http://www.jacobus.co.uk
Provided under the MIT license: https://github.com/jacobussystems/ArdJack/blob/master/LICENSE
Copyright (c) 2019 <NAME>, Jacobus Systems, Brighton & Hove, UK
Permission is hereby granted, free of charge, to any person o... |
jacobussystems/IoTJackAC1 | src/Utils.h | /*
Utils.h
By <NAME>
Jacobus Systems, Brighton & Hove, UK
http://www.jacobus.co.uk
Provided under the MIT license: https://github.com/jacobussystems/ArdJack/blob/master/LICENSE
Copyright (c) 2019 <NAME>, Jacobus Systems, Brighton & Hove, UK
Permission is hereby granted, free of charge, to any person obtaining... |
jacobussystems/IoTJackAC1 | src/IniFiler.h | <reponame>jacobussystems/IoTJackAC1
/*
IniFiler.h
By <NAME>
Jacobus Systems, Brighton & Hove, UK
http://www.jacobus.co.uk
Provided under the MIT license: https://github.com/jacobussystems/ArdJack/blob/master/LICENSE
Copyright (c) 2019 <NAME>, Jacobus Systems, Brighton & Hove, UK
Permission is hereby granted, ... |
jacobussystems/IoTJackAC1 | src/UrlEncoder.h | // UrlEncoder.h
#pragma once
// Implements the encoding/decoding described at:
// https://www.lifewire.com/encoding-urls-3467463
//
// : %3B
// / %2F
// # %23
// ? %3F
// & %24
// @ %40
// % %25
// + %2B
// %20 or + in query strings
class UrlEncoder
{
protected:
char _Chars[10];
int _Codes[10];
char _... |
jacobussystems/IoTJackAC1 | src/DateTime.h | /*
DateTime.h
By <NAME>
Jacobus Systems, Brighton & Hove, UK
http://www.jacobus.co.uk
Provided under the MIT license: https://github.com/jacobussystems/ArdJack/blob/master/LICENSE
Copyright (c) 2019 <NAME>, Jacobus Systems, Brighton & Hove, UK
Permission is hereby granted, free of charge, to any person obtain... |
jacobussystems/IoTJackAC1 | src/Filter.h | <gh_stars>0
/*
Filter.h
By <NAME>
Jacobus Systems, Brighton & Hove, UK
http://www.jacobus.co.uk
Provided under the MIT license: https://github.com/jacobussystems/ArdJack/blob/master/LICENSE
Copyright (c) 2019 <NAME>, Jacobus Systems, Brighton & Hove, UK
Permission is hereby granted, free of charge, to any per... |
jacobussystems/IoTJackAC1 | src/WiFiInterface.h | <gh_stars>0
/*
WiFiInterface.h
By <NAME>
Jacobus Systems, Brighton & Hove, UK
http://www.jacobus.co.uk
Provided under the MIT license: https://github.com/jacobussystems/ArdJack/blob/master/LICENSE
Copyright (c) 2019 <NAME>, Jacobus Systems, Brighton & Hove, UK
Permission is hereby granted, free of charge, to ... |
jacobussystems/IoTJackAC1 | src/IoTMessage.h | /*
IoTMessage.h
By <NAME>
Jacobus Systems, Brighton & Hove, UK
http://www.jacobus.co.uk
Provided under the MIT license: https://github.com/jacobussystems/ArdJack/blob/master/LICENSE
Copyright (c) 2019 <NAME>, Jacobus Systems, Brighton & Hove, UK
Permission is hereby granted, free of charge, to any person obta... |
jacobussystems/IoTJackAC1 | src/MemoryFreeExt.h | /*
MemoryFreeExt.h
By <NAME>
Jacobus Systems, Brighton & Hove, UK
http://www.jacobus.co.uk
Provided under the MIT license: https://github.com/jacobussystems/ArdJack/blob/master/LICENSE
Copyright (c) 2019 <NAME>, Jacobus Systems, Brighton & Hove, UK
Permission is hereby granted, free of charge, to any person o... |
jacobussystems/IoTJackAC1 | src/Configuration.h | <reponame>jacobussystems/IoTJackAC1<filename>src/Configuration.h<gh_stars>0
/*
Configuration.h
By <NAME>
Jacobus Systems, Brighton & Hove, UK
http://www.jacobus.co.uk
Provided under the MIT license: https://github.com/jacobussystems/ArdJack/blob/master/LICENSE
Copyright (c) 2019 <NAME>, Jacobus Systems, Brighto... |
jacobussystems/IoTJackAC1 | src/ConfigProp.h | /*
ConfigProp.h
By <NAME>
Jacobus Systems, Brighton & Hove, UK
http://www.jacobus.co.uk
Provided under the MIT license: https://github.com/jacobussystems/ArdJack/blob/master/LICENSE
Copyright (c) 2019 <NAME>, Jacobus Systems, Brighton & Hove, UK
Permission is hereby granted, free of charge, to any person obta... |
jacobussystems/IoTJackAC1 | src/PipeConnection.h | <filename>src/PipeConnection.h
#pragma once
#ifdef ARDUINO
#else
#include "stdafx.h"
#include "npipe.h"
#include "Connection.h"
#include "Globals.h"
class PipeConnection :
public Connection
{
private:
CNamedPipe InPipe;
CNamedPipe OutPipe;
public:
char InPipeName[MAX_NAME_SIZE];
char OutPipeName[MAX_NAME_SI... |
jacobussystems/IoTJackAC1 | src/Device.h | <reponame>jacobussystems/IoTJackAC1
/*
Device.h
By <NAME>
Jacobus Systems, Brighton & Hove, UK
http://www.jacobus.co.uk
Provided under the MIT license: https://github.com/jacobussystems/ArdJack/blob/master/LICENSE
Copyright (c) 2019 <NAME>, Jacobus Systems, Brighton & Hove, UK
Permission is hereby granted, fr... |
jacobussystems/IoTJackAC1 | ArdJackW/src/VellemanK8055Device.h | /*
VellermanK8055Device.h
By <NAME>
Jacobus Systems, Brighton & Hove, UK
http://www.jacobus.co.uk
Provided under the MIT license: https://github.com/jacobussystems/ArdJack/blob/master/LICENSE
Copyright (c) 2019 <NAME>, Jacobus Systems, Brighton & Hove, UK
Permission is hereby granted, free of charge, to any p... |
jacobussystems/IoTJackAC1 | src/Dynamic.h | /*
Dynamic.h
By <NAME>
Jacobus Systems, Brighton & Hove, UK
http://www.jacobus.co.uk
Provided under the MIT license: https://github.com/jacobussystems/ArdJack/blob/master/LICENSE
Copyright (c) 2019 <NAME>, Jacobus Systems, Brighton & Hove, UK
Permission is hereby granted, free of charge, to any person obtaini... |
jacobussystems/IoTJackAC1 | src/PersistentFile.h | <filename>src/PersistentFile.h<gh_stars>0
/*
PersistentFile.h
By <NAME>
Jacobus Systems, Brighton & Hove, UK
http://www.jacobus.co.uk
Provided under the MIT license: https://github.com/jacobussystems/ArdJack/blob/master/LICENSE
Copyright (c) 2019 <NAME>, Jacobus Systems, Brighton & Hove, UK
Permission is here... |
jacobussystems/IoTJackAC1 | src/Enumeration.h | <reponame>jacobussystems/IoTJackAC1<gh_stars>0
/*
Enumeration.h
By <NAME>
Jacobus Systems, Brighton & Hove, UK
http://www.jacobus.co.uk
Provided under the MIT license: https://github.com/jacobussystems/ArdJack/blob/master/LICENSE
Copyright (c) 2019 <NAME>, Jacobus Systems, Brighton & Hove, UK
Permission is he... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.