So to start off I literally have never used an arduino before and as such am obviously very new in general to how to do anything with it. Basically what I'm trying to do is reset a 3d da vinchi printer cartridge so that I can print more filament, but no walkthroughs use my particular arduino.
So basically what it boils down to is I need to figure out what to change in the program listed below in order for it to recognize the pin names on my arduino. I'm using a makey makey arduino which uses a leonardo arduino and is laid out as the picture shows.
Additionally I believe the portion of the code that refers to the pin # I need changed is below.
static void set_bus(boolean state) {
PORTD=(PORTD&0x7f)|(!!state)<<7;
Here is part of the full program. The rest of it is in the post below. Any help would be greatly appreciated.
/*
Da Vinci EEPROM update Copyright (C) 2014 by Oliver Fueckert <oliver@voltivo.com>
Increment Serial code - contributed by Matt
UNI/O Library Copyright (C) 2011 by Stephen Early <steve@greenend.org.uk>
Permission is hereby granted, free of charge, to any person obtaining
a copy of this software and associated documentation files (the
"Software"), to deal in the Software without restriction, including
without limitation the rights to use, copy, modify, merge, publish,
distribute, sublicense, and/or sell copies of the Software, and to
permit persons to whom the Software is furnished to do so, subject to
the following conditions:
The above copyright notice and this permission notice shall be
included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */
#ifndef _NANODEUNIO_LIB_H
#define _NANODEUNIO_LIB_H
#if ARDUINO >= 100
#include <Arduino.h> // Arduino 1.0
#else
#include <WProgram.h> // Arduino 0022
#endif
#define NANODE_MAC_DEVICE 0xa0
#define NANODE_MAC_ADDRESS 0xfa
#define CODE 0x00 //1 Byte
#define MATERIAL 0x01 //1 Byte
#define COLOR 0x02 //2 Bytes
#define DATE 0x05 //4 Bytes
#define TOTALLEN 0x08 //4 Bytes
#define NEWLEN 0x0C //4 Bytes
#define HEADTEMP 0x10 //2 Bytes
#define BEDTEMP 0x12 //2Bytes
#define MLOC 0x14 //2 Bytes
#define DLOC 0x16 //2 Bytes
#define SN 0x18 //12 Bytes
#define CRC 0x24 //2 Bytes
#define LEN2 0x34 //4 Bytes
void IncrementSerial(unsigned char * cArray, long lAddress, long lSize)
{
unsigned char szTempBuffer[20] = {0};
memcpy(szTempBuffer,&cArray[lAddress],lSize);
long lSerial = atol((char *)szTempBuffer);
lSerial++;
sprintf((char *)szTempBuffer,"%04d",lSerial);
memcpy(&cArray[lAddress],szTempBuffer,lSize);
}
class NanodeUNIO {
private:
byte addr;
public:
NanodeUNIO(byte address);
boolean read(byte *buffer,word address,word length);
boolean start_write(const byte *buffer,word address,word length);
boolean enable_write(void);
boolean disable_write(void);
boolean read_status(byte *status);
boolean write_status(byte status);
boolean await_write_complete(void);
boolean simple_write(const byte *buffer,word address,word length);
};
#endif /* _NANODEUNIO_LIB_H */
#define UNIO_STARTHEADER 0x55
#define UNIO_READ 0x03
#define UNIO_CRRD 0x06
#define UNIO_WRITE 0x6c
#define UNIO_WREN 0x96
#define UNIO_WRDI 0x91
#define UNIO_RDSR 0x05
#define UNIO_WRSR 0x6e
#define UNIO_ERAL 0x6d
#define UNIO_SETAL 0x67
#define UNIO_TSTBY 600
#define UNIO_TSS 10
#define UNIO_THDR 5
#define UNIO_QUARTER_BIT 10
#define UNIO_FUDGE_FACTOR 5
#define UNIO_OUTPUT() do { DDRD |= 0x80; } while (0)
#define UNIO_INPUT() do { DDRD &= 0x7f; } while (0)
static void set_bus(boolean state) {
PORTD=(PORTD&0x7f)|(!!state)<<7;
}
static boolean read_bus(void) {
return !!(PIND&0x80);
}
static void unio_inter_command_gap(void) {
set_bus(1);
delayMicroseconds(UNIO_TSS+UNIO_FUDGE_FACTOR);
}
static void unio_standby_pulse(void) {
set_bus(0);
UNIO_OUTPUT();
delayMicroseconds(UNIO_TSS+UNIO_FUDGE_FACTOR);
set_bus(1);
delayMicroseconds(UNIO_TSTBY+UNIO_FUDGE_FACTOR);
}
static volatile boolean rwbit(boolean w) {
boolean a,b;
set_bus(!w);
delayMicroseconds(UNIO_QUARTER_BIT);
a=read_bus();
delayMicroseconds(UNIO_QUARTER_BIT);
set_bus(w);
delayMicroseconds(UNIO_QUARTER_BIT);
b=read_bus();
delayMicroseconds(UNIO_QUARTER_BIT);
return b&&!a;
}
static boolean read_bit(void) {
boolean b;
UNIO_INPUT();
b=rwbit(1);
UNIO_OUTPUT();
return b;
}
static boolean send_byte(byte b, boolean mak) {
for (int i=0; i<8; i++) {
rwbit(b&0x80);
b<<=1;
}
rwbit(mak);
return read_bit();
}
static boolean read_byte(byte *b, boolean mak) {
byte data=0;
UNIO_INPUT();
for (int i=0; i<8; i++) {
data = (data << 1) | rwbit(1);
}
UNIO_OUTPUT();
*b=data;
rwbit(mak);
return read_bit();
}
static boolean unio_send(const byte *data,word length,boolean end) {
for (word i=0; i<length; i++) {
if (!send_byte(data[i],!(((i+1)==length) && end))) return false;
}
return true;
}
static boolean unio_read(byte *data,word length) {
for (word i=0; i<length; i++) {
if (!read_byte(data+i,!((i+1)==length))) return false;
}
return true;
}
static void unio_start_header(void) {
set_bus(0);
delayMicroseconds(UNIO_THDR+UNIO_FUDGE_FACTOR);
send_byte(UNIO_STARTHEADER,true);
}
NanodeUNIO::NanodeUNIO(byte address) {
addr=address;
}
#define fail() do { sei(); return false; } while (0)
boolean NanodeUNIO::read(byte *buffer,word address,word length) {
byte cmd[4];
cmd[0]=addr;
cmd[1]=UNIO_READ;
cmd[2]=(byte)(address>>8);
cmd[3]=(byte)(address&0xff);
unio_standby_pulse();
cli();
unio_start_header();
if (!unio_send(cmd,4,false)) fail();
if (!unio_read(buffer,length)) fail();
sei();
return true;
}
boolean NanodeUNIO::start_write(const byte *buffer,word address,word length) {
byte cmd[4];
if (((address&0x0f)+length)>16) return false; // would cross page boundary
cmd[0]=addr;
cmd[1]=UNIO_WRITE;
cmd[2]=(byte)(address>>8);
cmd[3]=(byte)(address&0xff);
unio_standby_pulse();
cli();
unio_start_header();
if (!unio_send(cmd,4,false)) fail();
if (!unio_send(buffer,length,true)) fail();
sei();
return true;
}