Skip to content

Instantly share code, notes, and snippets.

View bcdejp's full-sized avatar

Delta bcdejp

  • Japan
View GitHub Profile
# SDカードに規定のパーティションを作製する
$partitionStyle = "MBR";
$partitionSize1 = 1073741824;
$driveLetter1 = "J"
$driveLetter2 = "K";
$driveLetter3 = "L";
$driveLetter4 = "M";
# SDカードに規定のパーティションを作製する
$partitionStyle = "MBR";
$partitionSize1 = 1073741824;
$driveLetter1 = "J"
$driveLetter2 = "K";
$driveLetter3 = "L";
$driveLetter4 = "M";
// CANの送信サンプル
//
// CAN信号を送信し続ける
// ライブラリヘッダのインクルード
#include <mcp_can.h>
#include <SPI.h>
#define CS_PIN (10) // CSを10ピンとする(変更可能)
// CAN受信のサンプル
//
// 受信したCAN信号をシリアルで送信する
// ライブラリヘッダのインクルード
#include <mcp_can.h>
#include <SPI.h>
//設定値
#define CS_PIN (10) // CSを10ピンとする(変更可能)
@bcdejp
bcdejp / chart.py
Created February 21, 2015 03:51
グラフ表示用のCGI
#!/usr/bin/pythonCGI
# -*- coding: utf-8 -*-
from jinja2 import Environment, FileSystemLoader
import MySQLdb
import datetime
def mychart(environ, start_response):
env = Environment(loader=FileSystemLoader('./', encoding='utf8'))
@bcdejp
bcdejp / template.html
Created February 21, 2015 03:49
Google Chart APIを使ってグラフ表示するためのテンプレート
<html>
<head>
<title>Temperature Chart</title>
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<script type="text/javascript" src="https://www.google.com/jsapi"></script>
<script type="text/javascript">
google.load("visualization", "1", {packages:["corechart"]});
google.setOnLoadCallback(drawChart);
@bcdejp
bcdejp / insert.py
Created February 21, 2015 03:43
温度をMySQLデータベースに記録
#!/usr/bin/python
# -*- coding: utf-8 -*-
import smbus
import datetime
import MySQLdb
if __name__ == "__main__":
i2c = smbus.SMBus(1)
@bcdejp
bcdejp / mpl115a2.py
Created February 15, 2015 14:14
Raspberry Piで気圧を測る(MPL115A2)
#!/usr/bin/python
# -*- coding: utf-8 -*-
import smbus
import time
def convert_coefficient(msb, lsb, total_bits, fractional_bits, zero_pad):
data = (msb << 8) | lsb
period = float(1 << 16 - total_bits + fractional_bits + zero_pad)
@bcdejp
bcdejp / lcd_sample.c
Last active August 29, 2015 14:12
LCDのサンプルプログラム
/*
LCD Sample
Ver1.00
make.bcde.jp
LCD表示のサンプル
*/
@bcdejp
bcdejp / template.html
Created December 29, 2014 08:15
Kindle向けのテンプレート
<!DOCTYPE html>
<html>
<head lang="en">
<meta charset="UTF-8">
<title>{{title}}</title>
</head>
<body>
{% for news in news_list %}
<h1>{{ news.title|safe }}</h1>
<p>