aboutsummaryrefslogtreecommitdiff
path: root/src/zjs_grove_lcd.h
blob: f2607fec458175320727f11f77dd60a9eac75073 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
// Copyright (c) 2016, Intel Corporation.

#ifndef __zjs_grove_lcd_h__
#define __zjs_grove_lcd_h__

#include "jerryscript.h"

jerry_value_t zjs_grove_lcd_init();

/**
 * Initialize the grove_lcd module, or reinitialize after cleanup
 *
 * @return Grove LCD API object
 */
jerry_value_t zjs_grove_lcd_init();

/** Release resources held by the grove_lcd module */
void zjs_grove_lcd_cleanup();

#endif  // __zjs_grove_lcd_h__