The commands in the user guide, seem to be in native Arduino. I could be wrong maybe.
How are commands in 'Arduino'? - what do you mean? - an Arudino is a development system based on an AVR processor, it doesn't have 'commands'.
Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
The commands in the user guide, seem to be in native Arduino. I could be wrong maybe.
Hola @JimB
Excel 2016 here. The latest versions of PLX DAQ were rewritten specifically for Arduino. Would they be of any use to me working with PICs? Hard to find concrete information in the Web.
Sincerely I am at lost here. Thanks.
movlw 'D' ;Header
call Send_Data
movlw 'A'
call Send_Data
movlw 'T'
call Send_Data
movlw 'A'
call Send_Data ; 1st column is the time, ignore.
movlw ','
call Send_Data
movlw ','
call Send_Data ; 2nd column is the marker bit.
btfsc PORTC, Marker
goto main1 ; Marker button is pushed
movlw 0x00
call Send_Data
goto main2
main1
movlw '1'
call Send_Data
main2
movlw ','
call Send_Data
movf BCD3, W
addlw 0x30
call Send_Data
movf BCD2, W
addlw 0x30
call Send_Data
movf BCD1, W
addlw 0x30
call Send_Data
movf BCD0, W
addlw 0x30
call Send_Data
movlw 0x0D ;Carraige Return
call Send_Data
I worked intensively with VBA in the past for a rather different type of application. Never could try serial comms because I could not get the MSComm thing for some reason ($$?). A quick check in my laptop, shows, after opening VBA, that I have no complements at all. Excel 2013 IIRC.
Would that be a problem?
Hola picbitsThe MSCOMM component in VB6 isn't installed into the toolbox as standard, you need to right click on it, add components and browse to the OCX, tick the box then you get the component available to use. I've been using older VB6 machines for the last 5 years but don't know if this is the same in VBA.
Hola picbits
All Excel versions I got had not that component available not sure because my licence's level or what. Right now Excel 2016.
Nowadays I read there is some XXXXX.NET that again is not in my list. Not even sure how to get it from the MS download center.
In maybe two days I will start taking care of that. Gracias.
A Google of Arduino to Excel will get you a few dozen hits on how to do it. Microsoft has an add on for Excel called Microsoft Data Streamer which I use and like. They want membership in Office 365 but I just ran the download (Windows 10) and it works fine. I also use the mentioned PLX-DAQ and it also does fine.
You can try and write your own, but there is existing stuff out there. My Excel is a 2010 version running on Windows 10. I use both MS Data Streamer and Plex DAQ. No reason for me to write my own when what is available works.
Ron
Do you really need PIC and are you trying to dynamically update a chart or an excel data table?
There are other ways to do data logging and display on a PC as a chart.
I'm working on an ESP8266 and ESP32 microcontroller as a web server to send out a web-based chart of collected data (temp, rpm, whatever). Good if you want to monitor something, less good (but workable via cut/paste) if you want to do some mathematical manipulations on the collected data.
Have you seen the system requirements?What Reloadron mentions seems simple.
Supported Operating System
Windows 10
Operating System: Windows 10
Excel Version: Microsoft Excel 2016 with an Office 365 subscription with the latest version of Excel. (Students and teachers are eligible for Office 365 Education, which includes Word, Excel, PowerPoint, and OneNote, plus additional classroom tools for free.)
.NET 4.6.1 and VS 2010 Tools for Office
Have you seen the system requirements?
Mike.
A Google of Arduino to Excel will get you a few dozen hits on how to do it. Microsoft has an add on for Excel called Microsoft Data Streamer which I use and like. They want membership in Office 365 but I just ran the download (Windows 10) and it works fine. I also use the mentioned PLX-DAQ and it also does fine.
You can try and write your own, but there is existing stuff out there. My Excel is a 2010 version running on Windows 10. I use both MS Data Streamer and Plex DAQ. No reason for me to write my own when what is available works.
Ron
Have you seen the system requirements?
Mike.
Same place where I could, now I don'tI went here, clicked download and it downloaded just fine and is running on Excel 2010. Just downloaded it again and it downloaded just fine and I am not using Office 365. Beats me?
Ron