This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# | |
# Automatically generated file. DO NOT EDIT. | |
# Espressif IoT Development Framework (ESP-IDF) Project Configuration | |
# | |
CONFIG_IDF_TARGET_ESP32=y | |
CONFIG_IDF_TARGET="esp32" | |
CONFIG_IDF_FIRMWARE_CHIP_ID=0x0000 | |
# | |
# SDK tool configuration |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
rst:0x1 (POWERON_RESET),boot:0x13 (SPI_FAST_FLASH_BOOT) | |
configsip: 0, SPIWP:0xee | |
clk_drv:0x00,q_drv:0x00,d_drv:0x00,cs0_drv:0x00,hd_drv:0x00,wp_drv:0x00 | |
mode:DIO, clock div:2 | |
load:0x3fff0018,len:4 | |
load:0x3fff001c,len:7016 | |
load:0x40078000,len:14076 | |
load:0x40080400,len:4304 | |
entry 0x400806e8 | |
␛[0;32mI (71) boot: Chip Revision: 1␛[0m |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# | |
# Automatically generated file. DO NOT EDIT. | |
# Espressif IoT Development Framework (ESP-IDF) Project Configuration | |
# | |
CONFIG_IDF_TARGET_ESP32=y | |
CONFIG_IDF_TARGET="esp32" | |
CONFIG_IDF_FIRMWARE_CHIP_ID=0x0000 | |
# | |
# SDK tool configuration |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//Constants | |
const inventory_sheet = "inventory" | |
const item_id_column = 1 | |
const quantity_column = 3 | |
const price_column = 4 | |
const regular_price_column = 5 | |
const consumer_key = "s3cr3t" | |
const consumer_secret = "s3cr3t" | |
const order_id_column = 1 | |
const status_column = 8 |