moved stuff + scanner com/hid edits
4
.gitignore
vendored
@@ -1,5 +1 @@
|
||||
pos_database.db
|
||||
ScannerGO/ScannerGO-*
|
||||
ScannerGO/config.json
|
||||
DataToolsGO/imageTools-*
|
||||
.env
|
||||
@@ -1,70 +0,0 @@
|
||||
import os
|
||||
from PIL import Image
|
||||
|
||||
# --- CONFIGURATION ---
|
||||
CARD_DIR = os.path.join(os.getcwd(),'keychain_cards')
|
||||
OUTPUT_PDF = os.path.join(os.getcwd(), 'keychain_3x3_perfect.pdf')
|
||||
|
||||
# A4 at 300 DPI
|
||||
PAGE_W, PAGE_H = 2480, 3508
|
||||
COLS, ROWS = 3, 3 # 9 cards per page
|
||||
PAGE_MARGIN = 150
|
||||
|
||||
def generate_printable_pdf():
|
||||
all_files = [f for f in os.listdir(CARD_DIR) if f.endswith('.png')]
|
||||
if not all_files:
|
||||
print("❌ No cards found.")
|
||||
return
|
||||
|
||||
all_files.sort()
|
||||
|
||||
# Calculate slot size
|
||||
available_w = PAGE_W - (PAGE_MARGIN * 2)
|
||||
available_h = PAGE_H - (PAGE_MARGIN * 2)
|
||||
slot_w = available_w // COLS
|
||||
slot_h = available_h // ROWS
|
||||
|
||||
# TARGET CALCULATION (Maintain 300:450 ratio)
|
||||
# We fit to the width of the slot and let height follow
|
||||
target_w = int(slot_w * 0.9)
|
||||
target_h = int(target_w * (450 / 300)) # Maintain original 1:1.5 ratio
|
||||
|
||||
# Safety check: if height is too big for slot, scale down based on height instead
|
||||
if target_h > (slot_h * 0.9):
|
||||
target_h = int(slot_h * 0.9)
|
||||
target_w = int(target_h * (300 / 450))
|
||||
|
||||
pages = []
|
||||
current_page = Image.new('RGB', (PAGE_W, PAGE_H), 'white')
|
||||
|
||||
print(f"📄 Generating {COLS}x{ROWS} grid. {len(all_files)} cards total.")
|
||||
|
||||
for i, filename in enumerate(all_files):
|
||||
item_idx = i % (COLS * ROWS)
|
||||
|
||||
# New page logic
|
||||
if item_idx == 0 and i > 0:
|
||||
pages.append(current_page)
|
||||
current_page = Image.new('RGB', (PAGE_W, PAGE_H), 'white')
|
||||
|
||||
row = item_idx // COLS
|
||||
col = item_idx % COLS
|
||||
|
||||
img_path = os.path.join(CARD_DIR, filename)
|
||||
card_img = Image.open(img_path).convert('RGB')
|
||||
|
||||
# Resize using the aspect-ratio-safe dimensions
|
||||
card_img = card_img.resize((target_w, target_h), Image.Resampling.LANCZOS)
|
||||
|
||||
# Center in slot
|
||||
x = PAGE_MARGIN + (col * slot_w) + (slot_w - target_w) // 2
|
||||
y = PAGE_MARGIN + (row * slot_h) + (slot_h - target_h) // 2
|
||||
|
||||
current_page.paste(card_img, (x, y))
|
||||
|
||||
pages.append(current_page)
|
||||
pages[0].save(OUTPUT_PDF, save_all=True, append_images=pages[1:], resolution=300.0, quality=100)
|
||||
print(f"✅ Created {OUTPUT_PDF}. Now go print it and stop crying.")
|
||||
|
||||
if __name__ == "__main__":
|
||||
generate_printable_pdf()
|
||||
@@ -1,437 +0,0 @@
|
||||
[
|
||||
{
|
||||
"name": "Almendras",
|
||||
"plu": "4924",
|
||||
"image": "https://server-ifps.accurateig.com/assets/commodities/4924-almonds_1630598936.jpg"
|
||||
},
|
||||
{
|
||||
"name": "Manzanas",
|
||||
"plu": "4099",
|
||||
"image": "https://server-ifps.accurateig.com/assets/commodities/apples-akane_1629314651.png"
|
||||
},
|
||||
{
|
||||
"name": "Damascos",
|
||||
"plu": "3044",
|
||||
"image": "https://server-ifps.accurateig.com/assets/commodities/3044-apricots-black-velvet-03_1614619576.jpg"
|
||||
},
|
||||
{
|
||||
"name": "Alcachofas",
|
||||
"plu": "4519",
|
||||
"image": "https://server-ifps.accurateig.com/assets/commodities/4519-artichokes-baby-02_1625671366.jpg"
|
||||
},
|
||||
{
|
||||
"name": "Espárragos",
|
||||
"plu": "4521",
|
||||
"image": "https://server-ifps.accurateig.com/assets/commodities/4521-asparagus-01_1625671446.jpg"
|
||||
},
|
||||
{
|
||||
"name": "Paltas",
|
||||
"plu": "3509",
|
||||
"image": "https://server-ifps.accurateig.com/assets/commodities/3509-gem-avocado_1625011346.JPG"
|
||||
},
|
||||
{
|
||||
"name": "Babaco",
|
||||
"plu": "3303",
|
||||
"image": "https://server-ifps.accurateig.com/assets/commodities/3303-babacoa_1614719281.JPG"
|
||||
},
|
||||
{
|
||||
"name": "Plátanos",
|
||||
"plu": "4235",
|
||||
"image": "https://server-ifps.accurateig.com/assets/commodities/4235-plantains-01_1625076376.jpg"
|
||||
},
|
||||
{
|
||||
"name": "Porotos verdes / Porotos",
|
||||
"plu": "4527",
|
||||
"image": "https://server-ifps.accurateig.com/assets/commodities/4527-beans-chinese-long-07_1625671743.jpg"
|
||||
},
|
||||
{
|
||||
"name": "Betarragas",
|
||||
"plu": "4537",
|
||||
"image": "https://server-ifps.accurateig.com/assets/commodities/4537-baby-golden-beets_1635173500.jpg"
|
||||
},
|
||||
{
|
||||
"name": "Moras / Berries",
|
||||
"plu": "4239",
|
||||
"image": "https://server-ifps.accurateig.com/assets/commodities/4239-berries-blackberries-01_1625076478.jpg"
|
||||
},
|
||||
{
|
||||
"name": "Nueces de Brasil",
|
||||
"plu": "4926",
|
||||
"image": "https://server-ifps.accurateig.com/assets/commodities/4926-brazil-nuts-02_1625756785.JPG"
|
||||
},
|
||||
{
|
||||
"name": "Repollo",
|
||||
"plu": "4069",
|
||||
"image": "https://server-ifps.accurateig.com/assets/commodities/4069-green-cabbage_1633958066.jpg"
|
||||
},
|
||||
{
|
||||
"name": "Zanahorias",
|
||||
"plu": "4560",
|
||||
"image": "https://server-ifps.accurateig.com/assets/commodities/4560-carrots-baby_1625673556.jpg"
|
||||
},
|
||||
{
|
||||
"name": "Castañas de cajú",
|
||||
"plu": "3105",
|
||||
"image": "https://server-ifps.accurateig.com/assets/commodities/3105-cashews-03_1614635878.JPG"
|
||||
},
|
||||
{
|
||||
"name": "Apionabo",
|
||||
"plu": "3321",
|
||||
"image": "https://server-ifps.accurateig.com/assets/commodities/3321-celery-root-03_1614720213.jpg"
|
||||
},
|
||||
{
|
||||
"name": "Cerezas",
|
||||
"plu": "3549",
|
||||
"image": "https://server-ifps.accurateig.com/assets/commodities/screenshot-2023-05-02-100428_1683036305.png"
|
||||
},
|
||||
{
|
||||
"name": "Castañas",
|
||||
"plu": "4927",
|
||||
"image": "https://server-ifps.accurateig.com/assets/commodities/4927-chestnuts-italian-02_1625756943.jpg"
|
||||
},
|
||||
{
|
||||
"name": "Cocos",
|
||||
"plu": "4261",
|
||||
"image": "https://server-ifps.accurateig.com/assets/commodities/4261-coconuts-02_1625077777.jpg"
|
||||
},
|
||||
{
|
||||
"name": "Choclo",
|
||||
"plu": "3087",
|
||||
"image": "https://server-ifps.accurateig.com/assets/commodities/3087-corn-04_1614633780.jpg"
|
||||
},
|
||||
{
|
||||
"name": "Dátiles",
|
||||
"plu": "4862",
|
||||
"image": "https://server-ifps.accurateig.com/assets/commodities/4862-dates_1630598790.jpg"
|
||||
},
|
||||
{
|
||||
"name": "Eneldo",
|
||||
"plu": "4892",
|
||||
"image": "https://server-ifps.accurateig.com/assets/commodities/4892-dill-baby-02_1625755376.jpg"
|
||||
},
|
||||
{
|
||||
"name": "Berenjena",
|
||||
"plu": "4599",
|
||||
"image": "https://server-ifps.accurateig.com/assets/commodities/4599-baby-eggplant-aubergine_1633372314.jpg"
|
||||
},
|
||||
{
|
||||
"name": "Helechos",
|
||||
"plu": "4606",
|
||||
"image": "https://server-ifps.accurateig.com/assets/commodities/4606-fiddlehead-ferns-07_1625679559.jpg"
|
||||
},
|
||||
{
|
||||
"name": "Higos",
|
||||
"plu": "4266",
|
||||
"image": "https://server-ifps.accurateig.com/assets/commodities/4266-figs-03_1625077969.jpg"
|
||||
},
|
||||
{
|
||||
"name": "Ajo",
|
||||
"plu": "4608",
|
||||
"image": "https://server-ifps.accurateig.com/assets/commodities/4608-garlic-regular_1637184640.jpg"
|
||||
},
|
||||
{
|
||||
"name": "Jengibre",
|
||||
"plu": "4612",
|
||||
"image": "https://server-ifps.accurateig.com/assets/commodities/4612-ginger-root-06_1625679690.jpg"
|
||||
},
|
||||
{
|
||||
"name": "Bardana",
|
||||
"plu": "3091",
|
||||
"image": "https://server-ifps.accurateig.com/assets/commodities/3091gobo-root-02_1614634374.jpg"
|
||||
},
|
||||
{
|
||||
"name": "Pomelo",
|
||||
"plu": "4279",
|
||||
"image": "https://server-ifps.accurateig.com/assets/commodities/4279-pummelos-02_1625078575.jpg"
|
||||
},
|
||||
{
|
||||
"name": "Uvas",
|
||||
"plu": "3491",
|
||||
"image": "https://server-ifps.accurateig.com/assets/commodities/arra-15-grape_1518122851.JPG"
|
||||
},
|
||||
{
|
||||
"name": "Hojas de col / Verdes",
|
||||
"plu": "4614",
|
||||
"image": "https://server-ifps.accurateig.com/assets/commodities/4614-collard-greens-trimmed_1625679839.JPG"
|
||||
},
|
||||
{
|
||||
"name": "Rábano picante",
|
||||
"plu": "4625",
|
||||
"image": "https://server-ifps.accurateig.com/assets/commodities/4625-horseradish-root-04_1625680026.jpg"
|
||||
},
|
||||
{
|
||||
"name": "Jícama",
|
||||
"plu": "4626",
|
||||
"image": "https://server-ifps.accurateig.com/assets/commodities/4626-jicama_1635179919.jpg"
|
||||
},
|
||||
{
|
||||
"name": "Kiwi",
|
||||
"plu": "3279",
|
||||
"image": "https://server-ifps.accurateig.com/assets/commodities/3279-kiwi-gold-03_1614718637.jpg"
|
||||
},
|
||||
{
|
||||
"name": "Kumquat",
|
||||
"plu": "4303",
|
||||
"image": "https://server-ifps.accurateig.com/assets/commodities/4303-kumquats-03_1625079229.jpg"
|
||||
},
|
||||
{
|
||||
"name": "Puerros",
|
||||
"plu": "4629",
|
||||
"image": "https://server-ifps.accurateig.com/assets/commodities/4629-leeks-02_1625680225.jpg"
|
||||
},
|
||||
{
|
||||
"name": "Limones",
|
||||
"plu": "3626",
|
||||
"image": "https://server-ifps.accurateig.com/assets/commodities/3626-meyer-lemons_1460404763.jpg"
|
||||
},
|
||||
{
|
||||
"name": "Limequats",
|
||||
"plu": "4328",
|
||||
"image": "https://server-ifps.accurateig.com/assets/commodities/4328-limequats-01_1625081231.jpg"
|
||||
},
|
||||
{
|
||||
"name": "Limas",
|
||||
"plu": "4305",
|
||||
"image": "https://server-ifps.accurateig.com/assets/commodities/4305-limes-key-03_1625079363.jpg"
|
||||
},
|
||||
{
|
||||
"name": "Nísperos",
|
||||
"plu": "4308",
|
||||
"image": "https://server-ifps.accurateig.com/assets/commodities/4308-lychees-5_1625079574.jpg"
|
||||
},
|
||||
{
|
||||
"name": "Raíz de loto",
|
||||
"plu": "3099",
|
||||
"image": "https://server-ifps.accurateig.com/assets/commodities/3099-lotus-root-03_1614635240.jpg"
|
||||
},
|
||||
{
|
||||
"name": "Macadamia",
|
||||
"plu": "3106",
|
||||
"image": "https://server-ifps.accurateig.com/assets/commodities/3106-macadamias_1614705972.JPG"
|
||||
},
|
||||
{
|
||||
"name": "Malanga",
|
||||
"plu": "4644",
|
||||
"image": "https://server-ifps.accurateig.com/assets/commodities/4644-malanga_1633956612.jpg"
|
||||
},
|
||||
{
|
||||
"name": "Menta",
|
||||
"plu": "3475",
|
||||
"image": "https://server-ifps.accurateig.com/assets/commodities/peppermint-3475_1625790587.jpg"
|
||||
},
|
||||
{
|
||||
"name": "Hongos / Callampas",
|
||||
"plu": "4647",
|
||||
"image": "https://server-ifps.accurateig.com/assets/commodities/4647-mushrooms-chanterelles-1_1625681503.jpg"
|
||||
},
|
||||
{
|
||||
"name": "Ñame",
|
||||
"plu": "3276",
|
||||
"image": "https://server-ifps.accurateig.com/assets/commodities/3276-name-white_1634146226.jpg"
|
||||
},
|
||||
{
|
||||
"name": "Nectarinas",
|
||||
"plu": "3437",
|
||||
"image": "https://server-ifps.accurateig.com/assets/commodities/yellow-fleshed-flat-nectarine_1629140965.jpg"
|
||||
},
|
||||
{
|
||||
"name": "Cebollines / Cebollas",
|
||||
"plu": "4068",
|
||||
"image": "https://server-ifps.accurateig.com/assets/commodities/4068-onions-green-2_1625063600.jpg"
|
||||
},
|
||||
{
|
||||
"name": "Naranjas",
|
||||
"plu": "4381",
|
||||
"image": "https://server-ifps.accurateig.com/assets/commodities/4381-oranges-blood-01_1625082045.jpg"
|
||||
},
|
||||
{
|
||||
"name": "Chirivía",
|
||||
"plu": "4672",
|
||||
"image": "https://server-ifps.accurateig.com/assets/commodities/4672-parsnip_1633958885.jpg"
|
||||
},
|
||||
{
|
||||
"name": "Maracuyá",
|
||||
"plu": "3311",
|
||||
"image": "https://server-ifps.accurateig.com/assets/commodities/3311-passion-fruit-02_1614719436.jpg"
|
||||
},
|
||||
{
|
||||
"name": "Duraznos",
|
||||
"plu": "3113",
|
||||
"image": "https://server-ifps.accurateig.com/assets/commodities/3113-peaches-donut-04_1614707155.jpg"
|
||||
},
|
||||
{
|
||||
"name": "Maníes",
|
||||
"plu": "4931",
|
||||
"image": "https://server-ifps.accurateig.com/assets/commodities/4931-peanuts_1625757234.JPG"
|
||||
},
|
||||
{
|
||||
"name": "Peras",
|
||||
"plu": "3317",
|
||||
"image": "https://server-ifps.accurateig.com/assets/commodities/3317-angelys-pear_1460402454.jpg"
|
||||
},
|
||||
{
|
||||
"name": "Arvejas",
|
||||
"plu": "4673",
|
||||
"image": "https://server-ifps.accurateig.com/assets/commodities/4673-peas-black-eyed-01_1625684339.jpg"
|
||||
},
|
||||
{
|
||||
"name": "Nueces pecán",
|
||||
"plu": "4936",
|
||||
"image": "https://server-ifps.accurateig.com/assets/commodities/4936-pecans-01_1625757366.JPG"
|
||||
},
|
||||
{
|
||||
"name": "Caqui",
|
||||
"plu": "4428",
|
||||
"image": "https://server-ifps.accurateig.com/assets/commodities/4428-persimmons-fuyu-01_1625667410.jpg"
|
||||
},
|
||||
{
|
||||
"name": "Physalis",
|
||||
"plu": "3039",
|
||||
"image": "https://server-ifps.accurateig.com/assets/commodities/3039-cape-gooseberry_1630596655.jpg"
|
||||
},
|
||||
{
|
||||
"name": "Piña",
|
||||
"plu": "4430",
|
||||
"image": "https://server-ifps.accurateig.com/assets/commodities/4430-pineapple-05_1625667649.jpg"
|
||||
},
|
||||
{
|
||||
"name": "Pistacho",
|
||||
"plu": "4939",
|
||||
"image": "https://server-ifps.accurateig.com/assets/commodities/4939-pistachios_1625757519.JPG"
|
||||
},
|
||||
{
|
||||
"name": "Pitahaya",
|
||||
"plu": "3040",
|
||||
"image": "https://server-ifps.accurateig.com/assets/commodities/3040-pitaya-dragon-fruit-01_1614282658.jpg"
|
||||
},
|
||||
{
|
||||
"name": "Plumcot",
|
||||
"plu": "3611",
|
||||
"image": "https://server-ifps.accurateig.com/assets/commodities/interspecific-plum-black-picture_1629142350.JPG"
|
||||
},
|
||||
{
|
||||
"name": "Ciruelas",
|
||||
"plu": "4435",
|
||||
"image": "https://server-ifps.accurateig.com/assets/commodities/4435-plums-greengage-01_1625667846.jpg"
|
||||
},
|
||||
{
|
||||
"name": "Granada",
|
||||
"plu": "3440",
|
||||
"image": "https://server-ifps.accurateig.com/assets/commodities/3440-large-pomegranate_1486484749.JPG"
|
||||
},
|
||||
{
|
||||
"name": "Papas",
|
||||
"plu": "3414",
|
||||
"image": "https://server-ifps.accurateig.com/assets/commodities/3414-baking-potato-white_1635179333.jpg"
|
||||
},
|
||||
{
|
||||
"name": "Zapallo",
|
||||
"plu": "4734",
|
||||
"image": "https://server-ifps.accurateig.com/assets/commodities/4734-mini-pumpkin_1633964765.jpg"
|
||||
},
|
||||
{
|
||||
"name": "Guía de zapallo",
|
||||
"plu": "3480",
|
||||
"image": "https://server-ifps.accurateig.com/assets/commodities/pumpkin-vine-3480_1625790222.jpg"
|
||||
},
|
||||
{
|
||||
"name": "Quelites",
|
||||
"plu": "3478",
|
||||
"image": "https://server-ifps.accurateig.com/assets/commodities/quelite-3478_1625790359.jpg"
|
||||
},
|
||||
{
|
||||
"name": "Membrillo",
|
||||
"plu": "4447",
|
||||
"image": "https://server-ifps.accurateig.com/assets/commodities/4447-quince-1_1625668926.jpg"
|
||||
},
|
||||
{
|
||||
"name": "Radicchio",
|
||||
"plu": "3168",
|
||||
"image": "https://server-ifps.accurateig.com/assets/commodities/3168-radicchio-castelfranco-02_1614718366.jpg"
|
||||
},
|
||||
{
|
||||
"name": "Rábanos",
|
||||
"plu": "4739",
|
||||
"image": "https://server-ifps.accurateig.com/assets/commodities/4739-radish-black-03_1625751544.jpg"
|
||||
},
|
||||
{
|
||||
"name": "Ruibarbo",
|
||||
"plu": "4745",
|
||||
"image": "https://server-ifps.accurateig.com/assets/commodities/4745-rhubarb-01_1625751764.jpg"
|
||||
},
|
||||
{
|
||||
"name": "Rutabagas",
|
||||
"plu": "4747",
|
||||
"image": "https://server-ifps.accurateig.com/assets/commodities/4747-rutabaga_1635168852.jpg"
|
||||
},
|
||||
{
|
||||
"name": "Zapote",
|
||||
"plu": "3137",
|
||||
"image": "https://server-ifps.accurateig.com/assets/commodities/3137-sapote-white_1635264028.jpg"
|
||||
},
|
||||
{
|
||||
"name": "Zapallo italiano / Zapallo",
|
||||
"plu": "4750",
|
||||
"image": "https://server-ifps.accurateig.com/assets/commodities/4750-squash-acorn-01_1625751871.jpg"
|
||||
},
|
||||
{
|
||||
"name": "Caña de azúcar",
|
||||
"plu": "4790",
|
||||
"image": "https://server-ifps.accurateig.com/assets/commodities/4790-sugar-cane_1630598686.jpg"
|
||||
},
|
||||
{
|
||||
"name": "Tupinambo",
|
||||
"plu": "4791",
|
||||
"image": "https://server-ifps.accurateig.com/assets/commodities/4791-sunchokes-03_1625753005.jpg"
|
||||
},
|
||||
{
|
||||
"name": "Semillas de maravilla",
|
||||
"plu": "4942",
|
||||
"image": "https://server-ifps.accurateig.com/assets/commodities/4942-sunflower-seeds_1630599026.jpg"
|
||||
},
|
||||
{
|
||||
"name": "Camote",
|
||||
"plu": "4816",
|
||||
"image": "https://server-ifps.accurateig.com/assets/commodities/4816-sweet-potatoes-02_1625754367.jpg"
|
||||
},
|
||||
{
|
||||
"name": "Tamarindo",
|
||||
"plu": "4448",
|
||||
"image": "https://server-ifps.accurateig.com/assets/commodities/4448-tamarindo-01_1625669100.jpg"
|
||||
},
|
||||
{
|
||||
"name": "Mandarinas",
|
||||
"plu": "3524",
|
||||
"image": "https://server-ifps.accurateig.com/assets/commodities/noble-juicycrunch-productisolated-900x900-rgb-copy_1627662136.png"
|
||||
},
|
||||
{
|
||||
"name": "Taro",
|
||||
"plu": "4795",
|
||||
"image": "https://server-ifps.accurateig.com/assets/commodities/4795-taro-root-01_1625753179.jpg"
|
||||
},
|
||||
{
|
||||
"name": "Nabo",
|
||||
"plu": "4811",
|
||||
"image": "https://server-ifps.accurateig.com/assets/commodities/4811-turnip-purple-top_1635177577.jpg"
|
||||
},
|
||||
{
|
||||
"name": "Nueces",
|
||||
"plu": "4943",
|
||||
"image": "https://server-ifps.accurateig.com/assets/commodities/4943-walnuts_1625757652.JPG"
|
||||
},
|
||||
{
|
||||
"name": "Castañas de agua",
|
||||
"plu": "4814",
|
||||
"image": "https://server-ifps.accurateig.com/assets/commodities/4814-waterchestnuts-01_1625753939.jpg"
|
||||
},
|
||||
{
|
||||
"name": "Xpelón",
|
||||
"plu": "3481",
|
||||
"image": "https://server-ifps.accurateig.com/assets/commodities/expelon-3481_1625790150.jpg"
|
||||
},
|
||||
{
|
||||
"name": "Yuca",
|
||||
"plu": "4819",
|
||||
"image": "https://server-ifps.accurateig.com/assets/commodities/4819-yucca-root-03_1625754507.jpg"
|
||||
}
|
||||
]
|
||||
@@ -1,162 +0,0 @@
|
||||
[
|
||||
{
|
||||
"name": "Paltas",
|
||||
"plu": "3509",
|
||||
"image": "https://server-ifps.accurateig.com/assets/commodities/3509-gem-avocado_1625011346.JPG"
|
||||
},
|
||||
{
|
||||
"name": "Papas",
|
||||
"plu": "3414",
|
||||
"image": "https://server-ifps.accurateig.com/assets/commodities/3414-baking-potato-white_1635179333.jpg"
|
||||
},
|
||||
{
|
||||
"name": "Limones",
|
||||
"plu": "3626",
|
||||
"image": "https://server-ifps.accurateig.com/assets/commodities/3626-meyer-lemons_1460404763.jpg"
|
||||
},
|
||||
{
|
||||
"name": "Cebollines / Cebollas",
|
||||
"plu": "4068",
|
||||
"image": "https://server-ifps.accurateig.com/assets/commodities/4068-onions-green-2_1625063600.jpg"
|
||||
},
|
||||
{
|
||||
"name": "Ajo",
|
||||
"plu": "4608",
|
||||
"image": "https://server-ifps.accurateig.com/assets/commodities/4608-garlic-regular_1637184640.jpg"
|
||||
},
|
||||
{
|
||||
"name": "Zanahorias",
|
||||
"plu": "4560",
|
||||
"image": "https://server-ifps.accurateig.com/assets/commodities/4560-carrots-baby_1625673556.jpg"
|
||||
},
|
||||
{
|
||||
"name": "Plátanos",
|
||||
"plu": "4235",
|
||||
"image": "https://server-ifps.accurateig.com/assets/commodities/4235-plantains-01_1625076376.jpg"
|
||||
},
|
||||
{
|
||||
"name": "Manzanas",
|
||||
"plu": "4099",
|
||||
"image": "https://server-ifps.accurateig.com/assets/commodities/apples-akane_1629314651.png"
|
||||
},
|
||||
{
|
||||
"name": "Naranjas",
|
||||
"plu": "4381",
|
||||
"image": "https://server-ifps.accurateig.com/assets/commodities/4381-oranges-blood-01_1625082045.jpg"
|
||||
},
|
||||
{
|
||||
"name": "Choclo",
|
||||
"plu": "3087",
|
||||
"image": "https://server-ifps.accurateig.com/assets/commodities/3087-corn-04_1614633780.jpg"
|
||||
},
|
||||
{
|
||||
"name": "Zapallo",
|
||||
"plu": "4734",
|
||||
"image": "https://server-ifps.accurateig.com/assets/commodities/4734-mini-pumpkin_1633964765.jpg"
|
||||
},
|
||||
{
|
||||
"name": "Zapallo italiano",
|
||||
"plu": "4750",
|
||||
"image": "https://server-ifps.accurateig.com/assets/commodities/4750-squash-acorn-01_1625751871.jpg"
|
||||
},
|
||||
{
|
||||
"name": "Repollo",
|
||||
"plu": "4069",
|
||||
"image": "https://server-ifps.accurateig.com/assets/commodities/4069-green-cabbage_1633958066.jpg"
|
||||
},
|
||||
{
|
||||
"name": "Betarragas",
|
||||
"plu": "4537",
|
||||
"image": "https://server-ifps.accurateig.com/assets/commodities/4537-baby-golden-beets_1635173500.jpg"
|
||||
},
|
||||
{
|
||||
"name": "Porotos verdes",
|
||||
"plu": "4527",
|
||||
"image": "https://server-ifps.accurateig.com/assets/commodities/4527-beans-chinese-long-07_1625671743.jpg"
|
||||
},
|
||||
{
|
||||
"name": "Mandarinas",
|
||||
"plu": "3524",
|
||||
"image": "https://server-ifps.accurateig.com/assets/commodities/noble-juicycrunch-productisolated-900x900-rgb-copy_1627662136.png"
|
||||
},
|
||||
{
|
||||
"name": "Uvas",
|
||||
"plu": "3491",
|
||||
"image": "https://server-ifps.accurateig.com/assets/commodities/arra-15-grape_1518122851.JPG"
|
||||
},
|
||||
{
|
||||
"name": "Duraznos",
|
||||
"plu": "3113",
|
||||
"image": "https://server-ifps.accurateig.com/assets/commodities/3113-peaches-donut-04_1614707155.jpg"
|
||||
},
|
||||
{
|
||||
"name": "Cerezas",
|
||||
"plu": "3549",
|
||||
"image": "https://server-ifps.accurateig.com/assets/commodities/screenshot-2023-05-02-100428_1683036305.png"
|
||||
},
|
||||
{
|
||||
"name": "Peras",
|
||||
"plu": "3317",
|
||||
"image": "https://server-ifps.accurateig.com/assets/commodities/3317-angelys-pear_1460402454.jpg"
|
||||
},
|
||||
{
|
||||
"name": "Ciruelas",
|
||||
"plu": "4435",
|
||||
"image": "https://server-ifps.accurateig.com/assets/commodities/4435-plums-greengage-01_1625667846.jpg"
|
||||
},
|
||||
{
|
||||
"name": "Kiwi",
|
||||
"plu": "3279",
|
||||
"image": "https://server-ifps.accurateig.com/assets/commodities/3279-kiwi-gold-03_1614718637.jpg"
|
||||
},
|
||||
{
|
||||
"name": "Piña",
|
||||
"plu": "4430",
|
||||
"image": "https://server-ifps.accurateig.com/assets/commodities/4430-pineapple-05_1625667649.jpg"
|
||||
},
|
||||
{
|
||||
"name": "Puerros",
|
||||
"plu": "4629",
|
||||
"image": "https://server-ifps.accurateig.com/assets/commodities/4629-leeks-02_1625680225.jpg"
|
||||
},
|
||||
{
|
||||
"name": "Alcachofas",
|
||||
"plu": "4519",
|
||||
"image": "https://server-ifps.accurateig.com/assets/commodities/4519-artichokes-baby-02_1625671366.jpg"
|
||||
},
|
||||
{
|
||||
"name": "Espárragos",
|
||||
"plu": "4521",
|
||||
"image": "https://server-ifps.accurateig.com/assets/commodities/4521-asparagus-01_1625671446.jpg"
|
||||
},
|
||||
{
|
||||
"name": "Berenjena",
|
||||
"plu": "4599",
|
||||
"image": "https://server-ifps.accurateig.com/assets/commodities/4599-baby-eggplant-aubergine_1633372314.jpg"
|
||||
},
|
||||
{
|
||||
"name": "Durazno Nectarin",
|
||||
"plu": "3437",
|
||||
"image": "https://server-ifps.accurateig.com/assets/commodities/yellow-fleshed-flat-nectarine_1629140965.jpg"
|
||||
},
|
||||
{
|
||||
"name": "Damascos",
|
||||
"plu": "3044",
|
||||
"image": "https://server-ifps.accurateig.com/assets/commodities/3044-apricots-black-velvet-03_1614619576.jpg"
|
||||
},
|
||||
{
|
||||
"name": "Membrillo",
|
||||
"plu": "4447",
|
||||
"image": "https://server-ifps.accurateig.com/assets/commodities/4447-quince-1_1625668926.jpg"
|
||||
},
|
||||
{
|
||||
"name": "Champiñones",
|
||||
"plu": "4647",
|
||||
"image": "https://server-ifps.accurateig.com/assets/commodities/4647-mushrooms-chanterelles-1_1625681503.jpg"
|
||||
},
|
||||
{
|
||||
"name": "Castañas",
|
||||
"plu": "4927",
|
||||
"image": "https://server-ifps.accurateig.com/assets/commodities/4927-chestnuts-italian-02_1625756943.jpg"
|
||||
}
|
||||
]
|
||||
|
Before Width: | Height: | Size: 717 KiB |
|
Before Width: | Height: | Size: 2.0 MiB |
|
Before Width: | Height: | Size: 1.7 MiB |
|
Before Width: | Height: | Size: 2.3 MiB |
|
Before Width: | Height: | Size: 207 KiB |
|
Before Width: | Height: | Size: 2.5 MiB |
|
Before Width: | Height: | Size: 3.4 MiB |
|
Before Width: | Height: | Size: 3.5 MiB |
|
Before Width: | Height: | Size: 819 KiB |
|
Before Width: | Height: | Size: 879 KiB |
|
Before Width: | Height: | Size: 216 KiB |
|
Before Width: | Height: | Size: 2.7 MiB |
|
Before Width: | Height: | Size: 213 KiB |
|
Before Width: | Height: | Size: 3.0 MiB |
|
Before Width: | Height: | Size: 1.9 MiB |
|
Before Width: | Height: | Size: 118 KiB |
|
Before Width: | Height: | Size: 2.5 MiB |
|
Before Width: | Height: | Size: 1.4 MiB |
|
Before Width: | Height: | Size: 40 KiB |
|
Before Width: | Height: | Size: 578 KiB |
|
Before Width: | Height: | Size: 48 KiB |
|
Before Width: | Height: | Size: 1.9 MiB |
|
Before Width: | Height: | Size: 83 KiB |
|
Before Width: | Height: | Size: 188 KiB |
|
Before Width: | Height: | Size: 76 KiB |
|
Before Width: | Height: | Size: 2.3 MiB |
|
Before Width: | Height: | Size: 1.1 MiB |
|
Before Width: | Height: | Size: 1.4 MiB |
|
Before Width: | Height: | Size: 651 KiB |
|
Before Width: | Height: | Size: 19 KiB |
|
Before Width: | Height: | Size: 444 KiB |
|
Before Width: | Height: | Size: 1.2 MiB |
|
Before Width: | Height: | Size: 72 KiB |
|
Before Width: | Height: | Size: 814 KiB |
|
Before Width: | Height: | Size: 1.0 MiB |
|
Before Width: | Height: | Size: 2.4 MiB |
|
Before Width: | Height: | Size: 786 KiB |
|
Before Width: | Height: | Size: 730 KiB |
|
Before Width: | Height: | Size: 1.9 MiB |
|
Before Width: | Height: | Size: 636 KiB |
|
Before Width: | Height: | Size: 2.5 MiB |
|
Before Width: | Height: | Size: 1.4 MiB |
|
Before Width: | Height: | Size: 438 KiB |
|
Before Width: | Height: | Size: 1.8 MiB |
|
Before Width: | Height: | Size: 1.4 MiB |
|
Before Width: | Height: | Size: 2.0 MiB |
|
Before Width: | Height: | Size: 9.2 MiB |
|
Before Width: | Height: | Size: 2.0 MiB |
|
Before Width: | Height: | Size: 213 KiB |
|
Before Width: | Height: | Size: 2.1 MiB |
|
Before Width: | Height: | Size: 280 KiB |
|
Before Width: | Height: | Size: 464 KiB |
|
Before Width: | Height: | Size: 2.8 MiB |
|
Before Width: | Height: | Size: 148 KiB |
|
Before Width: | Height: | Size: 2.6 MiB |
|
Before Width: | Height: | Size: 1.0 MiB |
|
Before Width: | Height: | Size: 2.1 MiB |
|
Before Width: | Height: | Size: 2.9 MiB |
|
Before Width: | Height: | Size: 906 KiB |
|
Before Width: | Height: | Size: 1.0 MiB |
|
Before Width: | Height: | Size: 2.0 MiB |
|
Before Width: | Height: | Size: 1.3 MiB |
|
Before Width: | Height: | Size: 8.9 MiB |
|
Before Width: | Height: | Size: 1.5 MiB |
|
Before Width: | Height: | Size: 1.4 MiB |
|
Before Width: | Height: | Size: 994 KiB |
|
Before Width: | Height: | Size: 827 KiB |
|
Before Width: | Height: | Size: 403 KiB |
|
Before Width: | Height: | Size: 834 KiB |
|
Before Width: | Height: | Size: 1.2 MiB |
|
Before Width: | Height: | Size: 1.8 MiB |
|
Before Width: | Height: | Size: 658 KiB |
|
Before Width: | Height: | Size: 156 KiB |
|
Before Width: | Height: | Size: 1.1 MiB |
|
Before Width: | Height: | Size: 1.8 MiB |
|
Before Width: | Height: | Size: 1.6 MiB |
|
Before Width: | Height: | Size: 820 KiB |
|
Before Width: | Height: | Size: 444 KiB |
|
Before Width: | Height: | Size: 1.5 MiB |
|
Before Width: | Height: | Size: 365 KiB |
|
Before Width: | Height: | Size: 3.5 MiB |
|
Before Width: | Height: | Size: 2.5 MiB |
|
Before Width: | Height: | Size: 3.6 MiB |
|
Before Width: | Height: | Size: 3.4 MiB |
|
Before Width: | Height: | Size: 3.6 MiB |
|
Before Width: | Height: | Size: 1.7 MiB |
|
Before Width: | Height: | Size: 3.1 MiB |
@@ -1,437 +0,0 @@
|
||||
[
|
||||
{
|
||||
"name": "Almonds",
|
||||
"plu": "4924",
|
||||
"image": "https://server-ifps.accurateig.com/assets/commodities/4924-almonds_1630598936.jpg"
|
||||
},
|
||||
{
|
||||
"name": "Apples",
|
||||
"plu": "4099",
|
||||
"image": "https://server-ifps.accurateig.com/assets/commodities/apples-akane_1629314651.png"
|
||||
},
|
||||
{
|
||||
"name": "Apricots",
|
||||
"plu": "3044",
|
||||
"image": "https://server-ifps.accurateig.com/assets/commodities/3044-apricots-black-velvet-03_1614619576.jpg"
|
||||
},
|
||||
{
|
||||
"name": "Artichokes",
|
||||
"plu": "4519",
|
||||
"image": "https://server-ifps.accurateig.com/assets/commodities/4519-artichokes-baby-02_1625671366.jpg"
|
||||
},
|
||||
{
|
||||
"name": "Asparagus",
|
||||
"plu": "4521",
|
||||
"image": "https://server-ifps.accurateig.com/assets/commodities/4521-asparagus-01_1625671446.jpg"
|
||||
},
|
||||
{
|
||||
"name": "Avocados",
|
||||
"plu": "3509",
|
||||
"image": "https://server-ifps.accurateig.com/assets/commodities/3509-gem-avocado_1625011346.JPG"
|
||||
},
|
||||
{
|
||||
"name": "Babaco",
|
||||
"plu": "3303",
|
||||
"image": "https://server-ifps.accurateig.com/assets/commodities/3303-babacoa_1614719281.JPG"
|
||||
},
|
||||
{
|
||||
"name": "Bananas",
|
||||
"plu": "4235",
|
||||
"image": "https://server-ifps.accurateig.com/assets/commodities/4235-plantains-01_1625076376.jpg"
|
||||
},
|
||||
{
|
||||
"name": "Beans",
|
||||
"plu": "4527",
|
||||
"image": "https://server-ifps.accurateig.com/assets/commodities/4527-beans-chinese-long-07_1625671743.jpg"
|
||||
},
|
||||
{
|
||||
"name": "Beets",
|
||||
"plu": "4537",
|
||||
"image": "https://server-ifps.accurateig.com/assets/commodities/4537-baby-golden-beets_1635173500.jpg"
|
||||
},
|
||||
{
|
||||
"name": "Berries",
|
||||
"plu": "4239",
|
||||
"image": "https://server-ifps.accurateig.com/assets/commodities/4239-berries-blackberries-01_1625076478.jpg"
|
||||
},
|
||||
{
|
||||
"name": "Brazilnuts",
|
||||
"plu": "4926",
|
||||
"image": "https://server-ifps.accurateig.com/assets/commodities/4926-brazil-nuts-02_1625756785.JPG"
|
||||
},
|
||||
{
|
||||
"name": "Cabbage",
|
||||
"plu": "4069",
|
||||
"image": "https://server-ifps.accurateig.com/assets/commodities/4069-green-cabbage_1633958066.jpg"
|
||||
},
|
||||
{
|
||||
"name": "Carrots",
|
||||
"plu": "4560",
|
||||
"image": "https://server-ifps.accurateig.com/assets/commodities/4560-carrots-baby_1625673556.jpg"
|
||||
},
|
||||
{
|
||||
"name": "Cashews",
|
||||
"plu": "3105",
|
||||
"image": "https://server-ifps.accurateig.com/assets/commodities/3105-cashews-03_1614635878.JPG"
|
||||
},
|
||||
{
|
||||
"name": "Celery Root/Celeriac",
|
||||
"plu": "3321",
|
||||
"image": "https://server-ifps.accurateig.com/assets/commodities/3321-celery-root-03_1614720213.jpg"
|
||||
},
|
||||
{
|
||||
"name": "Cherries",
|
||||
"plu": "3549",
|
||||
"image": "https://server-ifps.accurateig.com/assets/commodities/screenshot-2023-05-02-100428_1683036305.png"
|
||||
},
|
||||
{
|
||||
"name": "Chestnuts",
|
||||
"plu": "4927",
|
||||
"image": "https://server-ifps.accurateig.com/assets/commodities/4927-chestnuts-italian-02_1625756943.jpg"
|
||||
},
|
||||
{
|
||||
"name": "Coconuts",
|
||||
"plu": "4261",
|
||||
"image": "https://server-ifps.accurateig.com/assets/commodities/4261-coconuts-02_1625077777.jpg"
|
||||
},
|
||||
{
|
||||
"name": "Corn",
|
||||
"plu": "3087",
|
||||
"image": "https://server-ifps.accurateig.com/assets/commodities/3087-corn-04_1614633780.jpg"
|
||||
},
|
||||
{
|
||||
"name": "Dates",
|
||||
"plu": "4862",
|
||||
"image": "https://server-ifps.accurateig.com/assets/commodities/4862-dates_1630598790.jpg"
|
||||
},
|
||||
{
|
||||
"name": "Dill",
|
||||
"plu": "4892",
|
||||
"image": "https://server-ifps.accurateig.com/assets/commodities/4892-dill-baby-02_1625755376.jpg"
|
||||
},
|
||||
{
|
||||
"name": "Eggplant (Aubergine)",
|
||||
"plu": "4599",
|
||||
"image": "https://server-ifps.accurateig.com/assets/commodities/4599-baby-eggplant-aubergine_1633372314.jpg"
|
||||
},
|
||||
{
|
||||
"name": "Fiddlehead Ferns",
|
||||
"plu": "4606",
|
||||
"image": "https://server-ifps.accurateig.com/assets/commodities/4606-fiddlehead-ferns-07_1625679559.jpg"
|
||||
},
|
||||
{
|
||||
"name": "Figs",
|
||||
"plu": "4266",
|
||||
"image": "https://server-ifps.accurateig.com/assets/commodities/4266-figs-03_1625077969.jpg"
|
||||
},
|
||||
{
|
||||
"name": "Garlic",
|
||||
"plu": "4608",
|
||||
"image": "https://server-ifps.accurateig.com/assets/commodities/4608-garlic-regular_1637184640.jpg"
|
||||
},
|
||||
{
|
||||
"name": "Ginger Root",
|
||||
"plu": "4612",
|
||||
"image": "https://server-ifps.accurateig.com/assets/commodities/4612-ginger-root-06_1625679690.jpg"
|
||||
},
|
||||
{
|
||||
"name": "Gobo Root/Burdock",
|
||||
"plu": "3091",
|
||||
"image": "https://server-ifps.accurateig.com/assets/commodities/3091gobo-root-02_1614634374.jpg"
|
||||
},
|
||||
{
|
||||
"name": "Grapefruit",
|
||||
"plu": "4279",
|
||||
"image": "https://server-ifps.accurateig.com/assets/commodities/4279-pummelos-02_1625078575.jpg"
|
||||
},
|
||||
{
|
||||
"name": "Grapes",
|
||||
"plu": "3491",
|
||||
"image": "https://server-ifps.accurateig.com/assets/commodities/arra-15-grape_1518122851.JPG"
|
||||
},
|
||||
{
|
||||
"name": "Greens",
|
||||
"plu": "4614",
|
||||
"image": "https://server-ifps.accurateig.com/assets/commodities/4614-collard-greens-trimmed_1625679839.JPG"
|
||||
},
|
||||
{
|
||||
"name": "Horseradish Root",
|
||||
"plu": "4625",
|
||||
"image": "https://server-ifps.accurateig.com/assets/commodities/4625-horseradish-root-04_1625680026.jpg"
|
||||
},
|
||||
{
|
||||
"name": "Jicama/Yam Bean",
|
||||
"plu": "4626",
|
||||
"image": "https://server-ifps.accurateig.com/assets/commodities/4626-jicama_1635179919.jpg"
|
||||
},
|
||||
{
|
||||
"name": "Kiwifruit",
|
||||
"plu": "3279",
|
||||
"image": "https://server-ifps.accurateig.com/assets/commodities/3279-kiwi-gold-03_1614718637.jpg"
|
||||
},
|
||||
{
|
||||
"name": "Kumquat",
|
||||
"plu": "4303",
|
||||
"image": "https://server-ifps.accurateig.com/assets/commodities/4303-kumquats-03_1625079229.jpg"
|
||||
},
|
||||
{
|
||||
"name": "Leeks",
|
||||
"plu": "4629",
|
||||
"image": "https://server-ifps.accurateig.com/assets/commodities/4629-leeks-02_1625680225.jpg"
|
||||
},
|
||||
{
|
||||
"name": "Lemons",
|
||||
"plu": "3626",
|
||||
"image": "https://server-ifps.accurateig.com/assets/commodities/3626-meyer-lemons_1460404763.jpg"
|
||||
},
|
||||
{
|
||||
"name": "Limequats",
|
||||
"plu": "4328",
|
||||
"image": "https://server-ifps.accurateig.com/assets/commodities/4328-limequats-01_1625081231.jpg"
|
||||
},
|
||||
{
|
||||
"name": "Limes",
|
||||
"plu": "4305",
|
||||
"image": "https://server-ifps.accurateig.com/assets/commodities/4305-limes-key-03_1625079363.jpg"
|
||||
},
|
||||
{
|
||||
"name": "Loquats",
|
||||
"plu": "4308",
|
||||
"image": "https://server-ifps.accurateig.com/assets/commodities/4308-lychees-5_1625079574.jpg"
|
||||
},
|
||||
{
|
||||
"name": "Lotus Root",
|
||||
"plu": "3099",
|
||||
"image": "https://server-ifps.accurateig.com/assets/commodities/3099-lotus-root-03_1614635240.jpg"
|
||||
},
|
||||
{
|
||||
"name": "Macadamia",
|
||||
"plu": "3106",
|
||||
"image": "https://server-ifps.accurateig.com/assets/commodities/3106-macadamias_1614705972.JPG"
|
||||
},
|
||||
{
|
||||
"name": "Malanga",
|
||||
"plu": "4644",
|
||||
"image": "https://server-ifps.accurateig.com/assets/commodities/4644-malanga_1633956612.jpg"
|
||||
},
|
||||
{
|
||||
"name": "Mint",
|
||||
"plu": "3475",
|
||||
"image": "https://server-ifps.accurateig.com/assets/commodities/peppermint-3475_1625790587.jpg"
|
||||
},
|
||||
{
|
||||
"name": "Mushrooms",
|
||||
"plu": "4647",
|
||||
"image": "https://server-ifps.accurateig.com/assets/commodities/4647-mushrooms-chanterelles-1_1625681503.jpg"
|
||||
},
|
||||
{
|
||||
"name": "Name",
|
||||
"plu": "3276",
|
||||
"image": "https://server-ifps.accurateig.com/assets/commodities/3276-name-white_1634146226.jpg"
|
||||
},
|
||||
{
|
||||
"name": "Nectarine",
|
||||
"plu": "3437",
|
||||
"image": "https://server-ifps.accurateig.com/assets/commodities/yellow-fleshed-flat-nectarine_1629140965.jpg"
|
||||
},
|
||||
{
|
||||
"name": "Onions",
|
||||
"plu": "4068",
|
||||
"image": "https://server-ifps.accurateig.com/assets/commodities/4068-onions-green-2_1625063600.jpg"
|
||||
},
|
||||
{
|
||||
"name": "Oranges",
|
||||
"plu": "4381",
|
||||
"image": "https://server-ifps.accurateig.com/assets/commodities/4381-oranges-blood-01_1625082045.jpg"
|
||||
},
|
||||
{
|
||||
"name": "Parsnip",
|
||||
"plu": "4672",
|
||||
"image": "https://server-ifps.accurateig.com/assets/commodities/4672-parsnip_1633958885.jpg"
|
||||
},
|
||||
{
|
||||
"name": "Passion Fruit",
|
||||
"plu": "3311",
|
||||
"image": "https://server-ifps.accurateig.com/assets/commodities/3311-passion-fruit-02_1614719436.jpg"
|
||||
},
|
||||
{
|
||||
"name": "Peaches",
|
||||
"plu": "3113",
|
||||
"image": "https://server-ifps.accurateig.com/assets/commodities/3113-peaches-donut-04_1614707155.jpg"
|
||||
},
|
||||
{
|
||||
"name": "Peanuts",
|
||||
"plu": "4931",
|
||||
"image": "https://server-ifps.accurateig.com/assets/commodities/4931-peanuts_1625757234.JPG"
|
||||
},
|
||||
{
|
||||
"name": "Pears",
|
||||
"plu": "3317",
|
||||
"image": "https://server-ifps.accurateig.com/assets/commodities/3317-angelys-pear_1460402454.jpg"
|
||||
},
|
||||
{
|
||||
"name": "Peas",
|
||||
"plu": "4673",
|
||||
"image": "https://server-ifps.accurateig.com/assets/commodities/4673-peas-black-eyed-01_1625684339.jpg"
|
||||
},
|
||||
{
|
||||
"name": "Pecans",
|
||||
"plu": "4936",
|
||||
"image": "https://server-ifps.accurateig.com/assets/commodities/4936-pecans-01_1625757366.JPG"
|
||||
},
|
||||
{
|
||||
"name": "Persimmon",
|
||||
"plu": "4428",
|
||||
"image": "https://server-ifps.accurateig.com/assets/commodities/4428-persimmons-fuyu-01_1625667410.jpg"
|
||||
},
|
||||
{
|
||||
"name": "Physalis/Cape Gooseberry/Ground Cherry",
|
||||
"plu": "3039",
|
||||
"image": "https://server-ifps.accurateig.com/assets/commodities/3039-cape-gooseberry_1630596655.jpg"
|
||||
},
|
||||
{
|
||||
"name": "Pineapple",
|
||||
"plu": "4430",
|
||||
"image": "https://server-ifps.accurateig.com/assets/commodities/4430-pineapple-05_1625667649.jpg"
|
||||
},
|
||||
{
|
||||
"name": "Pistachio",
|
||||
"plu": "4939",
|
||||
"image": "https://server-ifps.accurateig.com/assets/commodities/4939-pistachios_1625757519.JPG"
|
||||
},
|
||||
{
|
||||
"name": "Pitahaya",
|
||||
"plu": "3040",
|
||||
"image": "https://server-ifps.accurateig.com/assets/commodities/3040-pitaya-dragon-fruit-01_1614282658.jpg"
|
||||
},
|
||||
{
|
||||
"name": "Plumcot (Interspecific Plum)",
|
||||
"plu": "3611",
|
||||
"image": "https://server-ifps.accurateig.com/assets/commodities/interspecific-plum-black-picture_1629142350.JPG"
|
||||
},
|
||||
{
|
||||
"name": "Plums",
|
||||
"plu": "4435",
|
||||
"image": "https://server-ifps.accurateig.com/assets/commodities/4435-plums-greengage-01_1625667846.jpg"
|
||||
},
|
||||
{
|
||||
"name": "Pomegranate",
|
||||
"plu": "3440",
|
||||
"image": "https://server-ifps.accurateig.com/assets/commodities/3440-large-pomegranate_1486484749.JPG"
|
||||
},
|
||||
{
|
||||
"name": "Potato",
|
||||
"plu": "3414",
|
||||
"image": "https://server-ifps.accurateig.com/assets/commodities/3414-baking-potato-white_1635179333.jpg"
|
||||
},
|
||||
{
|
||||
"name": "Pumpkin",
|
||||
"plu": "4734",
|
||||
"image": "https://server-ifps.accurateig.com/assets/commodities/4734-mini-pumpkin_1633964765.jpg"
|
||||
},
|
||||
{
|
||||
"name": "Pumpkin Vine",
|
||||
"plu": "3480",
|
||||
"image": "https://server-ifps.accurateig.com/assets/commodities/pumpkin-vine-3480_1625790222.jpg"
|
||||
},
|
||||
{
|
||||
"name": "Quelites",
|
||||
"plu": "3478",
|
||||
"image": "https://server-ifps.accurateig.com/assets/commodities/quelite-3478_1625790359.jpg"
|
||||
},
|
||||
{
|
||||
"name": "Quince",
|
||||
"plu": "4447",
|
||||
"image": "https://server-ifps.accurateig.com/assets/commodities/4447-quince-1_1625668926.jpg"
|
||||
},
|
||||
{
|
||||
"name": "Radicchio",
|
||||
"plu": "3168",
|
||||
"image": "https://server-ifps.accurateig.com/assets/commodities/3168-radicchio-castelfranco-02_1614718366.jpg"
|
||||
},
|
||||
{
|
||||
"name": "Radish",
|
||||
"plu": "4739",
|
||||
"image": "https://server-ifps.accurateig.com/assets/commodities/4739-radish-black-03_1625751544.jpg"
|
||||
},
|
||||
{
|
||||
"name": "Rhubarb",
|
||||
"plu": "4745",
|
||||
"image": "https://server-ifps.accurateig.com/assets/commodities/4745-rhubarb-01_1625751764.jpg"
|
||||
},
|
||||
{
|
||||
"name": "Rutabagas (Swede)",
|
||||
"plu": "4747",
|
||||
"image": "https://server-ifps.accurateig.com/assets/commodities/4747-rutabaga_1635168852.jpg"
|
||||
},
|
||||
{
|
||||
"name": "Sapote",
|
||||
"plu": "3137",
|
||||
"image": "https://server-ifps.accurateig.com/assets/commodities/3137-sapote-white_1635264028.jpg"
|
||||
},
|
||||
{
|
||||
"name": "Squash",
|
||||
"plu": "4750",
|
||||
"image": "https://server-ifps.accurateig.com/assets/commodities/4750-squash-acorn-01_1625751871.jpg"
|
||||
},
|
||||
{
|
||||
"name": "Sugar Cane",
|
||||
"plu": "4790",
|
||||
"image": "https://server-ifps.accurateig.com/assets/commodities/4790-sugar-cane_1630598686.jpg"
|
||||
},
|
||||
{
|
||||
"name": "Sunchokes (Jerusalem Artichokes)",
|
||||
"plu": "4791",
|
||||
"image": "https://server-ifps.accurateig.com/assets/commodities/4791-sunchokes-03_1625753005.jpg"
|
||||
},
|
||||
{
|
||||
"name": "Sunflower Seeds",
|
||||
"plu": "4942",
|
||||
"image": "https://server-ifps.accurateig.com/assets/commodities/4942-sunflower-seeds_1630599026.jpg"
|
||||
},
|
||||
{
|
||||
"name": "Sweet Potato/Yam/Kumara",
|
||||
"plu": "4816",
|
||||
"image": "https://server-ifps.accurateig.com/assets/commodities/4816-sweet-potatoes-02_1625754367.jpg"
|
||||
},
|
||||
{
|
||||
"name": "Tamarind",
|
||||
"plu": "4448",
|
||||
"image": "https://server-ifps.accurateig.com/assets/commodities/4448-tamarindo-01_1625669100.jpg"
|
||||
},
|
||||
{
|
||||
"name": "Tangerines/Mandarins",
|
||||
"plu": "3524",
|
||||
"image": "https://server-ifps.accurateig.com/assets/commodities/noble-juicycrunch-productisolated-900x900-rgb-copy_1627662136.png"
|
||||
},
|
||||
{
|
||||
"name": "Taro Root (Dasheen)",
|
||||
"plu": "4795",
|
||||
"image": "https://server-ifps.accurateig.com/assets/commodities/4795-taro-root-01_1625753179.jpg"
|
||||
},
|
||||
{
|
||||
"name": "Turnip",
|
||||
"plu": "4811",
|
||||
"image": "https://server-ifps.accurateig.com/assets/commodities/4811-turnip-purple-top_1635177577.jpg"
|
||||
},
|
||||
{
|
||||
"name": "Walnuts",
|
||||
"plu": "4943",
|
||||
"image": "https://server-ifps.accurateig.com/assets/commodities/4943-walnuts_1625757652.JPG"
|
||||
},
|
||||
{
|
||||
"name": "Water Chestnuts",
|
||||
"plu": "4814",
|
||||
"image": "https://server-ifps.accurateig.com/assets/commodities/4814-waterchestnuts-01_1625753939.jpg"
|
||||
},
|
||||
{
|
||||
"name": "Xpelon",
|
||||
"plu": "3481",
|
||||
"image": "https://server-ifps.accurateig.com/assets/commodities/expelon-3481_1625790150.jpg"
|
||||
},
|
||||
{
|
||||
"name": "Yuca Root/Cassava/Manioc",
|
||||
"plu": "4819",
|
||||
"image": "https://server-ifps.accurateig.com/assets/commodities/4819-yucca-root-03_1625754507.jpg"
|
||||
}
|
||||
]
|
||||
@@ -1,89 +0,0 @@
|
||||
#include <Arduino.h>
|
||||
|
||||
const int SCLK_PIN = 18;
|
||||
const int DOUT_PIN = 19;
|
||||
const int TARE_BUTTON_PIN = 4;
|
||||
|
||||
long offset = 0;
|
||||
float scaleFactor = 1.0; // Update this after your calibration test
|
||||
|
||||
void setup() {
|
||||
Serial.begin(115200);
|
||||
|
||||
pinMode(SCLK_PIN, OUTPUT);
|
||||
pinMode(DOUT_PIN, INPUT);
|
||||
pinMode(TARE_BUTTON_PIN, INPUT_PULLUP);
|
||||
|
||||
digitalWrite(SCLK_PIN, LOW);
|
||||
|
||||
Serial.println("Initializing SD10819 ADC...");
|
||||
delay(500); // Wait for chip stabilization
|
||||
calibrateZero();
|
||||
}
|
||||
|
||||
long readADC() {
|
||||
// 1. Wait for DRDY to go LOW
|
||||
// Timeout added to prevent infinite loop if ADC is disconnected
|
||||
unsigned long startWait = millis();
|
||||
while (digitalRead(DOUT_PIN) == HIGH) {
|
||||
if (millis() - startWait > 500) return 0;
|
||||
}
|
||||
|
||||
long value = 0;
|
||||
|
||||
// 2. Read 24 bits of data
|
||||
for (int i = 0; i < 24; i++) {
|
||||
digitalWrite(SCLK_PIN, HIGH);
|
||||
delayMicroseconds(1); // pulse width t3 > 100ns
|
||||
value = (value << 1) | digitalRead(DOUT_PIN);
|
||||
digitalWrite(SCLK_PIN, LOW);
|
||||
delayMicroseconds(1);
|
||||
}
|
||||
|
||||
// 3. Configuration Pulses: 27 pulses = Channel A, 128x Gain
|
||||
for (int i = 0; i < 3; i++) {
|
||||
digitalWrite(SCLK_PIN, HIGH);
|
||||
delayMicroseconds(1);
|
||||
digitalWrite(SCLK_PIN, LOW);
|
||||
delayMicroseconds(1);
|
||||
}
|
||||
|
||||
// Handle 24-bit two's complement
|
||||
if (value & 0x800000) {
|
||||
value |= 0xFF000000;
|
||||
}
|
||||
return value;
|
||||
}
|
||||
|
||||
void calibrateZero() {
|
||||
Serial.println("Taring... stay still.");
|
||||
long sum = 0;
|
||||
for(int i = 0; i < 20; i++) {
|
||||
sum += readADC();
|
||||
delay(10);
|
||||
}
|
||||
offset = sum / 20;
|
||||
Serial.print("New Offset: ");
|
||||
Serial.println(offset);
|
||||
}
|
||||
|
||||
void loop() {
|
||||
// Check Tare Button
|
||||
if (digitalRead(TARE_BUTTON_PIN) == LOW) {
|
||||
calibrateZero();
|
||||
while(digitalRead(TARE_BUTTON_PIN) == LOW); // Wait for release
|
||||
}
|
||||
|
||||
// Read and Filter
|
||||
long raw = readADC();
|
||||
float weight = (float)(raw - offset) * scaleFactor;
|
||||
|
||||
// Serial Output for Debugging / Plotting
|
||||
Serial.print("Raw:");
|
||||
Serial.print(raw);
|
||||
Serial.print("\tWeight:");
|
||||
Serial.print(weight, 2);
|
||||
Serial.println("g");
|
||||
|
||||
delay(100); // 10Hz sampling rate
|
||||
}
|
||||
2
extensions/golang/DataToolsGO/.gitignore
vendored
Normal file
@@ -0,0 +1,2 @@
|
||||
config.json
|
||||
imageTools-*
|
||||