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
using System; | |
using System.Collections.Generic; | |
using System.ComponentModel; | |
using System.Data; | |
using System.Drawing; | |
using System.IO; | |
using System.Linq; | |
using System.Text; | |
using System.Threading.Tasks; | |
using System.Windows.Forms; |
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
/* | |
* IRremote: IRsendRawDemo - demonstrates sending IR codes with sendRaw | |
* An IR LED must be connected to Arduino PWM pin 3. | |
* Version 0.1 July, 2009 | |
* Copyright 2009 Ken Shirriff | |
* http://arcfn.com | |
* | |
* IRsendRawDemo - added by AnalysIR (via www.AnalysIR.com), 24 August 2015 | |
* | |
* This example shows how to send a RAW signal using the IRremote library. |
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
/** | |
* Copyright (c) 2020 Raspberry Pi (Trading) Ltd. | |
* | |
* SPDX-License-Identifier: BSD-3-Clause | |
*/ | |
// !!! patched to majocairis lcd !!!! | |
#include <stdio.h> | |
#include <math.h> | |
#include "pico/stdlib.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
/** | |
* Copyright (c) 2020 Raspberry Pi (Trading) Ltd. | |
* | |
* SPDX-License-Identifier: BSD-3-Clause | |
*/ | |
#include "pico/stdlib.h" | |
int main() { | |
int pinFirst=0; | |
int pinLast=15; |
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
Booting... | |
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ | |
@ | |
@ chip__no chip__id mfr___id dev___id cap___id size_sft dev_size chipSize | |
@ 0000000h 0c22017h 00000c2h 0000020h 0000017h 0000000h 0000017h 0800000h | |
@ blk_size blk__cnt sec_size sec__cnt pageSize page_cnt chip_clk chipName | |
@ 0010000h 0000080h 0001000h 0000800h 0000100h 0000010h 0000027h MX25L6405D | |
@ |
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
/* | |
ESP8266 mDNS responder sample | |
This is an example of an HTTP server that is accessible | |
via http://esp8266.local URL thanks to mDNS responder. | |
Instructions: | |
- Update WiFi SSID and password as necessary. | |
- Flash the sketch to the ESP8266 board | |
- Install host software: |
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
[WRAP] _pwrap_init_sistrobe [Read Test of MT6350] tuning,index=0 rdata=800 | |
[WRAP] _pwrap_init_sistrobe [Read Test of MT6350] pass,index=1 rdata=5AA5 | |
[WRAP] _pwrap_init_sistrobe [Read Test of MT6350] pass,index=2 rdata=5AA5 | |
[WRAP] _pwrap_init_sistrobe [Read Test of MT6350] pass,index=3 rdata=5AA5 | |
[WRAP] _pwrap_init_sistrobe [Read Test of MT6350] pass,index=4 rdata=5AA5 | |
[WRAP] _pwrap_init_sistrobe [Read Test of MT6350] pass,index=5 rdata=5AA5 | |
[WRAP] _pwrap_init_sistrobe [Read Test of MT6350] pass,index=6 rdata=5AA5 | |
[WRAP] _pwrap_init_sistrobe [Read Test of MT6350] pass,index=7 rdata=5AA5 | |
[WRAP] _pwrap_init_sistrobe [Read Test of MT6350] tuning,index=8 rdata=1001 | |
[WRAP] _pwrap_init_sistrobe [Read Test of MT6350] tuning,index=9 rdata=B54B |
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
############################################################################################################ | |
# | |
# General Setting | |
# | |
############################################################################################################ | |
- general: MTK_PLATFORM_CFG | |
info: | |
- config_version: V1.1.2 | |
platform: MT6580 | |
project: honeylab |
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
############################################################################################################ | |
# | |
# General Setting | |
# | |
############################################################################################################ | |
- general: MTK_PLATFORM_CFG | |
info: | |
- config_version: V1.1.2 | |
platform: MT6580 | |
project: nck_team |
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
from gps3 import gps3 | |
gps_socket = gps3.GPSDSocket() | |
data_stream = gps3.DataStream() | |
gps_socket.connect() | |
gps_socket.watch() | |
for new_data in gps_socket: | |
if new_data: | |
data_stream.unpack(new_data) |