2016-11-08から1日間の記事一覧

11/8/2016

そういえば、明日のロボ実験圧力センサ読み込みプログラム// serial_voltage_byte_sample1const int led_pin = 9;const int vol_pin = 1;int vol_value = 0;void setup() { Serial.begin( 9600 );}void loop() { vol_value = analogRead( vol_pin ); analogW…

11/7/2016

無線でリモコンの一番目のボタンを押し、信号を送った後、13番のledを数秒光らせることに成功。プログラム/* * IRremote: IRrecvDump - dump details of IR codes with IRrecv * An IR detector/demodulator must be connected to the input RECV_PIN. * Ver…