This file contains 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
test |
This file contains 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
#include <M5Stack.h> | |
#include <WiFi.h> | |
#include <WiFiClientSecure.h> | |
WiFiClientSecure client; | |
//WiFi設定 | |
const char* ssid = "******"; | |
const char* password = "*****"; |
This file contains 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
#include <M5Stack.h> | |
#include <WiFi.h> | |
#include <WiFiClient.h> | |
WiFiClient client; | |
// WiFi設定 | |
const char* ssid = "*****"; | |
const char* password = "*****"; |
This file contains 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
InnoCAFE37 |
This file contains 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
InnoCAFE36 |
This file contains 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
#include <Nefry.h> | |
#define PIN_INSIDE D2 | |
#define PIN_OUTSIDE D4 | |
int state_inside; | |
int state_outside; | |
int state_inside_temp; | |
int state_outside_temp; |
This file contains 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
#include <Nefry.h> | |
#define DELAY_TIME1 3400 | |
#define DELAY_TIME2 460 | |
#define DELAY_TIME3 570 | |
#define DELAY_TIME4 510 | |
#define PIN_MAGNET D2 | |
#define PIN_BUZZER D4 |
This file contains 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
var SLACK_API_TOKEN = PropertiesService.getScriptProperties().getProperty('SLACK_API_TOKEN'); | |
var OUTGOING_TOKEN = PropertiesService.getScriptProperties().getProperty('OUTGOING_TOKEN'); | |
var SPREADSHEET_ID = PropertiesService.getScriptProperties().getProperty('SPREADSHEET_ID'); | |
var RECORD_SHEET_NAME = 'record'; | |
var MEMBER_SHEET_NAME = 'member'; | |
function doPost(e) { | |
if(OUTGOING_TOKEN == e.parameter.token && e.parameter.trigger_word == 'iine'){ |
NewerOlder