Arduino dev under windows?
- Fangbeast
- PureBasic Protozoa
- Posts: 4792
- Joined: Fri Apr 25, 2003 3:08 pm
- Location: Not Sydney!!! (Bad water, no goats)
Arduino dev under windows?
I've only dabbled in Arduino under windows for 2 years so never tried to do it under PB yet.
Can you code for a a Duino under PB for Windows and if so, which compiler?
Can anyone tell me what to do as I am interested.
First thing I ever got working was the ESP32CAM programmed from the Arduino and it worked a treat. Then I tried the native programmer board that came with the ESP32ROVER and it had a USB, wireless and Bluetooth interface and I'd like to be able to try that in my lifetime under pb.
Can you code for a a Duino under PB for Windows and if so, which compiler?
Can anyone tell me what to do as I am interested.
First thing I ever got working was the ESP32CAM programmed from the Arduino and it worked a treat. Then I tried the native programmer board that came with the ESP32ROVER and it had a USB, wireless and Bluetooth interface and I'd like to be able to try that in my lifetime under pb.
Amateur Radio/VK3HAF, (D-STAR/DMR and more), Arduino, ESP32, Coding, Crochet
Re: Arduino dev under windows?
No Arduino compiler available from PB 
BTW: Would be awesome to have it.

BTW: Would be awesome to have it.
- Fangbeast
- PureBasic Protozoa
- Posts: 4792
- Joined: Fri Apr 25, 2003 3:08 pm
- Location: Not Sydney!!! (Bad water, no goats)
Re: Arduino dev under windows?
Okay, thanks.
Amateur Radio/VK3HAF, (D-STAR/DMR and more), Arduino, ESP32, Coding, Crochet
Re: Arduino dev under windows?
Arduino has an api, not a full blown o/s. It is usually married to a raspberryPI computer for control of the Arduino TTL and GPIO pins.
The nice thing about standards is there are so many to choose from. ~ Andrew Tanenbaum
- Fangbeast
- PureBasic Protozoa
- Posts: 4792
- Joined: Fri Apr 25, 2003 3:08 pm
- Location: Not Sydney!!! (Bad water, no goats)
Re: Arduino dev under windows?
Same problem with the ESP32 I suspect. Oh well, I will stick to what I am doing then.skywalk wrote: Mon Feb 26, 2024 11:39 pm Arduino has an api, not a full blown o/s. It is usually married to a raspberryPI computer for control of the Arduino TTL and GPIO pins.
Amateur Radio/VK3HAF, (D-STAR/DMR and more), Arduino, ESP32, Coding, Crochet
Re: Arduino dev under windows?
If you want to code like basic language, you can try B4R:
https://www.b4x.com/b4r.html
https://www.b4x.com/b4r.html
- Fangbeast
- PureBasic Protozoa
- Posts: 4792
- Joined: Fri Apr 25, 2003 3:08 pm
- Location: Not Sydney!!! (Bad water, no goats)
Re: Arduino dev under windows?
Thanks but I want to do it with PureBasic. I am fast running out of brain at my age to learn anything new outside of PB and have had lots of health issues.Caronte3D wrote: Tue Feb 27, 2024 11:13 am If you want to code like basic language, you can try B4R:
https://www.b4x.com/b4r.html
I'll be lucky if I ever finish my current monster project. Monster to me:)
Amateur Radio/VK3HAF, (D-STAR/DMR and more), Arduino, ESP32, Coding, Crochet
Re: Arduino dev under windows?
I also want to do it with PureBasic, but simply not possible
-
- Addict
- Posts: 2346
- Joined: Mon Jun 02, 2003 9:16 am
- Location: Germany
- Contact:
Re: Arduino dev under windows?
Arduinos are usually AtMega based microcontrollers with around 16MHz, 32Kbytes programmable memory, 1Kbyte EEPROM and 2Kbytes SRAM. There's no operating system or anything like that on them. Almost no library could be used. You'd need other functionality though like access to interrupts, timers, GPIO, ADCs etc. So even if PureBasic were possible there, you'd need to calculate frequency prescalers and so on, so everything would be different and nothing like the normal PureBasic you're used on your desktop. The only thing you'd be able to use is the syntax and lists/maps/arrays maybe.
And ESP32 is a different architecture, but still it would be more like the AtMegas or Arduinos than a desktop pc. Even python and nodejs are very limited there.
And ESP32 is a different architecture, but still it would be more like the AtMegas or Arduinos than a desktop pc. Even python and nodejs are very limited there.
bye,
Daniel
Daniel
Re: Arduino dev under windows?
If you are willing to try the RPi Pico, there is a version of Basic for it that runs interpreted code.
It is NOT PureBasic but there is an IDE that is written (badly by me) in PureBasic.
Most users simply code using any terminal program and the inbuilt editor.
https://www.thebackshed.com/forum/ViewForum.php?FID=16
Jim
It is NOT PureBasic but there is an IDE that is written (badly by me) in PureBasic.
Most users simply code using any terminal program and the inbuilt editor.
https://www.thebackshed.com/forum/ViewForum.php?FID=16
Jim
- Fangbeast
- PureBasic Protozoa
- Posts: 4792
- Joined: Fri Apr 25, 2003 3:08 pm
- Location: Not Sydney!!! (Bad water, no goats)
Re: Arduino dev under windows?
Thanks Jim but I can't afford yet another thing at the moment. Got the 'Duino' and at least 10 ESP32's in the drawer crying for attention:):):):)If you are willing to try the RPi Pico
Amateur Radio/VK3HAF, (D-STAR/DMR and more), Arduino, ESP32, Coding, Crochet