-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathkeywords.txt
More file actions
31 lines (28 loc) · 867 Bytes
/
keywords.txt
File metadata and controls
31 lines (28 loc) · 867 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
# ================================================
# Syntax highlighting file for the ArduinoCCNET library
# Author: Masyukov Pavel
# Library for working with bill acceptors using the CCNET protocol.
# ================================================
# Classes (highlighted orange/blue in Arduino IDE)
CCNET KEYWORD1
# Public methods (highlighted brown)
init KEYWORD2
reset KEYWORD2
start KEYWORD2
poll KEYWORD2
# ================================================
# USAGE COMMENTS:
#
# 1. KEYWORD1 - for class names (orange/blue color)
# 2. KEYWORD2 - for public methods (brown color)
#
# FORMAT:
# <keyword> <TAB> <key_type>
#
# Example usage:
#
# utils::CCNET cashAcceptor; // KEYWORD1
# cashAcceptor.init(); // KEYWORD2
# cashAcceptor.start(); // KEYWORD2
# cashAcceptor.poll(); // KEYWORD2
# ================================================