jswrap_pin.h 828 B

123456789101112131415161718192021
  1. /*
  2. * This file is part of Espruino, a JavaScript interpreter for Microcontrollers
  3. *
  4. * Copyright (C) 2013 Gordon Williams <gw@pur3.co.uk>
  5. *
  6. * This Source Code Form is subject to the terms of the Mozilla Public
  7. * License, v. 2.0. If a copy of the MPL was not distributed with this
  8. * file, You can obtain one at http://mozilla.org/MPL/2.0/.
  9. *
  10. * ----------------------------------------------------------------------------
  11. * JavaScript Pin Object Functions
  12. * ----------------------------------------------------------------------------
  13. */
  14. #include "jsvar.h"
  15. #include "jsinteractive.h"
  16. bool jswrap_pin_read(JsVar *parent);
  17. void jswrap_pin_set(JsVar *parent);
  18. void jswrap_pin_reset(JsVar *parent);
  19. void jswrap_pin_write(JsVar *parent, bool value);
  20. void jswrap_pin_writeAtTime(JsVar *parent, bool value, JsVarFloat time);