Skip to content

Commit

Permalink
M5Stack化、高速化、モデルの変更、ライセンス条項の追加
Browse files Browse the repository at this point in the history
- M5Stackように書き換え
  - LCDを対応させた。
  - ボタン操作を追加
- Zバッファをuint16_t型にしてメモリを節約、高速化
- 3Dモデルを初音ミクのデータに変更、それに伴うライセンス条項の追加(PCL)
- このソフト自体のライセンス条項の追加(MIT License)
  • Loading branch information
elect-gombe committed Aug 7, 2018
1 parent 41b597a commit f34849f
Show file tree
Hide file tree
Showing 26 changed files with 12,257 additions and 478 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,6 @@
#

PROJECT_NAME := spi_master

CFLAG = -Ofast --fast-math
include $(IDF_PATH)/make/project.mk

14 changes: 11 additions & 3 deletions main/3dconfig.hpp
Original file line number Diff line number Diff line change
@@ -1,9 +1,17 @@
/**
Copyright (c) 2018 Gombe.
This software is released under the MIT License.
http://opensource.org/licenses/mit-license.php
*/

#ifndef _3DCONFIG
#define _3DCONFIG

#define DRAW_NLINES 60
const static int window_width = 240;
const static int window_height = 180;
#define DRAW_NLINES 40

const static int window_width = 320;
const static int window_height = 240;


#endif
Loading

0 comments on commit f34849f

Please sign in to comment.