Skip to content

Commit

Permalink
Merge pull request #24 from brentru/remove-debug-kwarg-in-examples
Browse files Browse the repository at this point in the history
Remove esp debug kwarg in AIO post example
  • Loading branch information
dhalbert authored Mar 18, 2020
2 parents a9965a8 + 5644c71 commit dd1e3f2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion examples/minimqtt_adafruitio_wifi.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
# esp32_reset = DigitalInOut(board.D5)

spi = busio.SPI(board.SCK, board.MOSI, board.MISO)
esp = adafruit_esp32spi.ESP_SPIcontrol(spi, esp32_cs, esp32_ready, esp32_reset, debug=True)
esp = adafruit_esp32spi.ESP_SPIcontrol(spi, esp32_cs, esp32_ready, esp32_reset)
"""Use below for Most Boards"""
status_light = neopixel.NeoPixel(
board.NEOPIXEL, 1, brightness=0.2
Expand Down

0 comments on commit dd1e3f2

Please sign in to comment.