GPIO library for mruby-esp32.
In esp32_build_config.rb
, at the end of the MRuby::CrossBuild
block, add the following:
conf.gem :github => 'mruby-esp32/mruby-esp32-gpio'
In CMakeLists.txt
, make sure the line PRIV_REQUIRES
includes the driver
component. Add it if needed:
add_prebuilt_library(
libmruby ${LIBMRUBY_FILE}
PRIV_REQUIRES esp_wifi esp_hw_support esp_rom mqtt driver
)
include ESP32::Constants
include ESP32::GPIO
led = GPIO_NUM_4
pinMode(led, OUTPUT)
loop {
digitalWrite(led, HIGH)
ESP32::System.delay(1000)
digitalWrite(led, LOW)
ESP32::System.delay(1000)
}
Note: To use include
syntax on top level objects, mruby-toplevel-ext
mrbgem is required.
Copyright (c) 2017 YAMAMOTO Masaya.
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.