I used to play around with 8051 variants and 8pin/16pin PICs back in 2010, whats the equivalent beginner chips now? I have been out of touch since around 2012, except for pi3/4.

  • boo oneOP
    link
    English
    1
    edit-2
    1 year ago

    I think ali doesnt work in my country. But is it something like this?

    Whats the interface like? Would I need custom programmer boards? Serial com port etc?

    What about compilers? I saw riscv mentioned in some places, so would gcc work?

    • @MrMonkey@lemm.ee
      link
      fedilink
      English
      41 year ago

      In addition to what others have mentioned if you’re using Home Assistant or an MQTT environment than using the ESPHome tools can make life much easier.

      You can also install MicroPython, and with it’s new and improved “mip” (pip for micropython) you can easily find drivers for most things. Micropython doesn’t support “threads” on the esp8266 as such, but can use uasyncio, which achieves the same goal.

    • @mamarguerat@discuss.tchncs.de
      link
      fedilink
      English
      31 year ago

      You can find a lot of different dev boards with ESP32, like the one you mentioned. There is other with camera, e-paper screen drivers, smaller footprint (Xiao ESP32). The simplest way to program is using Arduino IDE, but I prefer using PlatformIO on VScode. GCC would work. The interface is with the USB port, which is used for COM port or for programming

      • @kittenbridgeasteroid@discuss.tchncs.de
        link
        fedilink
        English
        1
        edit-2
        1 year ago

        The easiest way to program it would be using something like Esphome. I think Node Red is another tool that greatly simplifys things, but I haven’t had the time to mess with it yet.

    • @g5pw@feddit.it
      link
      fedilink
      English
      21 year ago

      Yes, that would be it!

      You can do everything using the existing USB port. What you cannot do in that board is use a debugger.

      • boo oneOP
        link
        English
        2
        edit-2
        1 year ago

        Thanks for confirming. Ill start with the basic kit.