File tree Expand file tree Collapse file tree 1 file changed +11
-9
lines changed Expand file tree Collapse file tree 1 file changed +11
-9
lines changed Original file line number Diff line number Diff line change 22
22
uart = busio .UART (board .TX , board .RX , timeout = 0.1 )
23
23
24
24
# With a Particle Argon
25
- # RX = board.ESP_TX
26
- # TX = board.ESP_RX
27
- # resetpin = DigitalInOut(board.ESP_WIFI_EN)
28
- # rtspin = DigitalInOut(board.ESP_CTS)
29
- # uart = busio.UART(TX, RX, timeout=0.1)
30
- # esp_boot = DigitalInOut(board.ESP_BOOT_MODE)
31
- # from digitalio import Direction
32
- # esp_boot.direction = Direction.OUTPUT
33
- # esp_boot.value = True
25
+ """
26
+ RX = board.ESP_TX
27
+ TX = board.ESP_RX
28
+ resetpin = DigitalInOut(board.ESP_WIFI_EN)
29
+ rtspin = DigitalInOut(board.ESP_CTS)
30
+ uart = busio.UART(TX, RX, timeout=0.1)
31
+ esp_boot = DigitalInOut(board.ESP_BOOT_MODE)
32
+ from digitalio import Direction
33
+ esp_boot.direction = Direction.OUTPUT
34
+ esp_boot.value = True
35
+ """
34
36
35
37
print ("Post to a URL" , URL )
36
38
You can’t perform that action at this time.
0 commit comments