Skip to content

Commit

Permalink
Merge pull request #9 from kd8bxp/captials
Browse files Browse the repository at this point in the history
Captials
  • Loading branch information
kd8bxp authored Apr 15, 2018
2 parents 4a0134a + 0994f9a commit d89e7ba
Show file tree
Hide file tree
Showing 21 changed files with 1,049 additions and 561 deletions.
40 changes: 21 additions & 19 deletions Information_README.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,15 @@
all words are lower case - Mar 11, 2018 - based on feedback from user
jjdeprisco, all words now begin with a underscore.

Apr 13, 2018 - Due to an incompatiable with some other libraries that use _dc as a variable (When using SPI connections) - I've made all the Words uppercase with a underscore in front of them.

For the Normal Chip 100+ Word Shield and LBT:

_am this is am not a.m. (As in "I am going to somewhere.")
A.M. is _am_
P.M. is _pm_
_AM this is am not a.m. (As in "I am going to somewhere.")
A.M. is _AM_
P.M. is _PM_

Both color (US version), and colour (UK version) can be used.
Both COLOR (US version), and COLOUR (UK version) can be used.

All words for the 100+ Word Ham Chip begin with a underscore.
(All single letter from the Alphabet list has a underscore before them)
Expand All @@ -20,30 +22,30 @@ Ham Chip two was duplicated.

Abrivations: Common Abrivations have been added for some words.
Most of the Months:
_jan for january
_feb for february
_mar for march
_apr for april
_aug for august
_sep and sept for september
_oct for october
_nov for november
_dec for december
_JAN for _JANUARY
_FEB for _FEBRUARY
_MAR for _MARCH
_APR for _APRIL
_AUG for _AUGUST
_SEP or _SEPT for _SEPTEMBER
_OCT for _OCTOBER
_NOV for _NOVEMBER
_DEC for _DECEMBER

All days have been abrivated to the first three letters or full name.
IE: _mon is monday, _tue is tuesday, ect. exception is thursday which the common abrivation is _thur and _thr.
IE: _MON is _MONDAY, _TUE is _TUESDAY, ect. exception is _THURSDAY which the common abrivation is _THUR and _THR.

hours can be abrivated to hrs
_HOURS can be abrivated to _HRS

in both sets: Numbers with underscores before them. IE:
_1 is the same as one, _2 is the same as two, _3 is three, ect.
_1 is the same as _ONE, _2 is the same as _TWO, _3 is _THREE, ect.

Updated Mar 16, 2018 -
_100 and _1000 can be used for _hundred and _thousand.
* _million is still _million
_100 and _1000 can be used for _HUNDRED and _THOUSAND.
* _MILLION is still _MILLION

In the Ham Set:
_hertz is abrivated to _hz
_HERTZ is abrivated to _HZ

IMPORTANT OTHER THINGS TO BE AWARE OF:
all words (underscored or otherwise) are defined and not variables. As such they should be avoided as variable names.
Expand Down
4 changes: 4 additions & 0 deletions New_Features.txt
Original file line number Diff line number Diff line change
Expand Up @@ -49,3 +49,7 @@ setDelay - works with the LBT librarys, it is included with the 100+ Word Librar

Also includes a work around/correction for ESP8266 device compile errors.

Version 4.0.0 Apr 13, 2018
Found some incompatiablies with some other libraries (specifically some Adafruit Display Libraries). Forced all words to upper case. This will break previous sketches, but is easy to fix with search and replace.
** As a side note, I had considered making all the words upper case early in development. And decided that just adding the underscore would solve some problems. Which it did - but it created other problems. **

5 changes: 4 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,9 @@ http://www.engineeringshock.com/100-word-arduino-audio-shield.html

## Installation

Remove the -master from the file name, unzip and move folder to your Arduino library folder.
NEW Way: This library is now included in the Arduino Library manager, it's recommended to use the manager and look for Word100. This will let you receive updates quickly.

OLD Way: Remove the -master from the file name, unzip and move folder to your Arduino library folder.

## Versions

Expand All @@ -19,6 +21,7 @@ versioning. V1.5 now becomes v2.1.0 since it was a major change at the time.
See Information_README.txt for minor changes.
Library version 3.0.0 - Mar 19, 2018 Major change after finding some issues with LBT and 100+ Word Shield with HAM chip.
New version has the three variations split into three different libraries, see below for more information.
Version 4.0.0 - Apr 13, 2018 - All words are now UPPERCASE and use a underscore. This fixes a problem I found with some other libraries.

## Usage

Expand Down
165 changes: 165 additions & 0 deletions Word_List_100+Shield_HAM_Chip.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,165 @@
//Alphabet
_A 0x00
_B 0x01
_C 0x02
_D 0x03
_E 0x04
_F 0x05
_G 0x06
_H 0x07
_I 0x08
_J 0x09
_K 0x0a
_L 0x0b
_M 0x0c
_N 0x0d
_O 0x0e
_P 0x0f
_Q 0x10
_R 0x11
_S 0x12
_T 0x13
_U 0x14
_V 0x15
_W 0x16
_X 0x17
_Y 0x18
_Z 0x19

//Phonetic Alphabet
_ALPHA 0x1a
_BRAVO 0x1b
_CHARLIE 0x1c
_DELTA 0x1d
_ECHO 0x1e
_FOXTROT 0x1f
_GOLF 0x20
_HOTEL 0x21
_INDIA 0x22
_JULIET 0x23
_KILO 0x24
_LIMA 0x25
_MIKE 0x26
_NOVEMBER 0x27
_OSCAR 0x28
_PAPA 0x29
_QUEBEC 0x2a
_ROMEO 0x2b
_SIERRA 0x2c
_TANGO 0x2d
_UNIFORM 0x2e
_VICTOR 0x2f
_WHISKEY 0x30
_XRAY 0x31
_YANKEE 0x32
_ZULU 0x33

//Numbers
_ZERO 0x34
_0 0x34
_ONE 0x35
_1 0x35
_TWO 0x36
_2 0x36
_THREE 0x37
_3 0x37
_FOUR 0x38
_4 0x38
_FIVE 0x39
_5 0x39
_SIX 0x3a
_6 0x3a
_SEVEN 0x3b
_7 0x3b
_EIGHT 0x3c
_8 0x3c
_NINE 0x3d
_9 0x3d
_TEN 0x3e
_10 0x3e
_ELEVEN 0x3f
_11 0x3f
_TWELVE 0x40
_12 0x40
_THIRTEEN 0x41
_13 0x41
_FOURTEEN 0x42
_14 0x42
_FIFTEEN 0x43
_15 0x43
_SIXTEEN 0x44
_16 0x44
_SEVENTEEN 0x45
_17 0x45
_EIGHTEEN 0x46
_18 0x46
_NINETEEN 0x47
_19 0x47
_TWENTY 0x48
_20 0x48
_THIRTY 0x49
_30 0x49
_FORTY 0x4a
_40 0x4a
_FIFTY 0x4b
_50 0x4b
_SIXTY 0x4c
_60 0x4c
_SEVENTY 0x4d
_70 0x4d
_EIGHTY 0x4e
_80 0x4e
_NINETY 0x4f
_90 0x4f
_HUNDRED 0x50
_100 0x50
_THOUSAND 0x51
_1000 0x51
_MILLION 0x52

//Words General
_AC 0x53
_AMPS 0x54
_BAND 0x55
_BOARDCASTING 0x56
_CALLING 0x57
_COME 0x58
_CONTACT 0x59
_DB 0x5a
_DC 0x5b
_DEGREES 0x5c
_FIRST 0x5d
_FREQUENCY 0x5e
_GIGA 0x5f
_GOODBYE 0x60
_HELLO 0x61
_HERE 0x62
_HERTZ 0x63
_HZ 0x63
_IN 0x64
_INCOMING 0x65
_IT 0x66
_KEY 0x67
_KILO 0x68 //DUPLICATED?
_LAST 0x69
_LEVEL 0x6a
_MEGA 0x6b
_OFF 0x6c
_OHMS 0x6d
_ON 0x6e
_OPERATOR 0x6f
_OUT 0x70
_OVER 0x71
_RADIO 0x72
_READY 0x73
_RECEIVING 0x74
_RF 0x75
_SENT 0x76
_SLEEP 0x77
_THE 0x78
// _TWO 0x79
_TRANSMITTING 0x7a
_VOLTS 0x7b
_WATTS 0x7c


Loading

0 comments on commit d89e7ba

Please sign in to comment.