Skip to content
Snippets Groups Projects
Commit 8ad6cc0a authored by Nathan Adams's avatar Nathan Adams
Browse files

make secrets ignored, and create a template file

parent 6c000abd
Branches
No related merge requests found
## Project .gitignore
huzzah32/secrets.h
## Mac OS .gitignore
# General
.DS_Store
.AppleDouble
.LSOverride
# Icon must end with two \r
Icon
# Thumbnails
._*
# Files that might appear in the root of a volume
.DocumentRevisions-V100
.fseventsd
.Spotlight-V100
.TemporaryItems
.Trashes
.VolumeIcon.icns
.com.apple.timemachine.donotpresent
# Directories potentially created on remote AFP share
.AppleDB
.AppleDesktop
Network Trash Folder
Temporary Items
.apdisk
##Linux .gitignore
*~
# temporary files which can be created if a process still has a handle open of a deleted file
.fuse_hidden*
# KDE directory preferences
.directory
# Linux trash folder which might appear on any partition or disk
.Trash-*
# .nfs files are created when an open file is removed but is still being accessed
.nfs*
## Windows .gitignore
# Windows thumbnail cache files
Thumbs.db
Thumbs.db:encryptable
ehthumbs.db
ehthumbs_vista.db
# Dump file
*.stackdump
# Folder config file
[Dd]esktop.ini
# Recycle Bin used on file shares
$RECYCLE.BIN/
# Windows Installer files
*.cab
*.msi
*.msix
*.msm
*.msp
# Windows shortcuts
*.lnk
\ No newline at end of file
# OscImu # OscImu
Wireless IMU that sends OSC messages - based on the HUZZAH32 and Fusion 9DoF breakout Wireless IMU that sends OSC messages - based on the HUZZAH32 and Fusion 9DoF breakout
\ No newline at end of file
## Build Instructions
### Hardware
### Software
Install the following Arduino libraries
ESP32 (requires new path in Arduino preferences)
OSC
Adafruit Sensor Library
// OSC IMU
// Nathan Adams / Atau Tanaka - Goldsmiths, University of London
// 2020
// secrets.template.h
//
// Contains details used for Wireless and BT Connections - must never shared on github / gitlab etc
// this actual file is included in .gitignore so it is never updated to avoid this.
// When creating your own project copy secrets.template.h to secrets.h
#define SECRET_SSID "******"
#define SECRET_PASS "*******"
#define SECRET_IP 172, 20, 10, 8
#define SECRET_OUTPORT 9999
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment