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
;(load-file "~/src/emacspeak/lisp/emacspeak-setup.el") | |
(blink-cursor-mode 0) | |
;; Emacs startup initialization | |
(set-language-environment 'Japanese) | |
(setq default-buffer-file-coding-system 'utf-8) | |
(setq default-process-coding-system '(utf-8 . utf-8)) | |
(setq default-file-name-coding-system 'utf-8) | |
(set-terminal-coding-system 'utf-8) | |
(set-keyboard-coding-system 'utf-8) | |
(set-default-coding-systems 'utf-8) ; utf-8 にする |
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
/* | |
Copyright (C) 2024 KIRIAKE Masanori <[email protected]> | |
The original of this file is included in the ESP32 Arduino Library. This file | |
has been modified so that the original file can be compiled with ESP-IDF. | |
*/ | |
#ifndef Pins_Arduino_h | |
#define Pins_Arduino_h | |
#include "driver/gpio.h" |
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
cmake_minimum_required(VERSION 3.12) | |
set(CMAKE_EXPORT_COMPILE_COMMANDS ON) | |
set(CMAKE_C_STANDARD 11) | |
set(CMAKE_CXX_STANDARD 17) | |
include($ENV{PICO_SDK_PATH}/external/pico_sdk_import.cmake) | |
project(project1 C CXX ASM) | |
pico_sdk_init() | |
add_executable(test test.c) |
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
[Attribute Behavior Table] | |
0X801=1|MessageVoice||| | |
0X1001=1|MessageVoice||| | |
0X88001=1|MessageVoice||| | |
0X208001=1|MessageVoice||| | |
0X408001=3|||OCRVoice| | |
0X1008001=1|MessageVoice||| | |
0X2008001=1|MessageVoice||| | |
0X4008001=1|MessageVoice||| | |
0X8008001=1|MessageVoice||| |
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
#!/usr/bin/env python3 | |
# -*- coding: utf-8 -*- | |
import urllib.request, urllib.error, urllib.parse | |
import os, sys, datetime, argparse, re | |
import subprocess | |
import base64 | |
import shlex | |
import logging | |
from sys import argv |