コネクター棒は、φ1.5mm長さ30cmの真鍮棒の一方を折り曲げたもの。両端には直径8mmのビーズ玉を接着剤で止めた。
ネオンランプのリード線の末端と端子ネジとの間に1〜3mmの隙間を設けてある。こうするとこのギャップでスパークするたびにランプが明るく点灯する。
そして、ネオンのオレンジ色が明るく光る側がマイナス極であることがわかる。
アクエリアスの時代到来、そして新たな時代に合った文明や科学、人のありかたなどを探求してみたい。そして、太陽の国である日本は地球人類のリーダー的存在となる必要があります。その一助を担えれば幸いです。
アルミ角パイプ120x60x80L |
// ★マザーボードの種類:Ramps 1.4
// The following define selects which electronics board you have.
// Please choose the name from boards.h that matches your setup
#ifndef MOTHERBOARD
#define MOTHERBOARD BOARD_RAMPS_14_EFB
#endif
// ★ 温度センサー設定:TEMP_SENSOR_0=ホットエンド用、TEMP_SENSOR_BED=ヒートベッド用
#define TEMP_SENSOR_0 1
#define TEMP_SENSOR_1 0
#define TEMP_SENSOR_2 0
#define TEMP_SENSOR_3 0
#define TEMP_SENSOR_BED 1
// ★ ヒーター最高温度設定
// When temperature exceeds max temp, your heater will be switched off.
// This feature exists to protect your hotend from overheating accidentally, but *NOT* from thermistor short/failure!
// You should use MINTEMP for thermistor short/failure protection.
#define HEATER_0_MAXTEMP 275
#define HEATER_1_MAXTEMP 275
#define HEATER_2_MAXTEMP 275
#define HEATER_3_MAXTEMP 275
#define BED_MAXTEMP 125
// ★ 温度センサーの特性設定 for atom
#define DEFAULT_Kp 25.89
#define DEFAULT_Ki 1.35
#define DEFAULT_Kd 124.29
// ★メカニカル式(リミットスイッチ)用の内臓プルアップ抵抗を有効にする
// 光学式の場合はコメントアウトする。
// coarse Endstop Settings
#define ENDSTOPPULLUPS // Comment this out (using // at the start of the line) to disable the endstop pullup resistors
// ★ リミットスイッチの論理反転設定:NormaryOpend=true, [*]NormaryClosed=false
// Mechanical endstop with COM to ground and NC to Signal uses "false" here (most common setup).
#define X_MIN_ENDSTOP_INVERTING false // set to true to invert the logic of the endstop.
#define Y_MIN_ENDSTOP_INVERTING false // set to true to invert the logic of the endstop.
#define Z_MIN_ENDSTOP_INVERTING false // set to true to invert the logic of the endstop.
#define X_MAX_ENDSTOP_INVERTING false // set to true to invert the logic of the endstop.
#define Y_MAX_ENDSTOP_INVERTING false // set to true to invert the logic of the endstop.
#define Z_MAX_ENDSTOP_INVERTING false // set to true to invert the logic of the endstop.
#define Z_MIN_PROBE_ENDSTOP_INVERTING false // set to true to invert the logic of the endstop.
// ENDSTOP SETTINGS:
// ★ ホームポジション時のエンドストップの方向設定
// Sets direction of endstops when homing; 1=MAX, -1=MIN
// :[-1,1]
#define X_HOME_DIR -1
#define Y_HOME_DIR -1
#define Z_HOME_DIR -1
// ★ソフトウェアエンドストップの設定:MIN側はOFF(HWリミットスイッチ利用)、MAX側はON
#define min_software_endstops false // If true, axis won't move to coordinates less than HOME_POS.
#define max_software_endstops true // If true, axis won't move to coordinates greater than the defined lengths below.
// ★ホーム位置からの限界距離
// Travel limits after homing (units are in mm)
#define X_MIN_POS 0
#define Y_MIN_POS 0
#define Z_MIN_POS 0
#define X_MAX_POS 140
#define Y_MAX_POS 140
#define Z_MAX_POS 130
// ★ ステッピングモーターの設定
//#define DEFAULT_AXIS_STEPS_PER_UNIT {80, 80, 4000, 91.6019707} // default steps per unit for Ultimaker
#define DEFAULT_AXIS_STEPS_PER_UNIT {80, 80, 4000, 195} // default steps per unit for Ultimaker
#define DEFAULT_MAX_FEEDRATE {500, 500, 5, 25} // (mm/sec)
#define DEFAULT_MAX_ACCELERATION {3000,3000,100,10000} // X, Y, Z, E maximum start speed for accelerated moves. E default values are good for Skeinforge 40+, for older versions raise them a lot.
// ★ SDカード有効化
//
// SD CARD
//
// SD Card support is disabled by default. If your controller has an SD slot,
// you must uncomment the following option or it won't work.
//
#define SDSUPPORT
//
// ★ロータリーエンコーダーの方向を逆転する
// This option reverses the encoder direction for navigating LCD menus.
//
// If CLOCKWISE normally moves DOWN this makes it go UP.
// If CLOCKWISE normally moves UP this makes it go DOWN.
//
#define REVERSE_MENU_DIRECTION
//
// ★4行LCDコントローラー
// RepRapDiscount Smart Controller.
// http://reprap.org/wiki/RepRapDiscount_Smart_Controller
//
// Note: Usually sold with a white PCB.
//
#define REPRAP_DISCOUNT_SMART_CONTROLLER