with what software should I program the funduino - arduino

With what software should I program the funduino?
This is really silly but can I use the arduino software?
If so what board should I assign?

It is an arduino compatible board.you should program using C Language. Just assign Uno R3. You can use arduino IDE.

Related

Using Arduino Uno for my hardware AI assistant Project

I would like to know if I can use a Arduino Uno R3 for my Project.
Project Details: An AI assitant in an embedded system.
The AI is already written in Python
I tried to get a Raspberry Pi 0 but it is quite scarce in my location.I will like to know if there is a way for me to embed my python code on my Arduino UNO R3,SD card module and speaker
No, there's no way that will all fit into an Arduino Uno (or any AVR-based Arduino). They all have not enough RAM. And there's (as far as I know) no python interpreter for the uno as well, for the same reason. You could try an ESP32 instead. Much more RAM, much more powerful CPU, micropython support (and typically even cheaper).

Using SAM4 series microcontroller with Arduino IDE

I am looking to use SAM4S series microcontroller by Atmel/Microchip and trying to program it using Arduino IDE.
Can I use the bootloader provided by Adafruit for Feather M4 Express [uses SAMD51] or Feather M4 Can Express [uses SAME51] both of which are ARM Cortex M4 based just like the SAM4S series?
If yes, how do I work around few different features such as different FLASH memory and RAM of my SAM4S16B IC compared to that of SAMD51 or SAME51?
Could you suggest any other ways for using SAM4S with Arduino IDE? I, personally, did not find any direct resources for the same.
Is it even possible to use SAM4S with Arduino IDE provided that I don't have to write my own bootloader or API's etc?
Appreciate your help in the matter.
Thank you.

Will a non official Arduino work with the arduin IDE

I want to buy an Arduino kit but not an official Arduino, from different company
My question is: Will it work with the Arduino IDE?
Even if it not official?
Can I use Python with it?
Arduino is an open-source hardware and software project, Arduino IDE supports many Arduino-compatible boards, including official and non-official boards, here is a non-exhaustive list of compatible boards.
You can even make your own Arduino-compatible board and provide hardware platform/plugins for Arduino IDE.

how can I use my Arduino board's Atmega with ATMEL Studio 7?

Basically I just want to use my Arduino Board's Atmega as a normal Atmega. I want to burn the same code that we burn on Atmega32 controller. As we know that we can program Ardunio board with IDE and there is proper syntax style for coding. I want to make just the use of Atmega32 without the Arduino style coding.
I'm not really sure of your question here, but here are some thoughts:
Arduino is programmed over USB using some code that is programmed into the bootloader. If you want to program without Arduino, you will probably overwrite the bootloader which means that you will need an In System Programmer (ISP) for the board. These are separate USB devices that usually use the SPI connections on the chip to upload the program.
Atmel (now Microchip) has their own line of programmers that work with Atmel Studio but you can find some on ebay that pretend to be Atmel programmers for a fraction of the cost.
Another option is a cheap ISP but using AVRDude to upload your code, rather than Atmel Studio. I have never been a fan of Atmel Studio.
Since you are looking to reuse ATmega32 code ( I think that's what you are saying), don't forget to change the target hardware in Atmel Studio so that the port and address defines are changed to the chip you are using (ATMega328P)
Rod
You don't need to overwrite the bootloader unless size is an issue. There is an arduino plugin for atmel studio also Arduino is AVR so just don't use the Arduino.h styling. Create a project using the arduino setup in minimal and simply write straight AVR C into AVR Studio it will compile either on Arduino's end or on Atmels end. You can even keep the arduino's library code and mix the two styles by pulling in Arduino.h into your studio session. If your asking how to dump a .hex file into arduino you need a ISP programmer and that will kill the bootloader when it's flashed.

Arduino IDE to program Arduino Galileo

Did anyone get the new Arduino Galileo microprocessor board yet? I was wondering if anyone had a any luck using the current version of Arduino IDE to program Galileo.
according to the documentation under Programming it says that it works with the current arduino IDE.
http://arduino.cc/en/ArduinoCertified/IntelGalileo
Intel board will give you two com ports. One of them is virtual com.
You can use virtual com to load the program with Arduino ide. Another one is used for accessing os in processor with putty or any other serial communication program.

Resources