Data logging from Arduino to Excel (No SD card) - (SwiftForth)

preview_player
Показать описание
I'll show you how to take raw data from the Arduino and put it straight into Excel for data logging without the need for any SD cards in realtime. We will use the Forth programming language (SwiftForth) to accomplish this. We will be using DDE or Dynamic Data Exchange to insert the data.

My website:

Other videos related to this:

#forth #swiftforth #arduino
Рекомендации по теме
Комментарии
Автор

🇨🇱
Great ‼️
This is the incentive to get into FORTH, after a loooong break, having used it, back in 1976 !
At the same time finally get my hands on arduino, which I have sitting on my shelf a couple of years now 😀
Thanks a lot for a clear lesson...
Saludos desde 🇨🇱

geromiuiboxz
Автор

@aronmeren8558 , you can use Gforth to grab data. I will do a vid on this and see what I can come up with

sudo gforth \ <-- need to open as sudo user

variable myvar \ to save the file handle
pad 100 erase

s" /dev/ttyACM0" r/o open-file swap
myvar !

pad 90 myvar @ read-line \ read a line of data
pad 100 dump

codeth