repo_name stringlengths 6 97 | path stringlengths 3 341 | text stringlengths 8 1.02M |
|---|---|---|
feliposz/hackerrank-solutions | algorithms/strings/game-of-thrones.c | #include <assert.h>
#include <ctype.h>
#include <limits.h>
#include <math.h>
#include <stdbool.h>
#include <stddef.h>
#include <stdint.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
char* readline();
/*
* Complete the 'gameOfThrones' function below.
*
* The function is expected to return a STRING.
... |
feliposz/hackerrank-solutions | c/c-introduction/playing-with-characters.c | <filename>c/c-introduction/playing-with-characters.c<gh_stars>0
#include <stdio.h>
#include <string.h>
#include <math.h>
#include <stdlib.h>
int main()
{
char c;
char s[100];
char sen[100];
/* Enter your code here. Read input from STDIN. Print output to STDOUT */
scanf("%c", &c);
scanf("%s... |
feliposz/hackerrank-solutions | algorithms/implementation/acm-icpc-team.c | #include <assert.h>
#include <limits.h>
#include <math.h>
#include <stdbool.h>
#include <stddef.h>
#include <stdint.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
char* readline();
char** split_string(char*);
// Complete the acmTeam function below.
// Please store the size of the integer array to be r... |
feliposz/hackerrank-solutions | c/c-structs-and-enums/post-transition.c | #include <stdio.h>
#include <stdlib.h>
#include <string.h>
#define MAX_STRING_LENGTH 6
struct package {
char *id;
int weight;
};
typedef struct package package;
struct post_office {
int min_weight;
int max_weight;
package *packages;
int packages_count;
};
typedef struct post_office post_office;
struct ... |
feliposz/hackerrank-solutions | c/c-functions/querying-the-document.c |
char *kth_word_in_mth_sentence_of_nth_paragraph(char ****document, int k, int m,
int n) {
return document[n - 1][m - 1][k - 1];
}
char **kth_sentence_in_mth_paragraph(char ****document, int k, int m) {
return document[m - 1][k - 1];
}
char ***kth_paragraph(char **... |
Yours3lf/graf_nagyhazi_2014_osz | browser.h | #ifndef browser_h
#define browser_h
#include "mymath/mymath.h"
#include "berkelium/ScriptUtil.hpp"
#include "berkelium/StringUtil.hpp"
#include "berkelium/Berkelium.hpp"
#include "berkelium/Context.hpp"
#include "berkelium/Cursor.hpp"
#include "browser_callbacks_impl.h"
#include <map>
#include <string.h>
enum file... |
Yours3lf/graf_nagyhazi_2014_osz | shaders/rsm/common.h | <reponame>Yours3lf/graf_nagyhazi_2014_osz
#ifndef common_h
#define common_h
const float pi = 3.14159265;
vec3 right_vec[6] =
{
vec3( 0, 0, 1),
vec3( 0, 0, -1),
vec3( 1, 0, 0),
vec3( 1, 0, 0),
vec3(-1, 0, 0),
vec3( 1, 0, 0)
};
vec3 up_vec[6] =
{
vec3( 0, 1, 0),
vec3( 0, 1, 0),
vec3( 0, 0, 1)... |
Yours3lf/graf_nagyhazi_2014_osz | shaders/rsm/lighting_common.h | <gh_stars>0
#ifndef lighting_common_h
#define lighting_common_h
vec3 tonemap_func(vec3 x, float a, float b, float c, float d, float e, float f)
{
return ( ( x * ( a * x + c * b ) + d * e ) / ( x * ( a * x + b ) + d * f ) ) - e / f;
}
vec3 tonemap(vec3 col)
{
//vec3 x = max( vec3(0), col - vec3(0.004));
//retu... |
Yours3lf/graf_nagyhazi_2014_osz | shaders/rsm/gpu_skinning.h | <reponame>Yours3lf/graf_nagyhazi_2014_osz
layout(location=4) in ivec4 in_bone_id;
layout(location=5) in vec4 in_bone_weight;
layout(std140) uniform bone_data
{
mat4 d[100];
} bd;
mat4 get_bone_transform()
{
mat4 bone_transform = bd.d[in_bone_id[0]] * in_bone_weight[0];
bone_transform += bd.d[in_bone_id[1]] ... |
Yours3lf/graf_nagyhazi_2014_osz | browser_callbacks_impl.h | #ifndef browser_callbacks_impl_h
#define browser_callbacks_impl_h
#include <string.h>
#include "berkelium/WindowDelegate.hpp"
//helper functions for js to cpp function calls
static std::wstring get_str( Berkelium::Script::Variant* args )
{
if( args )
{
std::wstring str;
if( args[0].toString().length() ... |
RobinJR/Calculator | Calculator/Calculator.h | //
// Calculator.h
// Calculator
//
// Created by <NAME> on 01/06/20.
// Copyright © 2020 <NAME>. All rights reserved.
//
#import <Foundation/Foundation.h>
//! Project version number for Calculator.
FOUNDATION_EXPORT double CalculatorVersionNumber;
//! Project version string for Calculator.
FOUNDATION_EXPORT con... |
username4github/WebRunLocal | WrlSDK/SampleCode/PluginComDll/PluginComDll_i.h |
/* this ALWAYS GENERATED file contains the definitions for the interfaces */
/* File created by MIDL compiler version 7.00.0555 */
/* at Mon Feb 11 18:26:40 2019
*/
/* Compiler settings for PluginComDll.idl:
Oicf, W1, Zp8, env=Win32 (32b run), target_arch=X86 7.00.0555
protocol : dce , ms_ext, c_ext, rob... |
alejolp/Arbusto | src/astnode.h | /*
* Arbusto: A Python Compiler.
* <NAME>, @alejolp.
* Licence: BSD
*/
struct astnode {
astnode(int node_type_) : node_type(node_type_) {}
astnode(int node_type_, token_t t) : node_type(node_type_), token(t) {}
int node_type;
token_t token;
std::vector<astnode*> childs;
};
|
alejolp/Arbusto | src/grammarparser.h | <reponame>alejolp/Arbusto
/*
* Arbusto: A Python Compiler.
* <NAME>, @alejolp.
* Licence: BSD
*/
#ifndef GRAMMARPARSER_H_
#define GRAMMARPARSER_H_
#include <vector>
#include <string>
#include <sstream>
#include <map>
#include <memory>
namespace arbusto {
class grammar_node;
class grammar;
/*
EBNF for Gramma... |
alejolp/Arbusto | src/tokenizer.h | <gh_stars>0
/*
* Arbusto: A Python Compiler.
* <NAME>, @alejolp.
* Licence: BSD
*/
#ifndef TOKENIZER_H_
#define TOKENIZER_H_
#include <vector>
#include <string>
namespace arbusto {
/* stolen from token.h */
enum token_t {
TOK_ENDMARKER=0,
TOK_NAME=1,
TOK_NUMBER=2,
TOK_STRING=3,
TOK_NEWLINE=4,
TOK_INDENT... |
alejolp/Arbusto | src/parsergen.h | /*
* Arbusto: A Python Compiler.
* <NAME>, @alejolp.
* Licence: BSD
*/
#ifndef GRAMMARGER_H
#define GRAMMARGER_H
#include "grammarparser.h"
namespace arbusto {
void generate_parser(grammar_parser& G);
}
#endif
|
Chrisyunhua/cantools | tests/dummy.c | /**
* This file is a dummy file whose sole purpose is to determine which set of
* CFLAGS can be added. It is imperative that this always will compile
* correctly, in order to give accurate results.
*/
int main(int argc, char *argv[])
{
(void)argc;
(void)argv;
return 0;
}
|
Chrisyunhua/cantools | tests/files/c_source/signed_bit_fields.h | /**
* The MIT License (MIT)
*
* Copyright (c) 2018-2019 <NAME>
*
* Permission is hereby granted, free of charge, to any person
* obtaining a copy of this software and associated documentation
* files (the "Software"), to deal in the Software without
* restriction, including without limitation the rights to use,... |
programmingprincess/InstaPix | Pods/Target Support Files/Pods-InstaPix/Pods-InstaPix-umbrella.h | #import <UIKit/UIKit.h>
FOUNDATION_EXPORT double Pods_InstaPixVersionNumber;
FOUNDATION_EXPORT const unsigned char Pods_InstaPixVersionString[];
|
nhatnamt/graphene-supercap | include/communication.h | <gh_stars>0
/*!
* @file communication.h
*
* Serial/UART handler, responible for transceiving, packing and unpacking serial data.
* Based on Skykraft protocal and example
*
*/
#include <Arduino.h>
#define BUFFER_SIZE 128 //buffer size of the i/o package
enum TransferResponseCode{
MASTER_REQUEST_DATA,
MAS... |
nhatnamt/graphene-supercap | include/memory.h | <gh_stars>0
// AVR use little endian so we will need to create array of uint8_t to manually push for big endian
#define EXP_FIELDS_SIZE 6
#define EXP_BUFFER_LEN 105
struct DataPointFields { // 6 bytes
uint8_t time[2];
uint8_t voltage[2];
uint8_t current[2];
};
// 115 max
struct ExprimentFields { // 104 b... |
nhatnamt/graphene-supercap | include/supercap.h | <reponame>nhatnamt/graphene-supercap
/*!
* @file supercap.h
*
* Super capacitor driver based on I2C Driver
* for INA260 Current and Power sensor
*
*/
#include <Adafruit_INA260.h>
/**
* @brief Class that is responsible for controlling the super capacitor circuit
* and taking measurement, inherit from the Ada... |
H0WrU/2019-JGMS-2-Program | main.c | <filename>main.c
#include <kipr/botball.h>
int rm=0;
int lm=3;
int claw=1;
int arm=4;
int back=3;
int claw_close=700;
int back_close=200;
int claw_up=589;
void counter(int dis);
void starting_position();
int main()
{
printf("Hello World\n");
enable_servos();
//starting positions
starting_position();
... |
gadigun/Win2D-Samples | ExampleGallery/Direct3DInterop/Shared/TeapotRenderer.h | <gh_stars>1-10
// Copyright (c) Microsoft Corporation. All rights reserved.
//
// Licensed under the MIT License. See LICENSE.txt in the project root for license information.
#pragma once
namespace ExampleGallery
{
namespace Direct3DInterop
{
using namespace ::DirectX;
using namespace Microsof... |
gadigun/Win2D-Samples | ExampleGallery/Direct3DInterop/Shared/pch.h | <reponame>gadigun/Win2D-Samples<gh_stars>1-10
// Copyright (c) Microsoft Corporation. All rights reserved.
//
// Licensed under the MIT License. See LICENSE.txt in the project root for license information.
#pragma once
#include <memory>
#include <vector>
#include <wrl.h>
#include <WindowsNumerics.h>
// DirectX heade... |
eagle518/Tars2 | cpp/util/include/util/tc_thread_mutex.h | /**
* Tencent is pleased to support the open source community by making Tars available.
*
* Copyright (C) 2016THL A29 Limited, a Tencent company. All rights reserved.
*
* Licensed under the BSD 3-Clause License (the "License"); you may not use this file except
* in compliance with the License. You may obtain a c... |
eagle518/Tars2 | cpp/util/include/util/tc_ex.h | <gh_stars>10-100
/**
* Tencent is pleased to support the open source community by making Tars available.
*
* Copyright (C) 2016THL A29 Limited, a Tencent company. All rights reserved.
*
* Licensed under the BSD 3-Clause License (the "License"); you may not use this file except
* in compliance with the License. Y... |
eagle518/Tars2 | cpp/util/include/util/tc_fcontext_x86_64.h | <reponame>eagle518/Tars2
#ifndef _TC_CONTEXT_FCONTEXT_X86_64_H
#define _TC_CONTEXT_FCONTEXT_X86_64_H
#include <stdint.h>
#include <stddef.h>
namespace tars
{
extern "C"
{
struct stack_t
{
void * sp;
size_t size;
stack_t()
: sp(0)
, size(0)
{}
};
struct fp_t
{
uint32_t fc_freg... |
eagle518/Tars2 | cpp/util/include/util/tc_bind_detail.h | #ifndef __TC_BIND_DETAIL_H__
#define __TC_BIND_DETAIL_H__
#include "tc_callback_detail.h"
namespace tars
{
namespace detail
{
template <typename Signature>
class TC_FunctorAdapter;
template <typename R>
class TC_FunctorAdapter<R (*)()> {
public:
typedef R... |
eagle518/Tars2 | cpp/util/include/util/tc_fcontext.h | #ifndef _TC_CONTEXT_FCONTEXT_H
#define _TC_CONTEXT_FCONTEXT_H
// x86_64
// test x86_64 before i386 because icc might
// define __i686__ for x86_64 too
#if defined(__x86_64__) || defined(__x86_64) \
|| defined(__amd64__) || defined(__amd64) \
|| defined(_M_X64) || defined(_M_AMD64)
# include "tc_fcontext_x86_6... |
eagle518/Tars2 | cpp/util/include/util/tc_epoller.h | <filename>cpp/util/include/util/tc_epoller.h
/**
* Tencent is pleased to support the open source community by making Tars available.
*
* Copyright (C) 2016THL A29 Limited, a Tencent company. All rights reserved.
*
* Licensed under the BSD 3-Clause License (the "License"); you may not use this file except
* in co... |
eagle518/Tars2 | cpp/util/include/util/tc_rbtree.h | <filename>cpp/util/include/util/tc_rbtree.h
/**
* Tencent is pleased to support the open source community by making Tars available.
*
* Copyright (C) 2016THL A29 Limited, a Tencent company. All rights reserved.
*
* Licensed under the BSD 3-Clause License (the "License"); you may not use this file except
* in com... |
vivekchand/turtlebot_rrt | include/turtlebot_rrt/vertex.h | <reponame>vivekchand/turtlebot_rrt
/*
* @copyright Copyright (C) 2017, <NAME>
* @author <NAME>
* @file turtlebot_rrt/include/turtlebot_rrt/vertex.h
*
* @brief Small class to maintain information held in vertices
*
* @license 3-Clause BSD License
* Redistribution and use in source and binary forms, with or witho... |
vivekchand/turtlebot_rrt | include/turtlebot_rrt/turtlebot_rrt.h | <gh_stars>10-100
/*
* @copyright Copyright (C) 2017, <NAME>
* @author <NAME>
* @file turtlebot_rrt/include/turtlebot_rrt/turtlebot_rrt.h
*
* @brief Algorithm to make the turtlebot move around a gazebo workspace
* @detail The turtlebot will move forward in a straight line until
* encountering an obstacle. The tur... |
yingxl1992/PodDemo | Classes/YXLObject.h | <reponame>yingxl1992/PodDemo
//
// YXLObject.h
// FBSnapshotTestCase
//
// Created by 应晓立 on 2018/8/16.
//
#import <Foundation/Foundation.h>
@interface YXLObject : NSObject
@end
|
yingxl1992/PodDemo | Example/PodExample/YXLViewController.h | <reponame>yingxl1992/PodDemo<gh_stars>0
//
// YXLViewController.h
// PodExample
//
// Created by yingxl1992 on 08/16/2018.
// Copyright (c) 2018 yingxl1992. All rights reserved.
//
@import UIKit;
@interface YXLViewController : UIViewController
@end
|
yingxl1992/PodDemo | Example/PodExample/YXLAppDelegate.h | //
// YXLAppDelegate.h
// PodExample
//
// Created by yingxl1992 on 08/16/2018.
// Copyright (c) 2018 yingxl1992. All rights reserved.
//
@import UIKit;
@interface YXLAppDelegate : UIResponder <UIApplicationDelegate>
@property (strong, nonatomic) UIWindow *window;
@end
|
lukangli/weather-clock | Firmware/weather-clock/src/TftDisplay.h | //
// Created by lukang on 2021/10/27.
//
#ifndef WEATHERCLOCK_TFTDISPLAY_H
#define WEATHERCLOCK_TFTDISPLAY_H
#include <TFT_eSPI.h>
#include <TJpg_Decoder.h>
#include "CityWeather.h"
#include "TimeUtils.h"
#include "font/O_3660_i0.h"
#include "font/O_3660_i1.h"
#include "font/O_3660_i2.h"
#include "font/O_3660_i3.h... |
lukangli/weather-clock | Firmware/weather-clock/include/img/pangzi/i2.h | <reponame>lukangli/weather-clock<filename>Firmware/weather-clock/include/img/pangzi/i2.h<gh_stars>0
#include <pgmspace.h>
const uint8_t i2[] PROGMEM = {
0xFF, 0xD8, 0xFF, 0xE0, 0x00, 0x10, 0x4A, 0x46, 0x49, 0x46, 0x00, 0x01, 0x01, 0x00, 0x00, 0x01,
0x00, 0x01, 0x00, 0x00, 0xFF, 0xDB, 0x00, 0x43, 0x00, 0x0A, 0x07, 0x0... |
lukangli/weather-clock | Firmware/weather-clock/include/font/O_3660_i7.h | <reponame>lukangli/weather-clock<gh_stars>0
#include <pgmspace.h>
const uint8_t O_3660_i7[] PROGMEM = {
0xFF, 0xD8, 0xFF, 0xE0, 0x00, 0x10, 0x4A, 0x46, 0x49, 0x46, 0x00, 0x01, 0x01, 0x01, 0x00, 0x60,
0x00, 0x60, 0x00, 0x00, 0xFF, 0xE1, 0x00, 0x5A, 0x45, 0x78, 0x69, 0x66, 0x00, 0x00, 0x4D, 0x4D,
0x00, 0x2A, 0x00, 0x00... |
lukangli/weather-clock | Firmware/weather-clock/include/img/tianqi/t53.h | #include <pgmspace.h>
const uint8_t t53[] PROGMEM = {
0xFF, 0xD8, 0xFF, 0xE0, 0x00, 0x10, 0x4A, 0x46, 0x49, 0x46, 0x00, 0x01, 0x01, 0x00, 0x00, 0x01,
0x00, 0x01, 0x00, 0x00, 0xFF, 0xDB, 0x00, 0x43, 0x00, 0x0A, 0x07, 0x07, 0x08, 0x07, 0x06, 0x0A,
0x08, 0x08, 0x08, 0x0B, 0x0A, 0x0A, 0x0B, 0x0E, 0x18, 0x10, 0x0E, 0x0D,... |
lukangli/weather-clock | Firmware/weather-clock/include/img/tianqi/t20.h | #include <pgmspace.h>
const uint8_t t20[] PROGMEM = {
0xFF, 0xD8, 0xFF, 0xE0, 0x00, 0x10, 0x4A, 0x46, 0x49, 0x46, 0x00, 0x01, 0x01, 0x00, 0x00, 0x01,
0x00, 0x01, 0x00, 0x00, 0xFF, 0xDB, 0x00, 0x43, 0x00, 0x0A, 0x07, 0x07, 0x08, 0x07, 0x06, 0x0A,
0x08, 0x08, 0x08, 0x0B, 0x0A, 0x0A, 0x0B, 0x0E, 0x18, 0x10, 0x0E, 0x0D, ... |
lukangli/weather-clock | Firmware/weather-clock/include/img/tianqi/t16.h | #include <pgmspace.h>
const uint8_t t16[] PROGMEM = {
0xFF, 0xD8, 0xFF, 0xE0, 0x00, 0x10, 0x4A, 0x46, 0x49, 0x46, 0x00, 0x01, 0x01, 0x00, 0x00, 0x01,
0x00, 0x01, 0x00, 0x00, 0xFF, 0xDB, 0x00, 0x43, 0x00, 0x0A, 0x07, 0x07, 0x08, 0x07, 0x06, 0x0A,
0x08, 0x08, 0x08, 0x0B, 0x0A, 0x0A, 0x0B, 0x0E, 0x18, 0x10, 0x0E, 0x0D, ... |
lukangli/weather-clock | Firmware/weather-clock/include/font/W_3660_i6.h | <gh_stars>0
#include <pgmspace.h>
const uint8_t W_3660_i6[] PROGMEM = {
0xFF, 0xD8, 0xFF, 0xE0, 0x00, 0x10, 0x4A, 0x46, 0x49, 0x46, 0x00, 0x01, 0x01, 0x01, 0x00, 0x60,
0x00, 0x60, 0x00, 0x00, 0xFF, 0xE1, 0x00, 0x5A, 0x45, 0x78, 0x69, 0x66, 0x00, 0x00, 0x4D, 0x4D,
0x00, 0x2A, 0x00, 0x00, 0x00, 0x08, 0x00, 0x05, 0x03, ... |
lukangli/weather-clock | Firmware/weather-clock/include/font/W_1830_i5.h | #include <pgmspace.h>
const uint8_t W_1830_i5[] PROGMEM = {
0xFF, 0xD8, 0xFF, 0xE0, 0x00, 0x10, 0x4A, 0x46, 0x49, 0x46, 0x00, 0x01, 0x01, 0x00, 0x00, 0x01,
0x00, 0x01, 0x00, 0x00, 0xFF, 0xDB, 0x00, 0x43, 0x00, 0x03, 0x02, 0x02, 0x03, 0x02, 0x02, 0x03,
0x03, 0x03, 0x03, 0x04, 0x03, 0x03, 0x04, 0x05, 0x08, 0x05, 0x05, ... |
lukangli/weather-clock | Firmware/weather-clock/include/img/pangzi/i8.h | <reponame>lukangli/weather-clock
#include <pgmspace.h>
const uint8_t i8[] PROGMEM = {
0xFF, 0xD8, 0xFF, 0xE0, 0x00, 0x10, 0x4A, 0x46, 0x49, 0x46, 0x00, 0x01, 0x01, 0x00, 0x00, 0x01,
0x00, 0x01, 0x00, 0x00, 0xFF, 0xDB, 0x00, 0x43, 0x00, 0x0A, 0x07, 0x07, 0x08, 0x07, 0x06, 0x0A,
0x08, 0x08, 0x08, 0x0B, 0x0A, 0x0A, 0x0... |
lukangli/weather-clock | Firmware/weather-clock/include/font/W_3660_i8.h | #include <pgmspace.h>
const uint8_t W_3660_i8[] PROGMEM = {
0xFF, 0xD8, 0xFF, 0xE0, 0x00, 0x10, 0x4A, 0x46, 0x49, 0x46, 0x00, 0x01, 0x01, 0x01, 0x00, 0x60,
0x00, 0x60, 0x00, 0x00, 0xFF, 0xE1, 0x00, 0x5A, 0x45, 0x78, 0x69, 0x66, 0x00, 0x00, 0x4D, 0x4D,
0x00, 0x2A, 0x00, 0x00, 0x00, 0x08, 0x00, 0x05, 0x03, 0x01, 0x00, ... |
lukangli/weather-clock | Firmware/weather-clock/src/TimeUtils.h | //
// Created by lukang on 2021/11/6.
//
#ifndef WEATHERCLOCK_TIMEUTILS_H
#define WEATHERCLOCK_TIMEUTILS_H
#include <Arduino.h>
#include <WiFiUdp.h>
#include <TimeLib.h>
#include <ESP8266WiFi.h>
class TimeUtils
{
static WiFiUDP *wifiUdp;
static TimeUtils *instance;
TimeUtils();
~TimeUtils();
public... |
lukangli/weather-clock | Firmware/weather-clock/include/img/tianqi/t18.h | #include <pgmspace.h>
const uint8_t t18[] PROGMEM = {
0xFF, 0xD8, 0xFF, 0xE0, 0x00, 0x10, 0x4A, 0x46, 0x49, 0x46, 0x00, 0x01, 0x01, 0x00, 0x00, 0x01,
0x00, 0x01, 0x00, 0x00, 0xFF, 0xDB, 0x00, 0x43, 0x00, 0x0A, 0x07, 0x07, 0x08, 0x07, 0x06, 0x0A,
0x08, 0x08, 0x08, 0x0B, 0x0A, 0x0A, 0x0B, 0x0E, 0x18, 0x10, 0x0E, 0x0D, ... |
lukangli/weather-clock | Firmware/weather-clock/include/font/O_3660_i5.h | <filename>Firmware/weather-clock/include/font/O_3660_i5.h
#include <pgmspace.h>
const uint8_t O_3660_i5[] PROGMEM = {
0xFF, 0xD8, 0xFF, 0xE0, 0x00, 0x10, 0x4A, 0x46, 0x49, 0x46, 0x00, 0x01, 0x01, 0x01, 0x00, 0x60,
0x00, 0x60, 0x00, 0x00, 0xFF, 0xE1, 0x00, 0x5A, 0x45, 0x78, 0x69, 0x66, 0x00, 0x00, 0x4D, 0x4D,
0x00, 0x... |
lukangli/weather-clock | Firmware/weather-clock/include/img/pangzi/i4.h | #include <pgmspace.h>
const uint8_t i4[] PROGMEM = {
0xFF, 0xD8, 0xFF, 0xE0, 0x00, 0x10, 0x4A, 0x46, 0x49, 0x46, 0x00, 0x01, 0x01, 0x00, 0x00, 0x01,
0x00, 0x01, 0x00, 0x00, 0xFF, 0xDB, 0x00, 0x43, 0x00, 0x0A, 0x07, 0x07, 0x08, 0x07, 0x06, 0x0A,
0x08, 0x08, 0x08, 0x0B, 0x0A, 0x0A, 0x0B, 0x0E, 0x18, 0x10, 0x0E, 0x0D, ... |
lukangli/weather-clock | Firmware/weather-clock/include/img/tianqi/t99.h | #include <pgmspace.h>
const uint8_t t99[] PROGMEM = {
0xFF, 0xD8, 0xFF, 0xE0, 0x00, 0x10, 0x4A, 0x46, 0x49, 0x46, 0x00, 0x01, 0x01, 0x00, 0x00, 0x01,
0x00, 0x01, 0x00, 0x00, 0xFF, 0xDB, 0x00, 0x43, 0x00, 0x0A, 0x07, 0x07, 0x08, 0x07, 0x06, 0x0A,
0x08, 0x08, 0x08, 0x0B, 0x0A, 0x0A, 0x0B, 0x0E, 0x18, 0x10, 0x0E, 0x0D, ... |
lukangli/weather-clock | Firmware/weather-clock/include/img/tianqi/t2.h | <filename>Firmware/weather-clock/include/img/tianqi/t2.h
#include <pgmspace.h>
const uint8_t t2[] PROGMEM = {
0xFF, 0xD8, 0xFF, 0xE0, 0x00, 0x10, 0x4A, 0x46, 0x49, 0x46, 0x00, 0x01, 0x01, 0x00, 0x00, 0x01,
0x00, 0x01, 0x00, 0x00, 0xFF, 0xDB, 0x00, 0x43, 0x00, 0x0A, 0x07, 0x07, 0x08, 0x07, 0x06, 0x0A,
0x08, 0x08, 0x08... |
lukangli/weather-clock | Firmware/weather-clock/include/img/pangzi_change/img0.h | #include <pgmspace.h>
const uint8_t img0[] PROGMEM = {
0x89, 0x50, 0x4E, 0x47, 0x0D, 0x0A, 0x1A, 0x0A, 0x00, 0x00, 0x00, 0x0D, 0x49, 0x48, 0x44, 0x52,
0x00, 0x00, 0x00, 0x2A, 0x00, 0x00, 0x00, 0x2A, 0x08, 0x06, 0x00, 0x00, 0x00, 0xC5, 0xC3, 0xC9,
0x5B, 0x00, 0x00, 0x00, 0x01, 0x73, 0x52, 0x47, 0x42, 0x00,... |
lukangli/weather-clock | Firmware/weather-clock/include/img/tianqi/t13.h | <reponame>lukangli/weather-clock<filename>Firmware/weather-clock/include/img/tianqi/t13.h<gh_stars>0
#include <pgmspace.h>
const uint8_t t13[] PROGMEM = {
0xFF, 0xD8, 0xFF, 0xE0, 0x00, 0x10, 0x4A, 0x46, 0x49, 0x46, 0x00, 0x01, 0x01, 0x00, 0x00, 0x01,
0x00, 0x01, 0x00, 0x00, 0xFF, 0xDB, 0x00, 0x43, 0x00, 0x0A, 0x07, 0x... |
lukangli/weather-clock | Firmware/weather-clock/include/img/tianqi/t6.h | <reponame>lukangli/weather-clock<filename>Firmware/weather-clock/include/img/tianqi/t6.h<gh_stars>0
#include <pgmspace.h>
const uint8_t t6[] PROGMEM = {
0xFF, 0xD8, 0xFF, 0xE0, 0x00, 0x10, 0x4A, 0x46, 0x49, 0x46, 0x00, 0x01, 0x01, 0x00, 0x00, 0x01,
0x00, 0x01, 0x00, 0x00, 0xFF, 0xDB, 0x00, 0x43, 0x00, 0x0A, 0x07, 0x07... |
lukangli/weather-clock | Firmware/weather-clock/include/font/O_3660_i8.h | <filename>Firmware/weather-clock/include/font/O_3660_i8.h
#include <pgmspace.h>
const uint8_t O_3660_i8[] PROGMEM = {
0xFF, 0xD8, 0xFF, 0xE0, 0x00, 0x10, 0x4A, 0x46, 0x49, 0x46, 0x00, 0x01, 0x01, 0x01, 0x00, 0x60,
0x00, 0x60, 0x00, 0x00, 0xFF, 0xE1, 0x00, 0x5A, 0x45, 0x78, 0x69, 0x66, 0x00, 0x00, 0x4D, 0x4D,
0x00, 0x... |
lukangli/weather-clock | Firmware/weather-clock/include/img/pangzi/i6.h | #include <pgmspace.h>
const uint8_t i6[] PROGMEM = {
0xFF, 0xD8, 0xFF, 0xE0, 0x00, 0x10, 0x4A, 0x46, 0x49, 0x46, 0x00, 0x01, 0x01, 0x00, 0x00, 0x01,
0x00, 0x01, 0x00, 0x00, 0xFF, 0xDB, 0x00, 0x43, 0x00, 0x0A, 0x07, 0x07, 0x08, 0x07, 0x06, 0x0A,
0x08, 0x08, 0x08, 0x0B, 0x0A, 0x0A, 0x0B, 0x0E, 0x18, 0x10, 0x0E, 0x0D, ... |
lukangli/weather-clock | Firmware/weather-clock/include/img/tianqi/t4.h | <reponame>lukangli/weather-clock
#include <pgmspace.h>
const uint8_t t4[] PROGMEM = {
0xFF, 0xD8, 0xFF, 0xE0, 0x00, 0x10, 0x4A, 0x46, 0x49, 0x46, 0x00, 0x01, 0x01, 0x00, 0x00, 0x01,
0x00, 0x01, 0x00, 0x00, 0xFF, 0xDB, 0x00, 0x43, 0x00, 0x0A, 0x07, 0x07, 0x08, 0x07, 0x06, 0x0A,
0x08, 0x08, 0x08, 0x0B, 0x0A, 0x0A, 0x0B... |
lukangli/weather-clock | Firmware/weather-clock/include/img/tianqi/t0.h | #include <pgmspace.h>
const uint8_t t0[] PROGMEM = {
0xFF, 0xD8, 0xFF, 0xE0, 0x00, 0x10, 0x4A, 0x46, 0x49, 0x46, 0x00, 0x01, 0x01, 0x00, 0x00, 0x01,
0x00, 0x01, 0x00, 0x00, 0xFF, 0xDB, 0x00, 0x43, 0x00, 0x0A, 0x07, 0x07, 0x08, 0x07, 0x06, 0x0A,
0x08, 0x08, 0x08, 0x0B, 0x0A, 0x0A, 0x0B, 0x0E, 0x18, 0x10, 0x0E, 0x0D, 0... |
lukangli/weather-clock | Firmware/weather-clock/include/font/W_1830_i4.h | <reponame>lukangli/weather-clock<gh_stars>0
#include <pgmspace.h>
const uint8_t W_1830_i4[] PROGMEM = {
0xFF, 0xD8, 0xFF, 0xE0, 0x00, 0x10, 0x4A, 0x46, 0x49, 0x46, 0x00, 0x01, 0x01, 0x00, 0x00, 0x01,
0x00, 0x01, 0x00, 0x00, 0xFF, 0xDB, 0x00, 0x43, 0x00, 0x03, 0x02, 0x02, 0x03, 0x02, 0x02, 0x03,
0x03, 0x03, 0x03, 0x04... |
lukangli/weather-clock | Firmware/weather-clock/include/font/W_1830_i8.h | <reponame>lukangli/weather-clock<filename>Firmware/weather-clock/include/font/W_1830_i8.h
#include <pgmspace.h>
const uint8_t W_1830_i8[] PROGMEM = {
0xFF, 0xD8, 0xFF, 0xE0, 0x00, 0x10, 0x4A, 0x46, 0x49, 0x46, 0x00, 0x01, 0x01, 0x00, 0x00, 0x01,
0x00, 0x01, 0x00, 0x00, 0xFF, 0xDB, 0x00, 0x43, 0x00, 0x03, 0x02, 0x02, 0... |
lukangli/weather-clock | Firmware/weather-clock/include/font/W_3660_i4.h | <filename>Firmware/weather-clock/include/font/W_3660_i4.h
#include <pgmspace.h>
const uint8_t W_3660_i4[] PROGMEM = {
0xFF, 0xD8, 0xFF, 0xE0, 0x00, 0x10, 0x4A, 0x46, 0x49, 0x46, 0x00, 0x01, 0x01, 0x01, 0x00, 0x60,
0x00, 0x60, 0x00, 0x00, 0xFF, 0xE1, 0x00, 0x5A, 0x45, 0x78, 0x69, 0x66, 0x00, 0x00, 0x4D, 0x4D,
0x00, 0x... |
lukangli/weather-clock | Firmware/weather-clock/include/font/W_1830_i1.h | <reponame>lukangli/weather-clock
#include <pgmspace.h>
const uint8_t W_1830_i1[] PROGMEM = {
0xFF, 0xD8, 0xFF, 0xE0, 0x00, 0x10, 0x4A, 0x46, 0x49, 0x46, 0x00, 0x01, 0x01, 0x00, 0x00, 0x01,
0x00, 0x01, 0x00, 0x00, 0xFF, 0xDB, 0x00, 0x43, 0x00, 0x03, 0x02, 0x02, 0x03, 0x02, 0x02, 0x03,
0x03, 0x03, 0x03, 0x04, 0x03, 0x0... |
lukangli/weather-clock | Firmware/weather-clock/include/img/misaka111.h | #include <pgmspace.h>
const uint8_t misaka[] PROGMEM = {
0xFF, 0xD8, 0xFF, 0xE0, 0x00, 0x10, 0x4A, 0x46, 0x49, 0x46, 0x00, 0x01, 0x01, 0x00, 0x00, 0x01,
0x00, 0x01, 0x00, 0x00, 0xFF, 0xDB, 0x00, 0x43, 0x00, 0x03, 0x02, 0x02, 0x03, 0x02, 0x02, 0x03,
0x03, 0x03, 0x03, 0x04, 0x03, 0x03, 0x04, 0x05, 0x08, 0x05, 0x05, 0x04... |
lukangli/weather-clock | Firmware/weather-clock/include/img/tianqi/t29.h | #include <pgmspace.h>
const uint8_t t29[] PROGMEM = {
0xFF, 0xD8, 0xFF, 0xE0, 0x00, 0x10, 0x4A, 0x46, 0x49, 0x46, 0x00, 0x01, 0x01, 0x00, 0x00, 0x01,
0x00, 0x01, 0x00, 0x00, 0xFF, 0xDB, 0x00, 0x43, 0x00, 0x0A, 0x07, 0x07, 0x08, 0x07, 0x06, 0x0A,
0x08, 0x08, 0x08, 0x0B, 0x0A, 0x0A, 0x0B, 0x0E, 0x18, 0x10, 0x0E, 0x0D, ... |
lukangli/weather-clock | Firmware/weather-clock/include/temperature.h | <gh_stars>0
#include <pgmspace.h>
const uint8_t temperature[] PROGMEM = {
0xFF, 0xD8, 0xFF, 0xE0, 0x00, 0x10, 0x4A, 0x46, 0x49, 0x46, 0x00, 0x01, 0x01, 0x00, 0x00, 0x01,
0x00, 0x01, 0x00, 0x00, 0xFF, 0xDB, 0x00, 0x43, 0x00, 0x06, 0x04, 0x05, 0x06, 0x05, 0x04, 0x06,
0x06, 0x05, 0x06, 0x07, 0x07, 0x06, 0x08, 0x0A, 0x1... |
lukangli/weather-clock | Firmware/weather-clock/include/font/W_3660_i0.h | <filename>Firmware/weather-clock/include/font/W_3660_i0.h<gh_stars>0
#include <pgmspace.h>
const uint8_t W_3660_i0[] PROGMEM = {
0xFF, 0xD8, 0xFF, 0xE0, 0x00, 0x10, 0x4A, 0x46, 0x49, 0x46, 0x00, 0x01, 0x01, 0x01, 0x00, 0x60,
0x00, 0x60, 0x00, 0x00, 0xFF, 0xE1, 0x00, 0x5A, 0x45, 0x78, 0x69, 0x66, 0x00, 0x00, 0x4D, 0x4D... |
lukangli/weather-clock | Firmware/weather-clock/include/font/W_3660_i2.h | <gh_stars>0
#include <pgmspace.h>
const uint8_t W_3660_i2[] PROGMEM = {
0xFF, 0xD8, 0xFF, 0xE0, 0x00, 0x10, 0x4A, 0x46, 0x49, 0x46, 0x00, 0x01, 0x01, 0x01, 0x00, 0x60,
0x00, 0x60, 0x00, 0x00, 0xFF, 0xE1, 0x00, 0x5A, 0x45, 0x78, 0x69, 0x66, 0x00, 0x00, 0x4D, 0x4D,
0x00, 0x2A, 0x00, 0x00, 0x00, 0x08, 0x00, 0x05, 0x03, ... |
lukangli/weather-clock | Firmware/weather-clock/include/font/W_3660_i5.h | #include <pgmspace.h>
const uint8_t W_3660_i5[] PROGMEM = {
0xFF, 0xD8, 0xFF, 0xE0, 0x00, 0x10, 0x4A, 0x46, 0x49, 0x46, 0x00, 0x01, 0x01, 0x01, 0x00, 0x60,
0x00, 0x60, 0x00, 0x00, 0xFF, 0xE1, 0x00, 0x5A, 0x45, 0x78, 0x69, 0x66, 0x00, 0x00, 0x4D, 0x4D,
0x00, 0x2A, 0x00, 0x00, 0x00, 0x08, 0x00, 0x05, 0x03, 0x01, 0x00, ... |
lukangli/weather-clock | Firmware/weather-clock/include/font/W_1830_i2.h | #include <pgmspace.h>
const uint8_t W_1830_i2[] PROGMEM = {
0xFF, 0xD8, 0xFF, 0xE0, 0x00, 0x10, 0x4A, 0x46, 0x49, 0x46, 0x00, 0x01, 0x01, 0x00, 0x00, 0x01,
0x00, 0x01, 0x00, 0x00, 0xFF, 0xDB, 0x00, 0x43, 0x00, 0x03, 0x02, 0x02, 0x03, 0x02, 0x02, 0x03,
0x03, 0x03, 0x03, 0x04, 0x03, 0x03, 0x04, 0x05, 0x08, 0x05, 0x05, ... |
lukangli/weather-clock | Firmware/weather-clock/include/font/W_1830_i6.h | #include <pgmspace.h>
const uint8_t W_1830_i6[] PROGMEM = {
0xFF, 0xD8, 0xFF, 0xE0, 0x00, 0x10, 0x4A, 0x46, 0x49, 0x46, 0x00, 0x01, 0x01, 0x00, 0x00, 0x01,
0x00, 0x01, 0x00, 0x00, 0xFF, 0xDB, 0x00, 0x43, 0x00, 0x03, 0x02, 0x02, 0x03, 0x02, 0x02, 0x03,
0x03, 0x03, 0x03, 0x04, 0x03, 0x03, 0x04, 0x05, 0x08, 0x05, 0x05, ... |
lukangli/weather-clock | Firmware/weather-clock/include/font/O_3660_i2.h | #include <pgmspace.h>
const uint8_t O_3660_i2[] PROGMEM = {
0xFF, 0xD8, 0xFF, 0xE0, 0x00, 0x10, 0x4A, 0x46, 0x49, 0x46, 0x00, 0x01, 0x01, 0x01, 0x00, 0x60,
0x00, 0x60, 0x00, 0x00, 0xFF, 0xE1, 0x00, 0x5A, 0x45, 0x78, 0x69, 0x66, 0x00, 0x00, 0x4D, 0x4D,
0x00, 0x2A, 0x00, 0x00, 0x00, 0x08, 0x00, 0x05, 0x03, 0x01, 0x00, ... |
lukangli/weather-clock | Firmware/weather-clock/include/img/pangzi/i9.h | <filename>Firmware/weather-clock/include/img/pangzi/i9.h
#include <pgmspace.h>
const uint8_t i9[] PROGMEM = {
0xFF, 0xD8, 0xFF, 0xE0, 0x00, 0x10, 0x4A, 0x46, 0x49, 0x46, 0x00, 0x01, 0x01, 0x00, 0x00, 0x01,
0x00, 0x01, 0x00, 0x00, 0xFF, 0xDB, 0x00, 0x43, 0x00, 0x0A, 0x07, 0x07, 0x08, 0x07, 0x06, 0x0A,
0x08, 0x08, 0x0... |
lukangli/weather-clock | Firmware/weather-clock/include/font/W_1830_i0.h | <reponame>lukangli/weather-clock<gh_stars>0
#include <pgmspace.h>
const uint8_t W_1830_i0[] PROGMEM = {
0xFF, 0xD8, 0xFF, 0xE0, 0x00, 0x10, 0x4A, 0x46, 0x49, 0x46, 0x00, 0x01, 0x01, 0x00, 0x00, 0x01,
0x00, 0x01, 0x00, 0x00, 0xFF, 0xDB, 0x00, 0x43, 0x00, 0x03, 0x02, 0x02, 0x03, 0x02, 0x02, 0x03,
0x03, 0x03, 0x03, 0x04... |
lukangli/weather-clock | Firmware/weather-clock/src/CityWeather.h | <reponame>lukangli/weather-clock
//
// Created by lukang on 2021/10/27.
//
#ifndef WEATHERCLOCK_CITYWEATHER_H
#define WEATHERCLOCK_CITYWEATHER_H
#include <ESP8266HTTPClient.h>
#define BUFFER_SIZE 512
typedef struct displayInfo
{
int tempNum = 0; //温度百分比
int humidityNum = 0; //湿度百分比
int tempCol = 0xff... |
lukangli/weather-clock | Firmware/weather-clock/include/img/tianqi/t30.h | <gh_stars>0
#include <pgmspace.h>
const uint8_t t30[] PROGMEM = {
0xFF, 0xD8, 0xFF, 0xE0, 0x00, 0x10, 0x4A, 0x46, 0x49, 0x46, 0x00, 0x01, 0x01, 0x00, 0x00, 0x01,
0x00, 0x01, 0x00, 0x00, 0xFF, 0xDB, 0x00, 0x43, 0x00, 0x0A, 0x07, 0x07, 0x08, 0x07, 0x06, 0x0A,
0x08, 0x08, 0x08, 0x0B, 0x0A, 0x0A, 0x0B, 0x0E, 0x18, 0x10, ... |
lukangli/weather-clock | Firmware/weather-clock/include/font/W_3660_i1.h | <filename>Firmware/weather-clock/include/font/W_3660_i1.h<gh_stars>0
#include <pgmspace.h>
const uint8_t W_3660_i1[] PROGMEM = {
0xFF, 0xD8, 0xFF, 0xE0, 0x00, 0x10, 0x4A, 0x46, 0x49, 0x46, 0x00, 0x01, 0x01, 0x01, 0x00, 0x60,
0x00, 0x60, 0x00, 0x00, 0xFF, 0xE1, 0x00, 0x5A, 0x45, 0x78, 0x69, 0x66, 0x00, 0x00, 0x4D, 0x4D... |
lukangli/weather-clock | Firmware/weather-clock/include/img/tianqi/t3.h | #include <pgmspace.h>
const uint8_t t3[] PROGMEM = {
0xFF, 0xD8, 0xFF, 0xE0, 0x00, 0x10, 0x4A, 0x46, 0x49, 0x46, 0x00, 0x01, 0x01, 0x00, 0x00, 0x01,
0x00, 0x01, 0x00, 0x00, 0xFF, 0xDB, 0x00, 0x43, 0x00, 0x0A, 0x07, 0x07, 0x08, 0x07, 0x06, 0x0A,
0x08, 0x08, 0x08, 0x0B, 0x0A, 0x0A, 0x0B, 0x0E, 0x18, 0x10, 0x0E, 0x0D, 0... |
lukangli/weather-clock | Firmware/weather-clock/include/font/O_3660_i9.h | <filename>Firmware/weather-clock/include/font/O_3660_i9.h
#include <pgmspace.h>
const uint8_t O_3660_i9[] PROGMEM = {
0xFF, 0xD8, 0xFF, 0xE0, 0x00, 0x10, 0x4A, 0x46, 0x49, 0x46, 0x00, 0x01, 0x01, 0x01, 0x00, 0x60,
0x00, 0x60, 0x00, 0x00, 0xFF, 0xE1, 0x00, 0x5A, 0x45, 0x78, 0x69, 0x66, 0x00, 0x00, 0x4D, 0x4D,
0x00, 0x... |
lukangli/weather-clock | Firmware/weather-clock/src/WebConfig.h | <reponame>lukangli/weather-clock
//
// Created by lukang on 2021/11/28.
//
#ifndef WEATHERCLOCK_WEBCONFIG_H
#define WEATHERCLOCK_WEBCONFIG_H
#include <WiFiManager.h>
class WebConfig {
private:
WebConfig() = default;
static WebConfig *instance;
WiFiManager wiFiManager;
public:
//单例模式
static WebCo... |
lukangli/weather-clock | Firmware/weather-clock/include/img/tianqi/t19.h | #include <pgmspace.h>
const uint8_t t19[] PROGMEM = {
0xFF, 0xD8, 0xFF, 0xE0, 0x00, 0x10, 0x4A, 0x46, 0x49, 0x46, 0x00, 0x01, 0x01, 0x00, 0x00, 0x01,
0x00, 0x01, 0x00, 0x00, 0xFF, 0xDB, 0x00, 0x43, 0x00, 0x0A, 0x07, 0x07, 0x08, 0x07, 0x06, 0x0A,
0x08, 0x08, 0x08, 0x0B, 0x0A, 0x0A, 0x0B, 0x0E, 0x18, 0x10, 0x0E, 0x0D, ... |
lukangli/weather-clock | Firmware/weather-clock/include/img/tianqi/t1.h | <reponame>lukangli/weather-clock<filename>Firmware/weather-clock/include/img/tianqi/t1.h
#include <pgmspace.h>
const uint8_t t1[] PROGMEM = {
0xFF, 0xD8, 0xFF, 0xE0, 0x00, 0x10, 0x4A, 0x46, 0x49, 0x46, 0x00, 0x01, 0x01, 0x00, 0x00, 0x01,
0x00, 0x01, 0x00, 0x00, 0xFF, 0xDB, 0x00, 0x43, 0x00, 0x0A, 0x07, 0x07, 0x08, 0x0... |
lukangli/weather-clock | Firmware/weather-clock/src/EepromUtils.h | //
// Created by lukang on 2021/11/28.
//
#ifndef WEATHERCLOCK_EEPROMUTILS_H
#define WEATHERCLOCK_EEPROMUTILS_H
#include "Arduino.h"
class EepromUtils {
private:
EepromUtils();
static EepromUtils *instance;
public:
//单例模式
static EepromUtils *getInstance();
//获取背光值
static uint8_t getBacklight... |
lukangli/weather-clock | Firmware/weather-clock/include/font/O_3660_i6.h | <filename>Firmware/weather-clock/include/font/O_3660_i6.h<gh_stars>0
#include <pgmspace.h>
const uint8_t O_3660_i6[] PROGMEM = {
0xFF, 0xD8, 0xFF, 0xE0, 0x00, 0x10, 0x4A, 0x46, 0x49, 0x46, 0x00, 0x01, 0x01, 0x01, 0x00, 0x60,
0x00, 0x60, 0x00, 0x00, 0xFF, 0xE1, 0x00, 0x5A, 0x45, 0x78, 0x69, 0x66, 0x00, 0x00, 0x4D, 0x4D... |
lukangli/weather-clock | Firmware/weather-clock/include/font/O_3660_i4.h | <filename>Firmware/weather-clock/include/font/O_3660_i4.h
#include <pgmspace.h>
const uint8_t O_3660_i4[] PROGMEM = {
0xFF, 0xD8, 0xFF, 0xE0, 0x00, 0x10, 0x4A, 0x46, 0x49, 0x46, 0x00, 0x01, 0x01, 0x01, 0x00, 0x60,
0x00, 0x60, 0x00, 0x00, 0xFF, 0xE1, 0x00, 0x5A, 0x45, 0x78, 0x69, 0x66, 0x00, 0x00, 0x4D, 0x4D,
0x00, 0x... |
lukangli/weather-clock | Firmware/weather-clock/include/font/O_3660_i3.h | #include <pgmspace.h>
const uint8_t O_3660_i3[] PROGMEM = {
0xFF, 0xD8, 0xFF, 0xE0, 0x00, 0x10, 0x4A, 0x46, 0x49, 0x46, 0x00, 0x01, 0x01, 0x01, 0x00, 0x60,
0x00, 0x60, 0x00, 0x00, 0xFF, 0xE1, 0x00, 0x5A, 0x45, 0x78, 0x69, 0x66, 0x00, 0x00, 0x4D, 0x4D,
0x00, 0x2A, 0x00, 0x00, 0x00, 0x08, 0x00, 0x05, 0x03, 0x01, 0x00, ... |
lukangli/weather-clock | Firmware/weather-clock/include/font/W_3660_i9.h | <reponame>lukangli/weather-clock
#include <pgmspace.h>
const uint8_t W_3660_i9[] PROGMEM = {
0xFF, 0xD8, 0xFF, 0xE0, 0x00, 0x10, 0x4A, 0x46, 0x49, 0x46, 0x00, 0x01, 0x01, 0x01, 0x00, 0x60,
0x00, 0x60, 0x00, 0x00, 0xFF, 0xE1, 0x00, 0x5A, 0x45, 0x78, 0x69, 0x66, 0x00, 0x00, 0x4D, 0x4D,
0x00, 0x2A, 0x00, 0x00, 0x00, 0x0... |
lukangli/weather-clock | Firmware/weather-clock/include/img/pangzi/i0.h | <gh_stars>0
#include <pgmspace.h>
const uint8_t i0[] PROGMEM = {
0xFF, 0xD8, 0xFF, 0xE0, 0x00, 0x10, 0x4A, 0x46, 0x49, 0x46, 0x00, 0x01, 0x01, 0x00, 0x00, 0x01,
0x00, 0x01, 0x00, 0x00, 0xFF, 0xDB, 0x00, 0x43, 0x00, 0x0A, 0x07, 0x07, 0x08, 0x07, 0x06, 0x0A,
0x08, 0x08, 0x08, 0x0B, 0x0A, 0x0A, 0x0B, 0x0E, 0x18, 0x10, ... |
lukangli/weather-clock | Firmware/weather-clock/include/font/O_3660_i1.h | <reponame>lukangli/weather-clock
#include <pgmspace.h>
const uint8_t O_3660_i1[] PROGMEM = {
0xFF, 0xD8, 0xFF, 0xE0, 0x00, 0x10, 0x4A, 0x46, 0x49, 0x46, 0x00, 0x01, 0x01, 0x01, 0x00, 0x60,
0x00, 0x60, 0x00, 0x00, 0xFF, 0xE1, 0x00, 0x5A, 0x45, 0x78, 0x69, 0x66, 0x00, 0x00, 0x4D, 0x4D,
0x00, 0x2A, 0x00, 0x00, 0x00, 0x0... |
lukangli/weather-clock | Firmware/weather-clock/include/font/W_1830_i3.h | #include <pgmspace.h>
const uint8_t W_1830_i3[] PROGMEM = {
0xFF, 0xD8, 0xFF, 0xE0, 0x00, 0x10, 0x4A, 0x46, 0x49, 0x46, 0x00, 0x01, 0x01, 0x00, 0x00, 0x01,
0x00, 0x01, 0x00, 0x00, 0xFF, 0xDB, 0x00, 0x43, 0x00, 0x03, 0x02, 0x02, 0x03, 0x02, 0x02, 0x03,
0x03, 0x03, 0x03, 0x04, 0x03, 0x03, 0x04, 0x05, 0x08, 0x05, 0x05, ... |
lukangli/weather-clock | Firmware/weather-clock/include/font/W_1830_i9.h | #include <pgmspace.h>
const uint8_t W_1830_i9[] PROGMEM = {
0xFF, 0xD8, 0xFF, 0xE0, 0x00, 0x10, 0x4A, 0x46, 0x49, 0x46, 0x00, 0x01, 0x01, 0x00, 0x00, 0x01,
0x00, 0x01, 0x00, 0x00, 0xFF, 0xDB, 0x00, 0x43, 0x00, 0x03, 0x02, 0x02, 0x03, 0x02, 0x02, 0x03,
0x03, 0x03, 0x03, 0x04, 0x03, 0x03, 0x04, 0x05, 0x08, 0x05, 0x05, ... |
lukangli/weather-clock | Firmware/weather-clock/include/img/pangzi/i1.h | #include <pgmspace.h>
const uint8_t i1[] PROGMEM = {
0xFF, 0xD8, 0xFF, 0xE0, 0x00, 0x10, 0x4A, 0x46, 0x49, 0x46, 0x00, 0x01, 0x01, 0x00, 0x00, 0x01,
0x00, 0x01, 0x00, 0x00, 0xFF, 0xDB, 0x00, 0x43, 0x00, 0x0A, 0x07, 0x07, 0x08, 0x07, 0x06, 0x0A,
0x08, 0x08, 0x08, 0x0B, 0x0A, 0x0A, 0x0B, 0x0E, 0x18, 0x10, 0x0E, 0x0D, ... |
lukangli/weather-clock | Firmware/weather-clock/include/img/pangzi/i3.h | <filename>Firmware/weather-clock/include/img/pangzi/i3.h
#include <pgmspace.h>
const uint8_t i3[] PROGMEM = {
0xFF, 0xD8, 0xFF, 0xE0, 0x00, 0x10, 0x4A, 0x46, 0x49, 0x46, 0x00, 0x01, 0x01, 0x00, 0x00, 0x01,
0x00, 0x01, 0x00, 0x00, 0xFF, 0xDB, 0x00, 0x43, 0x00, 0x0A, 0x07, 0x07, 0x08, 0x07, 0x06, 0x0A,
0x08, 0x08, 0x0... |
lukangli/weather-clock | Firmware/weather-clock/include/img/tianqi/t5.h | #include <pgmspace.h>
const uint8_t t5[] PROGMEM = {
0xFF, 0xD8, 0xFF, 0xE0, 0x00, 0x10, 0x4A, 0x46, 0x49, 0x46, 0x00, 0x01, 0x01, 0x00, 0x00, 0x01,
0x00, 0x01, 0x00, 0x00, 0xFF, 0xDB, 0x00, 0x43, 0x00, 0x0A, 0x07, 0x07, 0x08, 0x07, 0x06, 0x0A,
0x08, 0x08, 0x08, 0x0B, 0x0A, 0x0A, 0x0B, 0x0E, 0x18, 0x10, 0x0E, 0x0D, 0... |
lukangli/weather-clock | Firmware/weather-clock/include/font/O_3660_i0.h | <reponame>lukangli/weather-clock
#include <pgmspace.h>
const uint8_t O_3660_i0[] PROGMEM = {
0xFF, 0xD8, 0xFF, 0xE0, 0x00, 0x10, 0x4A, 0x46, 0x49, 0x46, 0x00, 0x01, 0x01, 0x01, 0x00, 0x60,
0x00, 0x60, 0x00, 0x00, 0xFF, 0xE1, 0x00, 0x5A, 0x45, 0x78, 0x69, 0x66, 0x00, 0x00, 0x4D, 0x4D,
0x00, 0x2A, 0x00, 0x00, 0x00, 0x0... |
lukangli/weather-clock | Firmware/weather-clock/include/img/pangzi/i5.h | <reponame>lukangli/weather-clock<filename>Firmware/weather-clock/include/img/pangzi/i5.h
#include <pgmspace.h>
const uint8_t i5[] PROGMEM = {
0xFF, 0xD8, 0xFF, 0xE0, 0x00, 0x10, 0x4A, 0x46, 0x49, 0x46, 0x00, 0x01, 0x01, 0x00, 0x00, 0x01,
0x00, 0x01, 0x00, 0x00, 0xFF, 0xDB, 0x00, 0x43, 0x00, 0x0A, 0x07, 0x07, 0x08, 0x... |
lukangli/weather-clock | Firmware/weather-clock/include/img/tianqi/t14.h | #include <pgmspace.h>
const uint8_t t14[] PROGMEM = {
0xFF, 0xD8, 0xFF, 0xE0, 0x00, 0x10, 0x4A, 0x46, 0x49, 0x46, 0x00, 0x01, 0x01, 0x00, 0x00, 0x01,
0x00, 0x01, 0x00, 0x00, 0xFF, 0xDB, 0x00, 0x43, 0x00, 0x0A, 0x07, 0x07, 0x08, 0x07, 0x06, 0x0A,
0x08, 0x08, 0x08, 0x0B, 0x0A, 0x0A, 0x0B, 0x0E, 0x18, 0x10, 0x0E, 0x0D, ... |
lukangli/weather-clock | Firmware/weather-clock/include/font/W_3660_i3.h | #include <pgmspace.h>
const uint8_t W_3660_i3[] PROGMEM = {
0xFF, 0xD8, 0xFF, 0xE0, 0x00, 0x10, 0x4A, 0x46, 0x49, 0x46, 0x00, 0x01, 0x01, 0x01, 0x00, 0x60,
0x00, 0x60, 0x00, 0x00, 0xFF, 0xE1, 0x00, 0x5A, 0x45, 0x78, 0x69, 0x66, 0x00, 0x00, 0x4D, 0x4D,
0x00, 0x2A, 0x00, 0x00, 0x00, 0x08, 0x00, 0x05, 0x03, 0x01, 0x00, ... |
lukangli/weather-clock | Firmware/weather-clock/include/img/humidity.h | <gh_stars>0
#include <pgmspace.h>
const uint8_t humidity[] PROGMEM = {
0xFF, 0xD8, 0xFF, 0xE0, 0x00, 0x10, 0x4A, 0x46, 0x49, 0x46, 0x00, 0x01, 0x01, 0x00, 0x00, 0x01,
0x00, 0x01, 0x00, 0x00, 0xFF, 0xDB, 0x00, 0x43, 0x00, 0x06, 0x04, 0x05, 0x06, 0x05, 0x04, 0x06,
0x06, 0x05, 0x06, 0x07, 0x07, 0x06, 0x08, 0x0A, 0x10, ... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.